 |
GdipSaveImageToFile ..msdn Add comment W32 Constants Translate this page |
 |
 |
|
Saves this image to a file. |
 |
 |
| Code examples: |
 |
|
|
 |
 |
| Declaration: |
 |
 |
GpStatus WINGDIPAPI GdipSaveImageToFile(
GpImage *image,
GDIPCONST WCHAR* filename,
GDIPCONST CLSID* clsidEncoder,
GDIPCONST EncoderParameters* encoderParams
)
|
 |
 |
 |
| FoxPro declaration: |
 |
 |
DECLARE INTEGER GdipSaveImageToFile IN gdiplus;
INTEGER img,;
STRING filename,;
STRING clsidEncoder,;
INTEGER encoderParams
|
 |
 |
 |
| Parameters: |
 |
img
[in] Handle to Image Object
filename
[in] Pointer to a null-terminated string that specifies the path name for the saved image.
clsidEncoder
[in] Pointer to a CLSID that specifies the encoder to use to save the image.
encoderParams
[in] Optional. Pointer to an EncoderParameters object that holds parameters used by the encoder. The default value is NULL. |
 |
 |
| Return value: |
 |
| Returns GpStatus value, 0 means success. |
 |
 |
| Usage: |
 |
#DEFINE ENCODER_JPEG "{557CF401-1A04-11D3-9A73-0000F81EF32E}"
nResult = GdipSaveImageToFile(m.hImage,;
STRCONV("image01.jpg"+CHR(0),5),;
ENCODER_JPEG, 0)
|
 |
 |
| My comment: |
 |
The technique of constructing a Graphics object based on an image works only for certain image formats. For example, you cannot construct a Graphics object based on an image that has a color depth of 4 bits per pixel.
GDI+ does not allow you to save an image to the same file that you used to construct the image. |
 |
 |
| Word Index links for the GdipSaveImageToFile : |
 |
|
|
 |
 |
| Translate this page: |
 |
|
 |
 |
| • |
 |
| Created: | 2004-07-12 14:38:54 | | Modified: | 2009-02-04 10:30:14 | Visited in last 7 days: 18 |