2 * Copyright (C) 2007 Google (Evan Stade)
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #ifndef _GDIPLUSIMAGING_H
20 #define _GDIPLUSIMAGING_H
24 ImageLockModeRead = 1,
25 ImageLockModeWrite = 2,
26 ImageLockModeUserInputBuf = 4
30 class EncoderParameter
39 class EncoderParameters
43 EncoderParameter Parameter[1];
51 const WCHAR* CodecName;
53 const WCHAR* FormatDescription;
54 const WCHAR* FilenameExtension;
55 const WCHAR* MimeType;
60 const BYTE* SigPattern;
70 PixelFormat PixelFormat;
87 #else /* end of c++ typedefs */
89 typedef enum ImageLockMode ImageLockMode;
91 typedef struct EncoderParameter
99 typedef struct EncoderParameters
102 EncoderParameter Parameter[1];
105 typedef struct ImageCodecInfo
109 const WCHAR* CodecName;
110 const WCHAR* DllName;
111 const WCHAR* FormatDescription;
112 const WCHAR* FilenameExtension;
113 const WCHAR* MimeType;
118 const BYTE* SigPattern;
122 typedef struct BitmapData
127 PixelFormat PixelFormat;
129 UINT_PTR Reserved; /* undocumented: stores the lock mode */
132 typedef struct ImageItemData
143 #endif /* end of c typedefs */
145 #endif /* _GDIPLUSIMAGING_H */