'Declaration
Public Overloads Function CreateThumbnailHQ( _ ByVal ImageID As Integer, _ ByVal Width As Integer, _ ByVal Height As Integer, _ ByVal BackColor As GdPictureColor, _ ByVal PageNo As Integer, _ ByVal BurnXMPAnnotations As Boolean, _ ByVal RotateExif As Boolean _ ) As Integer
public int CreateThumbnailHQ( int ImageID, int Width, int Height, GdPictureColor BackColor, int PageNo, bool BurnXMPAnnotations, bool RotateExif )
public function CreateThumbnailHQ( ImageID: Integer; Width: Integer; Height: Integer; BackColor: GdPictureColor; PageNo: Integer; BurnXMPAnnotations: Boolean; RotateExif: Boolean ): Integer;
public function CreateThumbnailHQ( ImageID : int, Width : int, Height : int, BackColor : GdPictureColor, PageNo : int, BurnXMPAnnotations : boolean, RotateExif : boolean ) : int;
public: int CreateThumbnailHQ( int ImageID, int Width, int Height, GdPictureColor BackColor, int PageNo, bool BurnXMPAnnotations, bool RotateExif )
public: int CreateThumbnailHQ( int ImageID, int Width, int Height, GdPictureColor BackColor, int PageNo, bool BurnXMPAnnotations, bool RotateExif )
Parameters
- ImageID
- GdPicture image identifier. The image from which the HQ thumbnail must be created.
- Width
- The width of the thumbnail to create.
- Height
- The height of the thumbnail to create.
- BackColor
- Background color of the thumbnail. A suitable color value can be obtained by using the ARGB() method.
- PageNo
- The page number to render, in the range [1 - PageCount]. Use 0 to render the currently selected page.
- BurnXMPAnnotations
- Specifies if GdPicture/XMP annotations must be rendered on the thumbnail.
- RotateExif
- Specifies if the generated thumbnail must be rotated according the internal ExifRotate tag.
Return Value
GdPicture image identifier. The thumbnail Image. The ReleaseGdPictureImage() method must be subsequently used to release the image from the memory.