See Also Examples Applies To
Saves the native GdPicture image as JPEG-2000 File image format.
Syntax
object.SaveAsJP2 (sFilePath, nRate)
The SaveAsJP2 syntax has these parts:
| Part | Description |
| object | Required. An object expression that evaluates to an object in the Applies To list. |
| sFilePath | Required. String. The complete file path to save the native GdPicture image. |
| nRate | Optional. Long. Default value is 16. Defines compression rate Between [1(MaxQuality) ... 512(Poor quality)]. |
Returns
Long. GdPictureStatus
Remarks
This function works only with 8-bits grayscale images, 24-bits images and 32-bits images
WARNING: You need to redistribute the optional gdimgplug.dll library in order to be able to use this function.
Category
Save and Close Image
Visual Basic Sample
How to convert BMP file to JPEG 2000 file
Dim nImageID As Long
nImageID = object.CreateImageFromFile("image.bmp")
If nImageID <> 0 Then
object.SaveAsJP2 ("image.jp2")
object.CloseImage (nImageID)
End If