Saves a GdPicture image as Windows or OS/2 Bitmap image format.
public GdPictureStatus SaveAsBMP( int ImageID, String FilePath );
Public Function SaveAsBMP( ByVal ImageID As Integer, ByVal FilePath As String ) As GdPictureStatus
|
Parameters |
Description |
|
ImageID |
GdPicture Image Identifier. |
|
FilePath |
The complete file path to save a GdPicture image. |
A member of the GdPictureStatus enumeration.
How to convert JPG file to BMP file
Dim ImageID As Integer ImageID = oGdPictureImaging.CreateGdPictureImageFromFile("image.jpg") If ImageID <> 0 Then oGdPictureImaging.SaveAsBMP (ImageID, "image.bmp") oGdPictureImaging.ReleaseGdPictureImage (ImageID) End If
|
What do you think about this topic? Send feedback!
|
|
Copyright (c) 2009-2011 www.gdpicture.com. All rights reserved.
|