GifFrameBlock Constructor (RasterImage, UInt16, UInt16, Boolean, Boolean, Byte) |
Namespace: Aspose.Imaging.FileFormats.Gif.BlocksAssembly: Aspose.Imaging (in Aspose.Imaging.dll) Version: 21.04
Syntaxpublic GifFrameBlock(
RasterImage image,
ushort left,
ushort top,
bool isPaletteSorted,
bool isGifFrameInterlaced,
byte lzwCodeSize
)
Public Sub New (
image As RasterImage,
left As UShort,
top As UShort,
isPaletteSorted As Boolean,
isGifFrameInterlaced As Boolean,
lzwCodeSize As Byte
)
public:
GifFrameBlock(
RasterImage^ image,
unsigned short left,
unsigned short top,
bool isPaletteSorted,
bool isGifFrameInterlaced,
unsigned char lzwCodeSize
)
new :
image : RasterImage *
left : uint16 *
top : uint16 *
isPaletteSorted : bool *
isGifFrameInterlaced : bool *
lzwCodeSize : byte -> GifFrameBlock
Parameters
- image
- Type: Aspose.ImagingRasterImage
The image to initialize frame pixel and palette data with. - left
- Type: SystemUInt16
The left image position. - top
- Type: SystemUInt16
The top image position. - isPaletteSorted
- Type: SystemBoolean
if set to true the color palette is sorted. - isGifFrameInterlaced
- Type: SystemBoolean
if set to true the GIF frame is interlaced. - lzwCodeSize
- Type: SystemByte
The bits per pixel.
See Also