'Declaration
Public Overloads Function CreateThumbnailHQ( _ ByVal Stream As Stream, _ ByVal Width As Integer, _ ByVal Height As Integer, _ ByVal BackColor As GdPictureColor _ ) As Integer
public int CreateThumbnailHQ( Stream Stream, int Width, int Height, GdPictureColor BackColor )
public function CreateThumbnailHQ( Stream: Stream; Width: Integer; Height: Integer; BackColor: GdPictureColor ): Integer;
public function CreateThumbnailHQ( Stream : Stream, Width : int, Height : int, BackColor : GdPictureColor ) : int;
public: int CreateThumbnailHQ( Stream* Stream, int Width, int Height, GdPictureColor BackColor )
public: int CreateThumbnailHQ( Stream^ Stream, int Width, int Height, GdPictureColor BackColor )
Parameters
- Stream
- System.IO.Stream object storing the image data.
- Width
- The width of the thumbnail to create. Use 0 to keep the embedded thumbnail width, if available, otherwise uses the initial bitmap width.
- Height
- The height of the thumbnail to create. Use 0 to keep the embedded thumbnail height, if available, otherwise uses the initial bitmap height.
- BackColor
- A suitable color value can be obtained by using the ARGB() method. The background color of the thumbnail if width and height parameters are provided.
Return Value
GdPicture image identifier. The thumbnail Image. The ReleaseGdPictureImage() method must be subsequently used to release the image from the memory.