GifFrameBlock Constructor (Stream, UInt16, UInt16, Boolean, Boolean, Byte) |
Namespace: Aspose.Imaging.FileFormats.Gif.BlocksAssembly: Aspose.Imaging (in Aspose.Imaging.dll) Version: 21.04
Syntaxpublic GifFrameBlock(
Stream stream,
ushort left,
ushort top,
bool isPaletteSorted,
bool isGifFrameInterlaced,
byte lzwCodeSize
)
Public Sub New (
stream As Stream,
left As UShort,
top As UShort,
isPaletteSorted As Boolean,
isGifFrameInterlaced As Boolean,
lzwCodeSize As Byte
)
public:
GifFrameBlock(
Stream^ stream,
unsigned short left,
unsigned short top,
bool isPaletteSorted,
bool isGifFrameInterlaced,
unsigned char lzwCodeSize
)
new :
stream : Stream *
left : uint16 *
top : uint16 *
isPaletteSorted : bool *
isGifFrameInterlaced : bool *
lzwCodeSize : byte -> GifFrameBlock
Parameters
- stream
- Type: System.IOStream
The stream to load an image from and 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