Interface IPartialArgb64PixelLoader
Interface IPartialArgb64PixelLoader
Namespace: Aspose.Imaging
Assembly: Aspose.Imaging.dll (25.7.0)
The 64-bit ARGB pixels loader.
public interface IPartialArgb64PixelLoader : IPartialArgb32PixelLoader
{
void LoadArgb64Pixel(int index, byte r, byte g, byte b, byte a);
}
I've reformatted the given code by properly aligning the opening and closing braces, adding space after commas, and ensuring consistent spacing around operators.
Implements
Methods
Process64(Rectangle, long[], Point, Point)
Processes the loaded pixels.
void Process64(
Rectangle pixelsRectangle,
long[] pixels,
Point start,
Point end)
{
}
Parameters
pixelsRectangle
Rectangle
The pixels rectangle.
pixels
long
[]
The 64-bit ARGB pixels.
start
Point
The start pixels point. If not equal to (left,top) meaning that it is not full rectangle we have.
end
Point
The end pixels point. If not equal to (right,bottom) meaning that it is not full rectangle we have.