|
ReactOS 0.4.17-dev-243-g1369312
|
#include <stdarg.h>#include <assert.h>#include "windef.h"#include "winbase.h"#include "winuser.h"#include "wingdi.h"#include "objbase.h"#include "olectl.h"#include "ole2.h"#include "initguid.h"#include "wincodec.h"#include "gdiplus.h"#include "gdiplus_private.h"#include "wine/debug.h"
Go to the source code of this file.
Classes | |
| struct | image_format_dimension |
| struct | image_codec |
Macros | |
| #define | COBJMACROS |
| #define | WMF_PLACEABLE_KEY 0x9ac6cdd7 |
| #define | convert_indexed_to_rgb(getpixel_function, setpixel_function) |
| #define | convert_indexed_to_indexed(getpixel_function, setpixel_function) |
| #define | convert_rgb_to_rgb(getpixel_function, setpixel_function) |
| #define | convert_rgb_to_indexed(getpixel_function, setpixel_function) |
| #define | PropertyTagTypeSByte 6 |
| #define | PropertyTagTypeSShort 8 |
| #define | PropertyTagTypeFloat 11 |
| #define | PropertyTagTypeDouble 12 |
Typedefs | |
| typedef void(* | metadata_reader_func) (GpBitmap *bitmap, IWICBitmapDecoder *decoder, UINT frame) |
| typedef GpStatus(* | encode_image_func) (GpImage *image, IStream *stream, GDIPCONST EncoderParameters *params) |
| typedef GpStatus(* | decode_image_func) (IStream *stream, GpImage **image) |
| typedef GpStatus(* | select_image_func) (GpImage *image, UINT active_frame) |
| typedef struct image_codec | image_codec |
Enumerations | |
| enum | ImageFormat { BMP , JPEG , GIF , TIFF , EMF , WMF , PNG , ICO , NUM_CODECS } |
Variables | |
| struct { | |
| const WICPixelFormatGUID * wic_format | |
| PixelFormat gdip_format | |
| WICBitmapPaletteType palette_type | |
| } | pixel_formats [] |
| static const struct image_format_dimension | image_format_dimensions [] |
| static const struct image_codec | codecs [NUM_CODECS] |
| static const WCHAR | bmp_codecname [] = L"Built-in BMP" |
| static const WCHAR | bmp_extension [] = L"*.BMP;*.DIB;*.RLE" |
| static const WCHAR | bmp_mimetype [] = L"image/bmp" |
| static const WCHAR | bmp_format [] = L"BMP" |
| static const BYTE | bmp_sig_pattern [] = { 0x42, 0x4D } |
| static const BYTE | bmp_sig_mask [] = { 0xFF, 0xFF } |
| static const WCHAR | jpeg_codecname [] = L"Built-in JPEG" |
| static const WCHAR | jpeg_extension [] = L"*.JPG;*.JPEG;*.JPE;*.JFIF" |
| static const WCHAR | jpeg_mimetype [] = L"image/jpeg" |
| static const WCHAR | jpeg_format [] = L"JPEG" |
| static const BYTE | jpeg_sig_pattern [] = { 0xFF, 0xD8 } |
| static const BYTE | jpeg_sig_mask [] = { 0xFF, 0xFF } |
| static const WCHAR | gif_codecname [] = L"Built-in GIF" |
| static const WCHAR | gif_extension [] = L"*.GIF" |
| static const WCHAR | gif_mimetype [] = L"image/gif" |
| static const WCHAR | gif_format [] = L"GIF" |
| static const BYTE | gif_sig_pattern [12] = "GIF87aGIF89a" |
| static const BYTE | gif_sig_mask [] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF } |
| static const WCHAR | tiff_codecname [] = L"Built-in TIFF" |
| static const WCHAR | tiff_extension [] = L"*.TIFF;*.TIF" |
| static const WCHAR | tiff_mimetype [] = L"image/tiff" |
| static const WCHAR | tiff_format [] = L"TIFF" |
| static const BYTE | tiff_sig_pattern [] = {0x49,0x49,42,0,0x4d,0x4d,0,42} |
| static const BYTE | tiff_sig_mask [] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF } |
| static const WCHAR | emf_codecname [] = L"Built-in EMF" |
| static const WCHAR | emf_extension [] = L"*.EMF" |
| static const WCHAR | emf_mimetype [] = L"image/x-emf" |
| static const WCHAR | emf_format [] = L"EMF" |
| static const BYTE | emf_sig_pattern [] = { 0x01, 0x00, 0x00, 0x00 } |
| static const BYTE | emf_sig_mask [] = { 0xFF, 0xFF, 0xFF, 0xFF } |
| static const WCHAR | wmf_codecname [] = L"Built-in WMF" |
| static const WCHAR | wmf_extension [] = L"*.WMF" |
| static const WCHAR | wmf_mimetype [] = L"image/x-wmf" |
| static const WCHAR | wmf_format [] = L"WMF" |
| static const BYTE | wmf_sig_pattern [] = { 0xd7, 0xcd } |
| static const BYTE | wmf_sig_mask [] = { 0xFF, 0xFF } |
| static const WCHAR | png_codecname [] = L"Built-in PNG" |
| static const WCHAR | png_extension [] = L"*.PNG" |
| static const WCHAR | png_mimetype [] = L"image/png" |
| static const WCHAR | png_format [] = L"PNG" |
| static const BYTE | png_sig_pattern [] = { 137, 80, 78, 71, 13, 10, 26, 10, } |
| static const BYTE | png_sig_mask [] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF } |
| static const WCHAR | ico_codecname [] = L"Built-in ICO" |
| static const WCHAR | ico_extension [] = L"*.ICO" |
| static const WCHAR | ico_mimetype [] = L"image/x-icon" |
| static const WCHAR | ico_format [] = L"ICO" |
| static const BYTE | ico_sig_pattern [] = { 0x00, 0x00, 0x01, 0x00 } |
| static const BYTE | ico_sig_mask [] = { 0xFF, 0xFF, 0xFF, 0xFF } |
| #define convert_indexed_to_indexed | ( | getpixel_function, | |
| setpixel_function | |||
| ) |
| #define convert_indexed_to_rgb | ( | getpixel_function, | |
| setpixel_function | |||
| ) |
| #define convert_rgb_to_indexed | ( | getpixel_function, | |
| setpixel_function | |||
| ) |
| #define convert_rgb_to_rgb | ( | getpixel_function, | |
| setpixel_function | |||
| ) |
| typedef struct image_codec image_codec |
|
static |
Definition at line 2951 of file image.c.
Referenced by gif_metadata_reader(), png_add_unit_properties(), png_read_chromaticity(), png_read_gamma(), png_read_histogram(), png_read_text(), png_read_time(), and png_read_whitepoint().
Definition at line 1523 of file image.c.
Referenced by GdipCreateHBITMAPFromBitmap().
|
static |
Definition at line 3964 of file image.c.
Referenced by select_frame_gif().
| C_ASSERT | ( | offsetof(WmfPlaceableFileHeader, Key) | = =0 | ) |
| GpStatus convert_pixels | ( | INT | width, |
| INT | height, | ||
| INT | dst_stride, | ||
| BYTE * | dst_bits, | ||
| PixelFormat | dst_format, | ||
| ColorPalette * | dst_palette, | ||
| INT | src_stride, | ||
| const BYTE * | src_bits, | ||
| PixelFormat | src_format, | ||
| ColorPalette * | src_palette | ||
| ) |
Definition at line 589 of file image.c.
Referenced by GdipBitmapLockBits(), GdipBitmapUnlockBits(), GdipCloneBitmapArea(), GdipCreateHBITMAPFromBitmap(), and GdipDrawImagePointsRect().
|
static |
Definition at line 6037 of file image.c.
Referenced by GdipInitializePalette().
|
static |
Definition at line 3351 of file image.c.
Referenced by png_read_histogram(), and png_read_text().
|
static |
Definition at line 3750 of file image.c.
Referenced by decode_image_gif(), decode_image_png(), decode_image_wic(), and select_frame_wic().
Definition at line 4104 of file image.c.
Definition at line 4358 of file image.c.
Definition at line 4203 of file image.c.
Definition at line 4160 of file image.c.
|
static |
Definition at line 3904 of file image.c.
Referenced by decode_image_bmp(), decode_image_icon(), decode_image_jpeg(), and decode_image_tiff().
|
static |
Definition at line 4668 of file image.c.
Referenced by encode_image_wic(), and GdipSaveAddImage().
|
static |
Definition at line 4847 of file image.c.
|
static |
|
static |
| GpStatus encode_image_png | ( | GpImage * | image, |
| IStream * | stream, | ||
| GDIPCONST EncoderParameters * | params | ||
| ) |
Definition at line 4859 of file image.c.
Referenced by METAFILE_CreateCompressedImageStream().
|
static |
|
static |
Definition at line 4823 of file image.c.
Referenced by encode_image_BMP(), encode_image_gif(), encode_image_jpeg(), encode_image_png(), and encode_image_tiff().
Definition at line 2071 of file image.c.
Referenced by GdipDisposeImage(), and select_frame_wic().
| GpStatus WINGDIPAPI GdipBitmapApplyEffect | ( | GpBitmap * | bitmap, |
| CGpEffect * | effect, | ||
| RECT * | roi, | ||
| BOOL | useAuxData, | ||
| VOID ** | auxData, | ||
| INT * | auxDataSize | ||
| ) |
| GpStatus WINGDIPAPI GdipBitmapConvertFormat | ( | GpBitmap * | bitmap, |
| PixelFormat | format, | ||
| DitherType | dithertype, | ||
| PaletteType | palettetype, | ||
| ColorPalette * | palette, | ||
| REAL | alphathreshold | ||
| ) |
| GpStatus WINGDIPAPI GdipBitmapCreateApplyEffect | ( | GpBitmap ** | inputBitmaps, |
| INT | numInputs, | ||
| CGpEffect * | effect, | ||
| RECT * | roi, | ||
| RECT * | outputRect, | ||
| GpBitmap ** | outputBitmap, | ||
| BOOL | useAuxData, | ||
| VOID ** | auxData, | ||
| INT * | auxDataSize | ||
| ) |
Definition at line 162 of file image.c.
| GpStatus WINGDIPAPI GdipBitmapGetHistogram | ( | GpBitmap * | bitmap, |
| HistogramFormat | format, | ||
| UINT | num_of_entries, | ||
| UINT * | ch0, | ||
| UINT * | ch1, | ||
| UINT * | ch2, | ||
| UINT * | ch3 | ||
| ) |
Definition at line 5953 of file image.c.
| GpStatus WINGDIPAPI GdipBitmapGetHistogramSize | ( | HistogramFormat | format, |
| UINT * | num_of_entries | ||
| ) |
Definition at line 310 of file image.c.
Referenced by alpha_blend_bmp_pixels(), GdipBitmapGetHistogram(), test_clear(), test_clipping(), test_CloneBitmapArea(), test_colorkey(), test_colormatrix(), test_containers(), test_emfonly(), test_fillrect(), test_fillregion(), test_gamma(), test_gdi_interop_bitmap(), test_GdipFillRectanglesOnBitmapTextureBrush(), test_GdipImageGetFrameDimensionsCount(), test_gditransform(), test_getdc(), test_getdc_scaled(), test_getsetpixel(), test_hatchBrushStyles(), test_lineargradient(), test_LockBits(), test_LockBits_UserBuf(), test_multiframegif(), test_pagetransform(), test_palette(), test_pen(), test_remaptable(), test_renderingOrigin(), test_restoredc(), test_rotateflip(), and test_worldtransform().
| GpStatus WINGDIPAPI GdipBitmapLockBits | ( | GpBitmap * | bitmap, |
| GDIPCONST GpRect * | rect, | ||
| UINT | flags, | ||
| PixelFormat | format, | ||
| BitmapData * | lockeddata | ||
| ) |
Definition at line 1107 of file image.c.
Referenced by brush_fill_pixels(), create_optimal_palette(), decode_frame_wic(), DibLoadImage(), encode_frame_wic(), expect_bitmap_locked_data(), GdipCreateBitmapFromHBITMAP(), GdipCreateBitmapFromHICON(), GdipCreateHICONFromBitmap(), GdipDrawImagePointsRect(), GdipImageRotateFlip(), test_ARGB_conversion(), test_bitmap_stride(), test_bitmapbits(), test_CloneBitmapArea(), test_createhbitmap(), test_graphics_clear(), test_image_format(), test_LockBits(), test_LockBits_UserBuf(), test_PARGB_conversion(), and test_pen_thickness().
Definition at line 521 of file image.c.
Referenced by alpha_blend_bmp_pixels(), test_colorkey(), test_colormatrix(), test_emfonly(), test_fillrect(), test_gamma(), test_GdipCreateBitmapFromHBITMAP(), test_GdipImageGetFrameDimensionsCount(), test_getdc(), test_getsetpixel(), test_histogram(), test_LockBits(), test_multiframegif(), test_palette(), test_PARGB_conversion(), and test_remaptable().
| GpStatus WINGDIPAPI GdipBitmapSetResolution | ( | GpBitmap * | bitmap, |
| REAL | xdpi, | ||
| REAL | ydpi | ||
| ) |
Definition at line 1239 of file image.c.
Referenced by create_graphics(), test_DrawImage(), test_DrawImage_scale(), test_GdipDrawImagePointRect(), test_pen_thickness(), and test_resolution().
| GpStatus WINGDIPAPI GdipBitmapUnlockBits | ( | GpBitmap * | bitmap, |
| BitmapData * | lockeddata | ||
| ) |
Definition at line 1252 of file image.c.
Referenced by brush_fill_pixels(), create_optimal_palette(), decode_frame_wic(), DibLoadImage(), encode_frame_wic(), expect_bitmap_locked_data(), GdipCreateBitmapFromHBITMAP(), GdipCreateBitmapFromHICON(), GdipCreateHICONFromBitmap(), GdipDrawImagePointsRect(), GdipImageRotateFlip(), test_ARGB_conversion(), test_bitmap_stride(), test_bitmapbits(), test_CloneBitmapArea(), test_createhbitmap(), test_graphics_clear(), test_image_format(), test_LockBits(), test_LockBits_UserBuf(), test_PARGB_conversion(), and test_pen_thickness().
| GpStatus WINGDIPAPI GdipCloneBitmapArea | ( | REAL | x, |
| REAL | y, | ||
| REAL | width, | ||
| REAL | height, | ||
| PixelFormat | format, | ||
| GpBitmap * | srcBitmap, | ||
| GpBitmap ** | dstBitmap | ||
| ) |
Definition at line 1313 of file image.c.
Referenced by GdipCloneBitmapAreaI(), and GdipCreateTextureIA().
| GpStatus WINGDIPAPI GdipCloneBitmapAreaI | ( | INT | x, |
| INT | y, | ||
| INT | width, | ||
| INT | height, | ||
| PixelFormat | format, | ||
| GpBitmap * | srcBitmap, | ||
| GpBitmap ** | dstBitmap | ||
| ) |
Definition at line 1377 of file image.c.
Referenced by GdipCloneImage(), and test_CloneBitmapArea().
| GpStatus WINGDIPAPI GdipCloneImage | ( | GpImage * | image, |
| GpImage ** | cloneImage | ||
| ) |
Definition at line 1385 of file image.c.
Referenced by GdipCreateCachedBitmap(), GdipGetTextureImage(), load_image(), sync_metafile(), test_bufferrawformat(), test_emfonly(), test_GdipCloneImage(), and test_pen().
| GpStatus WINGDIPAPI GdipCreateBitmapFromFile | ( | GDIPCONST WCHAR * | filename, |
| GpBitmap ** | bitmap | ||
| ) |
Definition at line 1437 of file image.c.
Referenced by DibLoadImage(), GdipCreateBitmapFromFileICM(), and test_LoadingImages().
| GpStatus WINGDIPAPI GdipCreateBitmapFromFileICM | ( | GDIPCONST WCHAR * | filename, |
| GpBitmap ** | bitmap | ||
| ) |
Definition at line 1492 of file image.c.
| GpStatus WINGDIPAPI GdipCreateBitmapFromGdiDib | ( | GDIPCONST BITMAPINFO * | info, |
| VOID * | bits, | ||
| GpBitmap ** | bitmap | ||
| ) |
Definition at line 1462 of file image.c.
Referenced by test_drawimage(), test_FromGdiDib(), and test_GdipDrawImagePointsRect().
| GpStatus WINGDIPAPI GdipCreateBitmapFromGraphics | ( | INT | width, |
| INT | height, | ||
| GpGraphics * | target, | ||
| GpBitmap ** | bitmap | ||
| ) |
Definition at line 1597 of file image.c.
Referenced by test_bitmapfromgraphics(), test_texturewrap(), and test_transform().
| GpStatus WINGDIPAPI GdipCreateBitmapFromHBITMAP | ( | HBITMAP | hbm, |
| HPALETTE | hpal, | ||
| GpBitmap ** | bitmap | ||
| ) |
Definition at line 5392 of file image.c.
Referenced by GdipCreateBitmapFromGdiDib(), GdipCreateBitmapFromResource(), and test_GdipCreateBitmapFromHBITMAP().
| GpStatus WINGDIPAPI GdipCreateBitmapFromHICON | ( | HICON | hicon, |
| GpBitmap ** | bitmap | ||
| ) |
Definition at line 1619 of file image.c.
Referenced by test_fromhicon().
| GpStatus WINGDIPAPI GdipCreateBitmapFromResource | ( | HINSTANCE | hInstance, |
| GDIPCONST WCHAR * | lpBitmapName, | ||
| GpBitmap ** | bitmap | ||
| ) |
Definition at line 1500 of file image.c.
| GpStatus WINGDIPAPI GdipCreateBitmapFromScan0 | ( | INT | width, |
| INT | height, | ||
| INT | stride, | ||
| PixelFormat | format, | ||
| BYTE * | scan0, | ||
| GpBitmap ** | bitmap | ||
| ) |
Definition at line 1793 of file image.c.
Referenced by create_graphics(), decode_frame_wic(), GdipCloneBitmapArea(), GdipCreateBitmapFromGraphics(), GdipCreateBitmapFromHBITMAP(), GdipCreateBitmapFromHICON(), GdipGetImageThumbnail(), GdipImageRotateFlip(), metafile_deserialize_image(), METAFILE_DrawImagePointsRect(), test_ARGB_conversion(), test_bitmap_stride(), test_bitmapbits(), test_clear(), test_clipping(), test_CloneBitmapArea(), test_colorkey(), test_colormatrix(), test_containers(), test_createhbitmap(), test_dispose(), test_drawdriverstring(), test_DrawImage(), test_DrawImage_scale(), test_DrawImage_SourceCopy(), test_emfonly(), test_fillrect(), test_fillregion(), test_fromMemoryBitmap(), test_gamma(), test_gdi_interop_bitmap(), test_GdipCloneImage(), test_GdipDrawImageFX(), test_GdipDrawImagePointRect(), test_GdipDrawImagePointsRectOnMemoryDC(), test_GdipFillRectanglesOnBitmapTextureBrush(), test_GdipFillRectanglesOnMemoryDCTextureBrush(), test_GdipGetImageFlags(), test_GdipGetNearestColor(), test_GdipImageGetFrameDimensionsCount(), test_GdipInitializePalette(), test_gditransform(), test_getdc(), test_getdc_scaled(), test_GetImageDimension(), test_getsetpixel(), test_getthumbnail(), test_graphics_clear(), test_hatchBrushStyles(), test_histogram(), test_image_format(), test_imageabort(), test_is_outline_visible_path_point(), test_lineargradient(), test_LockBits(), test_LockBits_UserBuf(), test_pagetransform(), test_palette(), test_PARGB_conversion(), test_pen(), test_pen_thickness(), test_png_save_palette(), test_remaptable(), test_renderingOrigin(), test_resolution(), test_restoredc(), test_rotateflip(), test_SavingImages(), test_SavingMultiPageTiff(), test_Scan0(), test_supported_encoders(), test_unknownfontdecode(), and test_worldtransform().
| GpStatus WINGDIPAPI GdipCreateBitmapFromStream | ( | IStream * | stream, |
| GpBitmap ** | bitmap | ||
| ) |
Definition at line 1895 of file image.c.
Referenced by GdipCreateBitmapFromFile(), GdipCreateBitmapFromStreamICM(), metafile_deserialize_image(), and test_multiframegif().
| GpStatus WINGDIPAPI GdipCreateBitmapFromStreamICM | ( | IStream * | stream, |
| GpBitmap ** | bitmap | ||
| ) |
| GpStatus WINGDIPAPI GdipCreateCachedBitmap | ( | GpBitmap * | bitmap, |
| GpGraphics * | graphics, | ||
| GpCachedBitmap ** | cachedbmp | ||
| ) |
Definition at line 1925 of file image.c.
| GpStatus WINGDIPAPI GdipCreateEffect | ( | const GUID | guid, |
| CGpEffect ** | effect | ||
| ) |
Definition at line 5515 of file image.c.
| GpStatus WINGDIPAPI GdipCreateHBITMAPFromBitmap | ( | GpBitmap * | bitmap, |
| HBITMAP * | hbmReturn, | ||
| ARGB | background | ||
| ) |
Definition at line 1535 of file image.c.
Referenced by test_createhbitmap(), and test_image_format().
| GpStatus WINGDIPAPI GdipCreateHICONFromBitmap | ( | GpBitmap * | bitmap, |
| HICON * | hicon | ||
| ) |
Definition at line 1948 of file image.c.
| GpStatus WINGDIPAPI GdipDeleteCachedBitmap | ( | GpCachedBitmap * | cachedbmp | ) |
| GpStatus WINGDIPAPI GdipDeleteEffect | ( | CGpEffect * | effect | ) |
| GpStatus WINGDIPAPI GdipDisposeImage | ( | GpImage * | image | ) |
Definition at line 2099 of file image.c.
Referenced by decode_frame_wic(), DibLoadImage(), GdipCloneBitmapArea(), GdipCreateBitmapFromHBITMAP(), GdipCreateBitmapFromHICON(), GdipCreateBitmapFromScan0(), GdipCreateBitmapFromStream(), GdipCreateMetafileFromStream(), GdipCreateTextureIA(), GdipDeleteBrush(), GdipDeleteCachedBitmap(), GdipGetImageThumbnail(), GdipGetMetafileHeaderFromFile(), GdipGetMetafileHeaderFromStream(), GdipGetMetafileHeaderFromWmf(), GdipImageRotateFlip(), load_image(), metafile_deserialize_brush(), metafile_deserialize_image(), METAFILE_DrawImagePointsRect(), metafile_free_object_table_entry(), Preview_pFreeImage(), select_frame_wic(), SetWallpaper(), sync_metafile(), test_ARGB_conversion(), test_bitmap_stride(), test_bitmapbits(), test_bitmapfromgraphics(), test_bufferrawformat(), test_clear(), test_clipping(), test_CloneBitmapArea(), test_colorkey(), test_colormatrix(), test_containers(), test_converttoemfplus(), test_createfromwmf(), test_createfromwmf_noplaceable(), test_createhbitmap(), test_dispose(), test_drawdriverstring(), test_drawellipse(), test_DrawImage(), test_drawimage(), test_DrawImage_scale(), test_DrawImage_SourceCopy(), test_drawpath(), test_drawrectangle(), test_emfonly(), test_empty(), test_fillellipse(), test_fillpath(), test_fillrect(), test_fillregion(), test_frameunit(), test_FromGdiDib(), test_fromhicon(), test_fromMemoryBitmap(), test_gamma(), test_gdi_interop_bitmap(), test_GdipCloneImage(), test_GdipCreateBitmapFromHBITMAP(), test_GdipDrawImageFX(), test_GdipDrawImagePointRect(), test_GdipDrawImagePointsRect(), test_GdipDrawImagePointsRectOnMemoryDC(), test_GdipFillRectanglesOnBitmapTextureBrush(), test_GdipFillRectanglesOnMemoryDCTextureBrush(), test_GdipGetAllPropertyItems(), test_GdipGetImageFlags(), test_GdipGetNearestColor(), test_GdipImageGetFrameDimensionsCount(), test_GdipInitializePalette(), test_GdipMeasureString(), test_gditransform(), test_getdc(), test_getdc_scaled(), test_GetImageDimension(), test_getsetpixel(), test_getthumbnail(), test_gif_properties(), test_graphics_clear(), test_hatchBrushStyles(), test_histogram(), test_image_format(), test_image_properties(), test_imageabort(), test_lineargradient(), test_loadwmf(), test_LockBits(), test_LockBits_UserBuf(), test_multiframegif(), test_nullframerect(), test_offsetclip(), test_pagetransform(), test_palette(), test_PARGB_conversion(), test_pen(), test_pen_thickness(), test_png_color_formats(), test_png_datetime_property(), test_png_histogram_property(), test_png_save_palette(), test_png_unit_properties(), test_printer_dc(), test_properties(), test_remaptable(), test_renderingOrigin(), test_resetclip(), test_resolution(), test_restoredc(), test_rotateflip(), test_SavingImages(), test_SavingMultiPageTiff(), test_Scan0(), test_setclippath(), test_supported_encoders(), test_texturewrap(), test_tiff_palette(), test_tiff_properties(), test_transform(), test_unknownfontdecode(), and test_worldtransform().
| GpStatus WINGDIPAPI GdipDrawCachedBitmap | ( | GpGraphics * | graphics, |
| GpCachedBitmap * | cachedbmp, | ||
| INT | x, | ||
| INT | y | ||
| ) |
Definition at line 2015 of file image.c.
| GpStatus WINGDIPAPI GdipFindFirstImageItem | ( | GpImage * | image, |
| ImageItemData * | item | ||
| ) |
| GpStatus WINGDIPAPI GdipGetAllPropertyItems | ( | GpImage * | image, |
| UINT | size, | ||
| UINT | count, | ||
| PropertyItem * | buf | ||
| ) |
Definition at line 2746 of file image.c.
Referenced by check_properties_get_all(), and test_image_properties().
| GpStatus WINGDIPAPI GdipGetEffectParameterSize | ( | CGpEffect * | effect, |
| UINT * | size | ||
| ) |
Definition at line 5599 of file image.c.
| GpStatus WINGDIPAPI GdipGetEncoderParameterListSize | ( | GpImage * | image, |
| GDIPCONST CLSID * | clsidEncoder, | ||
| UINT * | size | ||
| ) |
| GpStatus WINGDIPAPI GdipGetImageBounds | ( | GpImage * | image, |
| GpRectF * | srcRect, | ||
| GpUnit * | srcUnit | ||
| ) |
Definition at line 2140 of file image.c.
Referenced by GdipDrawImageFX(), GdipDrawImageRect(), get_graphics_device_bounds(), test_createfromwmf(), test_emfonly(), test_empty(), test_frameunit(), test_GdipCloneImage(), test_loadwmf(), and test_nullframerect().
| GpStatus WINGDIPAPI GdipGetImageDecoders | ( | UINT | numDecoders, |
| UINT | size, | ||
| ImageCodecInfo * | decoders | ||
| ) |
Definition at line 5258 of file image.c.
Referenced by GdipGetSupportedFileExtensions(), and pBuildFileList().
| GpStatus WINGDIPAPI GdipGetImageDecodersSize | ( | UINT * | numDecoders, |
| UINT * | size | ||
| ) |
Definition at line 5234 of file image.c.
Referenced by GdipGetSupportedFileExtensions(), and pBuildFileList().
| GpStatus WINGDIPAPI GdipGetImageDimension | ( | GpImage * | image, |
| REAL * | width, | ||
| REAL * | height | ||
| ) |
Definition at line 2168 of file image.c.
Referenced by test_GdipCreateBitmapFromHBITMAP(), test_GetImageDimension(), test_SavingImages(), and test_SavingMultiPageTiff().
| GpStatus WINGDIPAPI GdipGetImageEncoders | ( | UINT | numEncoders, |
| UINT | size, | ||
| ImageCodecInfo * | encoders | ||
| ) |
Definition at line 5309 of file image.c.
Referenced by GdipGetEncoderClsid(), get_encoder_clsid(), Preview_pSaveImage(), Preview_pSaveImageAs(), test_encoders(), and test_SavingImages().
| GpStatus WINGDIPAPI GdipGetImageEncodersSize | ( | UINT * | numEncoders, |
| UINT * | size | ||
| ) |
Definition at line 5285 of file image.c.
Referenced by GdipGetEncoderClsid(), get_encoder_clsid(), Preview_pSaveImage(), Preview_pSaveImageAs(), test_encoders(), and test_SavingImages().
| GpStatus WINGDIPAPI GdipGetImageFlags | ( | GpImage * | image, |
| UINT * | flags | ||
| ) |
Definition at line 5672 of file image.c.
Referenced by test_GdipGetImageFlags(), test_png_color_formats(), and ZoomWnd_OnDraw().
| GpStatus WINGDIPAPI GdipGetImageGraphicsContext | ( | GpImage * | image, |
| GpGraphics ** | graphics | ||
| ) |
Definition at line 2195 of file image.c.
Referenced by create_graphics(), GdipGetImageThumbnail(), METAFILE_DrawImagePointsRect(), test_clear(), test_clipping(), test_colorkey(), test_colormatrix(), test_containers(), test_converttoemfplus(), test_drawdriverstring(), test_drawellipse(), test_DrawImage(), test_drawimage(), test_DrawImage_scale(), test_DrawImage_SourceCopy(), test_drawpath(), test_drawrectangle(), test_emfonly(), test_empty(), test_fillellipse(), test_fillpath(), test_fillrect(), test_fillregion(), test_frameunit(), test_fromMemoryBitmap(), test_gamma(), test_gdi_interop_bitmap(), test_GdipDrawImagePointRect(), test_GdipFillRectanglesOnBitmapTextureBrush(), test_GdipGetNearestColor(), test_gditransform(), test_getdc(), test_getdc_scaled(), test_graphics_clear(), test_hatchBrushStyles(), test_is_outline_visible_path_point(), test_lineargradient(), test_nullframerect(), test_offsetclip(), test_pagetransform(), test_pen(), test_pen_thickness(), test_printer_dc(), test_properties(), test_remaptable(), test_renderingOrigin(), test_resetclip(), test_resolution(), test_restoredc(), test_setclippath(), test_unknownfontdecode(), and test_worldtransform().
| GpStatus WINGDIPAPI GdipGetImageHeight | ( | GpImage * | image, |
| UINT * | height | ||
| ) |
Definition at line 2213 of file image.c.
Referenced by DibLoadImage(), encode_frame_wic(), expect_image_properties(), GdipBitmapGetHistogram(), GdipCloneBrush(), GdipCreateHBITMAPFromBitmap(), GdipCreateTexture(), GdipDrawImage(), GdipDrawImagePoints(), GdipGetImageThumbnail(), Preview_ResetZoom(), test_bitmapfromgraphics(), test_getthumbnail(), test_pagetransform(), test_rotateflip(), ZoomWnd_OnDraw(), ZoomWnd_OnHVScroll(), and ZoomWnd_UpdateScroll().
| GpStatus WINGDIPAPI GdipGetImageHorizontalResolution | ( | GpImage * | image, |
| REAL * | res | ||
| ) |
Definition at line 2236 of file image.c.
Referenced by create_graphics(), test_bitmapfromgraphics(), test_createfromwmf(), test_emfonly(), test_empty(), test_frameunit(), test_loadwmf(), test_pagetransform(), and test_resolution().
| GpStatus WINGDIPAPI GdipGetImageItemData | ( | GpImage * | image, |
| ImageItemData * | item | ||
| ) |
| GpStatus WINGDIPAPI GdipGetImagePalette | ( | GpImage * | image, |
| ColorPalette * | palette, | ||
| INT | size | ||
| ) |
Definition at line 4950 of file image.c.
Referenced by test_GdipCreateBitmapFromHBITMAP(), test_multiframegif(), test_palette(), and test_tiff_palette().
| GpStatus WINGDIPAPI GdipGetImagePaletteSize | ( | GpImage * | image, |
| INT * | size | ||
| ) |
Definition at line 2248 of file image.c.
Referenced by test_image_properties(), test_multiframegif(), test_palette(), and test_tiff_palette().
| GpStatus WINGDIPAPI GdipGetImagePixelFormat | ( | GpImage * | image, |
| PixelFormat * | format | ||
| ) |
Definition at line 2272 of file image.c.
Referenced by expect_image_properties(), test_bitmapfromgraphics(), test_FromGdiDib(), test_GdipCreateBitmapFromHBITMAP(), test_image_format(), test_multiframegif(), test_png_color_formats(), and test_tiff_palette().
| GpStatus WINGDIPAPI GdipGetImageRawFormat | ( | GpImage * | image, |
| GUID * | format | ||
| ) |
Definition at line 2287 of file image.c.
Referenced by expect_rawformat(), Preview_pSaveImage(), Preview_pSaveImageAs(), and SetWallpaper().
| GpStatus WINGDIPAPI GdipGetImageThumbnail | ( | GpImage * | image, |
| UINT | width, | ||
| UINT | height, | ||
| GpImage ** | ret_image, | ||
| GetThumbnailImageAbort | cb, | ||
| VOID * | cb_data | ||
| ) |
Definition at line 5715 of file image.c.
Referenced by test_getthumbnail(), and test_image_format().
| GpStatus WINGDIPAPI GdipGetImageType | ( | GpImage * | image, |
| ImageType * | type | ||
| ) |
Definition at line 2299 of file image.c.
Referenced by expect_image_properties(), load_image(), test_image_properties(), and test_png_color_formats().
| GpStatus WINGDIPAPI GdipGetImageVerticalResolution | ( | GpImage * | image, |
| REAL * | res | ||
| ) |
Definition at line 2311 of file image.c.
Referenced by create_graphics(), test_bitmapfromgraphics(), test_createfromwmf(), test_emfonly(), test_empty(), test_frameunit(), test_loadwmf(), test_pagetransform(), and test_resolution().
| GpStatus WINGDIPAPI GdipGetImageWidth | ( | GpImage * | image, |
| UINT * | width | ||
| ) |
Definition at line 2323 of file image.c.
Referenced by DibLoadImage(), encode_frame_wic(), expect_image_properties(), GdipBitmapGetHistogram(), GdipCloneBrush(), GdipCreateHBITMAPFromBitmap(), GdipCreateTexture(), GdipDrawImage(), GdipDrawImagePoints(), GdipGetImageThumbnail(), Preview_ResetZoom(), test_bitmapfromgraphics(), test_getthumbnail(), test_pagetransform(), test_rotateflip(), ZoomWnd_OnDraw(), ZoomWnd_OnHVScroll(), and ZoomWnd_UpdateScroll().
| GpStatus WINGDIPAPI GdipGetPropertyCount | ( | GpImage * | image, |
| UINT * | num | ||
| ) |
Definition at line 2346 of file image.c.
Referenced by check_properties_id_list(), and test_image_properties().
| GpStatus WINGDIPAPI GdipGetPropertyIdList | ( | GpImage * | image, |
| UINT | num, | ||
| PROPID * | list | ||
| ) |
Definition at line 2369 of file image.c.
Referenced by check_properties_id_list(), and test_image_properties().
| GpStatus WINGDIPAPI GdipGetPropertyItem | ( | GpImage * | image, |
| PROPID | propid, | ||
| UINT | size, | ||
| PropertyItem * | buffer | ||
| ) |
Definition at line 2617 of file image.c.
Referenced by Anime_LoadInfo(), check_properties_id_list(), and test_image_properties().
| GpStatus WINGDIPAPI GdipGetPropertyItemSize | ( | GpImage * | image, |
| PROPID | propid, | ||
| UINT * | size | ||
| ) |
Definition at line 2471 of file image.c.
Referenced by Anime_LoadInfo(), check_properties_id_list(), and test_image_properties().
| GpStatus WINGDIPAPI GdipGetPropertySize | ( | GpImage * | image, |
| UINT * | size, | ||
| UINT * | count | ||
| ) |
Definition at line 2670 of file image.c.
Referenced by add_property(), check_properties_get_all(), GdipGetAllPropertyItems(), and test_image_properties().
| GpStatus WINGDIPAPI GdipImageForceValidation | ( | GpImage * | image | ) |
| GpStatus WINGDIPAPI GdipImageGetFrameCount | ( | GpImage * | image, |
| GDIPCONST GUID * | dimensionID, | ||
| UINT * | count | ||
| ) |
Definition at line 2855 of file image.c.
Referenced by Anime_LoadInfo(), test_GdipGetAllPropertyItems(), test_GdipImageGetFrameDimensionsCount(), test_gif_properties(), test_multiframegif(), test_SavingMultiPageTiff(), and test_tiff_properties().
| GpStatus WINGDIPAPI GdipImageGetFrameDimensionsCount | ( | GpImage * | image, |
| UINT * | count | ||
| ) |
Definition at line 2875 of file image.c.
Referenced by Anime_LoadInfo(), test_GdipGetAllPropertyItems(), test_GdipImageGetFrameDimensionsCount(), test_gif_properties(), test_multiframegif(), and test_tiff_properties().
| GpStatus WINGDIPAPI GdipImageGetFrameDimensionsList | ( | GpImage * | image, |
| GUID * | dimensionIDs, | ||
| UINT | count | ||
| ) |
Definition at line 2890 of file image.c.
Referenced by Anime_LoadInfo(), test_GdipGetAllPropertyItems(), test_GdipImageGetFrameDimensionsCount(), test_gif_properties(), test_multiframegif(), and test_tiff_properties().
| GpStatus WINGDIPAPI GdipImageRotateFlip | ( | GpImage * | image, |
| RotateFlipType | type | ||
| ) |
Definition at line 5764 of file image.c.
Referenced by Preview_OnCommand(), test_multiframegif(), and test_rotateflip().
| GpStatus WINGDIPAPI GdipImageSelectActiveFrame | ( | GpImage * | image, |
| GDIPCONST GUID * | dimensionID, | ||
| UINT | frame | ||
| ) |
Definition at line 4474 of file image.c.
Referenced by Anime_SetFrameIndex(), test_GdipImageGetFrameDimensionsCount(), test_gif_properties(), test_multiframegif(), and test_SavingMultiPageTiff().
| GpStatus WINGDIPAPI GdipImageSetAbort | ( | GpImage * | image, |
| GdiplusAbort * | pabort | ||
| ) |
| GpStatus WINGDIPAPI GdipInitializePalette | ( | ColorPalette * | palette, |
| PaletteType | type, | ||
| INT | desired, | ||
| BOOL | transparent, | ||
| GpBitmap * | bitmap | ||
| ) |
Definition at line 6092 of file image.c.
| GpStatus WINGDIPAPI GdipLoadImageFromFile | ( | GDIPCONST WCHAR * | filename, |
| GpImage ** | image | ||
| ) |
Definition at line 2918 of file image.c.
Referenced by GdipLoadImageFromFileICM(), SetWallpaper(), test_LoadingImages(), test_SavingImages(), and test_SavingMultiPageTiff().
| GpStatus WINGDIPAPI GdipLoadImageFromFileICM | ( | GDIPCONST WCHAR * | filename, |
| GpImage ** | image | ||
| ) |
Definition at line 2944 of file image.c.
Referenced by test_LoadingImages().
| GpStatus WINGDIPAPI GdipLoadImageFromStream | ( | IStream * | stream, |
| GpImage ** | image | ||
| ) |
Definition at line 4525 of file image.c.
Referenced by GdipCreateBitmapFromStream(), GdipCreateMetafileFromStream(), GdipLoadImageFromFile(), GdipLoadImageFromStreamICM(), load_image(), test_bufferrawformat(), test_GdipLoadImageFromStream(), test_loadwmf(), and test_transform().
| GpStatus WINGDIPAPI GdipLoadImageFromStreamICM | ( | IStream * | stream, |
| GpImage ** | image | ||
| ) |
| GpStatus WINGDIPAPI GdipRemovePropertyItem | ( | GpImage * | image, |
| PROPID | propId | ||
| ) |
| GpStatus WINGDIPAPI GdipSaveAdd | ( | GpImage * | image, |
| GDIPCONST EncoderParameters * | params | ||
| ) |
Definition at line 4913 of file image.c.
Referenced by test_SavingMultiPageTiff().
| GpStatus WINGDIPAPI GdipSaveAddImage | ( | GpImage * | image, |
| GpImage * | additional_image, | ||
| GDIPCONST EncoderParameters * | params | ||
| ) |
Definition at line 4928 of file image.c.
Referenced by GdipSaveAdd(), and test_SavingMultiPageTiff().
| GpStatus WINGDIPAPI GdipSaveImageToFile | ( | GpImage * | image, |
| GDIPCONST WCHAR * | filename, | ||
| GDIPCONST CLSID * | clsidEncoder, | ||
| GDIPCONST EncoderParameters * | encoderParams | ||
| ) |
Definition at line 4596 of file image.c.
Referenced by Preview_pSaveImage(), Preview_pSaveImageAs(), SetWallpaper(), test_SavingImages(), and test_SavingMultiPageTiff().
| GpStatus WINGDIPAPI GdipSaveImageToStream | ( | GpImage * | image, |
| IStream * | stream, | ||
| GDIPCONST CLSID * | clsid, | ||
| GDIPCONST EncoderParameters * | params | ||
| ) |
Definition at line 4880 of file image.c.
Referenced by GdipSaveImageToFile(), test_png_save_palette(), and test_supported_encoders().
| GpStatus WINGDIPAPI GdipSetImagePalette | ( | GpImage * | image, |
| GDIPCONST ColorPalette * | palette | ||
| ) |
Definition at line 4984 of file image.c.
Referenced by GdipCreateBitmapFromHBITMAP(), metafile_deserialize_image(), test_bitmapbits(), and test_palette().
| GpStatus WINGDIPAPI GdipSetPropertyItem | ( | GpImage * | image, |
| GDIPCONST PropertyItem * | item | ||
| ) |
| GpStatus WINGDIPAPI GdipTestControl | ( | GpTestControlEnum | control, |
| void * | param | ||
| ) |
Definition at line 5684 of file image.c.
Referenced by test_testcontrol().
Definition at line 1741 of file image.c.
Referenced by GdipCreateBitmapFromScan0().
|
static |
Definition at line 5348 of file image.c.
Referenced by GdipCreateBitmapFromHBITMAP().
|
static |
Definition at line 2995 of file image.c.
Referenced by get_gif_background(), get_gif_palette(), and get_gif_transparent_idx().
|
static |
Definition at line 4409 of file image.c.
Referenced by BmpDecoder_GetDecoderInfo(), CommonDecoder_GetDecoderInfo(), DdsDecoder_GetDecoderInfo(), GdipLoadImageFromStream(), GifDecoder_GetDecoderInfo(), IcoDecoder_GetDecoderInfo(), and TgaDecoder_GetDecoderInfo().
|
static |
Definition at line 4457 of file image.c.
Referenced by GdipImageSelectActiveFrame().
|
static |
Definition at line 3111 of file image.c.
Referenced by gif_metadata_reader().
Definition at line 4003 of file image.c.
Referenced by select_frame_gif().
|
static |
|
static |
Definition at line 3192 of file image.c.
Referenced by get_gif_frame_rect(), gif_metadata_reader(), and select_frame_gif().
|
static |
Definition at line 3952 of file image.c.
Referenced by blit_gif_frame(), and select_frame_gif().
|
static |
Definition at line 3072 of file image.c.
Referenced by gif_metadata_reader().
|
static |
Definition at line 3125 of file image.c.
Referenced by gif_metadata_reader().
|
static |
Definition at line 3179 of file image.c.
Referenced by gif_metadata_reader().
|
static |
Definition at line 66 of file image.c.
Referenced by decode_frame_wic(), and GdipInitializePalette().
|
inlinestatic |
Definition at line 385 of file image.c.
Referenced by setpixel_1bppIndexed(), setpixel_4bppIndexed(), and setpixel_8bppIndexed().
|
static |
Definition at line 3022 of file image.c.
Referenced by FT_DEFINE_SERVICE(), get_gif_background(), get_gif_comment(), get_gif_frame_property(), get_gif_loopcount(), and get_gif_transparent_idx().
Definition at line 1779 of file image.c.
Referenced by GdipCreateBitmapFromScan0().
|
static |
Definition at line 3370 of file image.c.
Referenced by png_read_chromaticity(), png_read_gamma(), and png_read_whitepoint().
|
inlinestatic |
Definition at line 219 of file image.c.
Referenced by convert_pixels(), and GdipBitmapGetPixel().
|
inlinestatic |
Definition at line 192 of file image.c.
Referenced by convert_pixels(), and GdipBitmapGetPixel().
Definition at line 174 of file image.c.
Referenced by convert_pixels(), and GdipBitmapGetPixel().
|
inlinestatic |
Definition at line 259 of file image.c.
Referenced by convert_pixels(), and GdipBitmapGetPixel().
Definition at line 187 of file image.c.
Referenced by convert_pixels(), and GdipBitmapGetPixel().
|
static |
Definition at line 3229 of file image.c.
Referenced by decode_image_gif().
|
static |
Definition at line 4800 of file image.c.
Referenced by encode_image_wic(), and GdipSaveAddImage().
Definition at line 4127 of file image.c.
Referenced by decode_image_png().
|
static |
Definition at line 3726 of file image.c.
Referenced by decode_image_gif(), decode_image_png(), and decode_image_wic().
|
static |
Definition at line 4626 of file image.c.
Referenced by encode_image_wic().
|
static |
Definition at line 4319 of file image.c.
Referenced by decode_image_emf().
|
static |
Definition at line 4237 of file image.c.
Referenced by decode_image_wmf().
|
static |
Definition at line 3582 of file image.c.
Referenced by png_metadata_reader().
|
static |
Definition at line 3631 of file image.c.
Referenced by decode_image_png().
|
static |
Definition at line 3488 of file image.c.
Referenced by png_metadata_reader().
|
static |
Definition at line 3444 of file image.c.
Referenced by png_metadata_reader().
|
static |
Definition at line 3562 of file image.c.
Referenced by png_metadata_reader().
|
static |
Definition at line 3393 of file image.c.
Referenced by png_metadata_reader().
|
static |
Definition at line 3519 of file image.c.
Referenced by png_metadata_reader().
|
static |
Definition at line 3465 of file image.c.
Referenced by png_metadata_reader().
|
static |
Definition at line 2437 of file image.c.
Referenced by create_prop(), GdipGetAllPropertyItems(), GdipGetPropertyItemSize(), GdipGetPropertySize(), get_property(), and propvariant_to_item().
|
static |
Definition at line 2554 of file image.c.
Referenced by create_prop(), GdipGetAllPropertyItems(), GdipGetPropertyItem(), and get_property().
Definition at line 4029 of file image.c.
|
static |
Definition at line 5945 of file image.c.
Referenced by GdipBitmapGetHistogram().
|
static |
Definition at line 5930 of file image.c.
Referenced by GdipBitmapGetHistogram().
|
static |
Definition at line 5935 of file image.c.
Referenced by GdipBitmapGetHistogram().
|
static |
Definition at line 5940 of file image.c.
Referenced by GdipBitmapGetHistogram().
|
static |
Definition at line 126 of file image.c.
Referenced by encode_frame_wic().
|
inlinestatic |
Definition at line 435 of file image.c.
Referenced by convert_pixels(), and GdipBitmapSetPixel().
|
inlinestatic |
Definition at line 441 of file image.c.
Referenced by convert_pixels(), and GdipBitmapSetPixel().
|
inlinestatic |
Definition at line 449 of file image.c.
Referenced by convert_pixels(), and GdipBitmapSetPixel().
|
inlinestatic |
Definition at line 420 of file image.c.
Referenced by convert_pixels(), and GdipBitmapSetPixel().
Definition at line 474 of file image.c.
Referenced by convert_pixels(), and GdipBitmapSetPixel().
Definition at line 503 of file image.c.
Referenced by convert_pixels(), and GdipBitmapSetPixel().
|
inlinestatic |
Definition at line 413 of file image.c.
Referenced by convert_pixels(), and GdipBitmapSetPixel().
Definition at line 4655 of file image.c.
Referenced by encode_image_wic(), free_image_data(), GdipSaveAddImage(), GdipSaveImageToFile(), initialize_encoder_wic(), and move_bitmap().
Definition at line 2525 of file image.c.
Referenced by propvariant_to_item().
| HRESULT WINAPI WICCreateImagingFactory_Proxy | ( | UINT | SDKVersion, |
| IWICImagingFactory ** | ppIImagingFactory | ||
| ) |
Definition at line 649 of file proxy.c.
Referenced by create_optimal_palette(), get_gif_palette(), get_palette(), initialize_decoder_wic(), initialize_encoder_wic(), and set_palette().
| WINE_DEFAULT_DEBUG_CHANNEL | ( | gdiplus | ) |
Definition at line 5015 of file image.c.
Referenced by test_encoders().
|
static |
Definition at line 4407 of file image.c.
Referenced by GdipGetImageDecoders(), GdipGetImageDecodersSize(), GdipGetImageEncoders(), GdipGetImageEncodersSize(), GdipSaveImageToStream(), get_decoder_info(), get_decoder_info_from_image(), test_encoders(), test_raw_decompress(), test_SavingImages(), and TIFFGetConfiguredCODECs().
| PixelFormat gdip_format |
Definition at line 48 of file image.c.
Referenced by decode_frame_wic(), and encode_frame_wic().
Definition at line 5027 of file image.c.
Referenced by load_GifComment_metadata().
|
static |
Definition at line 2848 of file image.c.
Referenced by GdipImageGetFrameDimensionsList().
| WICBitmapPaletteType palette_type |
Definition at line 50 of file image.c.
Referenced by decode_frame_wic(), FormatConverter_Initialize(), get_palette(), and test_createbitmapfromsource().
| const struct { ... } pixel_formats[] |
Referenced by decode_frame_wic(), and encode_frame_wic().
Definition at line 5058 of file image.c.
Referenced by DIB_GetBitmapInfo().
| const WICPixelFormatGUID* wic_format |
Definition at line 47 of file image.c.
Referenced by decode_frame_wic(), and encode_frame_wic().