-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgpimage.cpp
397 lines (344 loc) · 10.5 KB
/
gpimage.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
#include <windows.h>
#include <windowsx.h>
#include <gdiplus.h>
#include <shlwapi.h>
#pragma comment(lib, "gdiplus.lib")
using namespace Gdiplus;
// GDI+を使用するために必要なデータ。
GdiplusStartupInput g_gdiplusStartupInput;
ULONG_PTR g_gdiplusToken = 0;
// gpimageライブラリの初期化処理。
BOOL gpimage_init(void)
{
// GDI+の初期化。
return GdiplusStartup(&g_gdiplusToken, &g_gdiplusStartupInput, NULL) == Ok;
}
// gpimageライブラリの終了処理。
void gpimage_exit(void)
{
// GDI+ の終了処理。
GdiplusShutdown(g_gdiplusToken);
g_gdiplusToken = 0;
}
// ファイル名(拡張子を含む)からMIMEの種類を取得する。
LPCWSTR gpimage_get_mime_from_filename(LPCWSTR filename)
{
// 拡張子を取得する。
LPWSTR dotext = PathFindExtensionW(filename);
if (!dotext || !*dotext)
return NULL;
// JPEG
if (lstrcmpiW(dotext, L".jpg") == 0 ||
lstrcmpiW(dotext, L".jpeg") == 0 ||
lstrcmpiW(dotext, L".jpe") == 0 ||
lstrcmpiW(dotext, L".jfif") == 0)
{
return L"image/jpeg";
}
// PNG
if (lstrcmpiW(dotext, L".png") == 0)
{
return L"image/png";
}
// GIF
if (lstrcmpiW(dotext, L".gif") == 0)
{
return L"image/gif";
}
// BMP
if (lstrcmpiW(dotext, L".bmp") == 0 || lstrcmpiW(dotext, L".dib") == 0)
{
return L"image/bmp";
}
// TIFF
if (lstrcmpiW(dotext, L".tif") == 0 || lstrcmpiW(dotext, L".tiff") == 0)
{
return L"image/tiff";
}
// WMF
if (lstrcmpiW(dotext, L".wmf") == 0)
{
return L"image/x-wmf";
}
// EMF
if (lstrcmpiW(dotext, L".emf") == 0)
{
return L"image/x-emf";
}
// ICO
if (lstrcmpiW(dotext, L".ico") == 0)
{
return L"image/vnd.microsoft.icon";
}
// CUR
if (lstrcmpiW(dotext, L".cur") == 0)
{
return L"application/octet-stream";
}
return NULL; // 失敗。
}
// 拡張子が有効かをチェックする。
BOOL gpimage_is_valid_extension(LPCWSTR filename)
{
return gpimage_get_mime_from_filename(filename) != NULL;
}
// ファイル名の拡張子からエンコーダーのCLSIDを取得する。
BOOL gpimage_get_encoder_from_filename(LPCWSTR filename, CLSID *pClsid)
{
*pClsid = GUID_NULL;
LPCWSTR mime = gpimage_get_mime_from_filename(filename);
if (mime == NULL)
return FALSE;
// フォーマットを指定して、エンコーダーの GUID を取得する
UINT num = 0, size = 0;
GetImageEncodersSize(&num, &size);
if (size == 0)
return FALSE;
ImageCodecInfo* pImageCodecInfo = (ImageCodecInfo*)malloc(size);
if (pImageCodecInfo == NULL)
{
return FALSE;
}
GetImageEncoders(num, size, pImageCodecInfo);
for (UINT j = 0; j < num; ++j)
{
if (lstrcmpiW(pImageCodecInfo[j].MimeType, mime) == 0)
{
free(pImageCodecInfo);
*pClsid = pImageCodecInfo[j].Clsid;
return TRUE;
}
}
free(pImageCodecInfo);
return FALSE;
}
// カーソルファイル(*.cur)をHBITMAPとして読み込む。
HBITMAP gpimage_load_cursor(LPCWSTR filename, int* width, int* height)
{
// 初期化する。
if (width)
*width = 0;
if (height)
*height = 0;
// カーソルファイルを読み込む。
HCURSOR hCursor = ::LoadCursorFromFile(filename);
if (hCursor == NULL)
{
return NULL;
}
// カーソルの情報を取得する。
ICONINFO ii;
if (!::GetIconInfo((HICON)hCursor, &ii))
{
::DestroyCursor(hCursor);
return NULL;
}
// ii.hbmColorから情報を取得する。
BITMAP bm;
GetObject(ii.hbmMask, sizeof(bm), &bm);
bm.bmHeight /= 2; // 2倍の高さを1倍に。
if (width)
*width = bm.bmWidth;
if (height)
*height = bm.bmHeight;
// ビットマップを破棄する。
DeleteObject(ii.hbmMask);
DeleteObject(ii.hbmColor);
// 互換DCを作成する。
HDC hdc = CreateCompatibleDC(NULL);
// 24BPPのビットマップオブジェクトを作成する。
BITMAPINFO bmi;
ZeroMemory(&bmi, sizeof(bmi));
bmi.bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
bmi.bmiHeader.biWidth = bm.bmWidth;
bmi.bmiHeader.biHeight = bm.bmHeight;
bmi.bmiHeader.biPlanes = 1;
bmi.bmiHeader.biBitCount = 24;
HBITMAP hbm = CreateDIBSection(hdc, &bmi, DIB_RGB_COLORS, NULL, NULL, 0);
if (hbm)
{
// ビットマップを選択する。
HGDIOBJ hbmOld = SelectObject(hdc, hbm);
// カーソルを描画する。
DrawIconEx(hdc, 0, 0, (HICON)hCursor, bm.bmWidth, bm.bmHeight, 0, GetStockBrush(WHITE_BRUSH), DI_NORMAL);
// ビットマップの選択を解除する。
SelectObject(hdc, hbmOld);
}
// DCを破棄する。
DeleteDC(hdc);
return hbm;
}
// 画像をHBITMAPとして読み込む。
HBITMAP gpimage_load(LPCWSTR filename, int* width, int* height, float* dpi)
{
// DPI値を初期化する。
if (dpi)
*dpi = 0;
// カーソルの拡張子ならばカーソルとして読み込む。
if (lstrcmpiW(PathFindExtensionW(filename), L".cur") == 0)
{
return gpimage_load_cursor(filename, width, height);
}
HBITMAP hBitmap = NULL;
// 画像を読み込む
if (Image *image = Image::FromFile(filename))
{
// 画像の回転角度を取得する
int orientation = 0;
{
PropertyItem *propertyItem;
UINT size = image->GetPropertyItemSize(PropertyTagOrientation);
if (size)
{
if (PropertyItem* propertyItem = (PropertyItem*)malloc(size))
{
image->GetPropertyItem(PropertyTagOrientation, size, propertyItem);
orientation = *(int*)propertyItem->value;
free(propertyItem);
}
}
}
// 画像を回転する
switch (orientation)
{
case 1: // 回転無し
break;
case 2: // 左右反転
image->RotateFlip(RotateNoneFlipX);
break;
case 3: // 180度回転
image->RotateFlip(Rotate180FlipNone);
break;
case 4: // 上下反転
image->RotateFlip(RotateNoneFlipY);
break;
case 5: // 左右反転 + 90度回転
image->RotateFlip(Rotate90FlipX);
break;
case 6: // 90度回転
image->RotateFlip(Rotate90FlipNone);
break;
case 7: // 左右反転 + 270度回転
image->RotateFlip(Rotate270FlipX);
break;
case 8: // 270度回転
image->RotateFlip(Rotate270FlipNone);
break;
}
//// 回転角度プロパティを削除する。
//image->RemovePropertyItem(PropertyTagOrientation);
// 画像のサイズを取得する
int cx = image->GetWidth();
int cy = image->GetHeight();
if (width)
*width = cx;
if (height)
*height = cy;
if (dpi)
{
// DPI値を取得する。
float xDpi = image->GetHorizontalResolution();
float yDpi = image->GetVerticalResolution();
*dpi = (xDpi + yDpi) / 2;
}
// HBITMAPを作成する
BITMAPINFO bmi;
ZeroMemory(&bmi, sizeof(BITMAPINFO));
bmi.bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
bmi.bmiHeader.biWidth = cx;
bmi.bmiHeader.biHeight = -cy; // 縦方向を反転する
bmi.bmiHeader.biPlanes = 1;
bmi.bmiHeader.biBitCount = 24;
hBitmap = CreateDIBSection(NULL, &bmi, DIB_RGB_COLORS, NULL, NULL, 0);
if (hBitmap)
{
// 画像をHBITMAPに描画する
if (HDC hdcMem = CreateCompatibleDC(NULL))
{
HGDIOBJ hbmOld = SelectObject(hdcMem, hBitmap);
{
RECT rc = { 0, 0, cx, cy };
FillRect(hdcMem, &rc, (HBRUSH)GetStockObject(WHITE_BRUSH));
Graphics graphics(hdcMem);
graphics.DrawImage(image, 0, 0, cx, cy);
}
SelectObject(hdcMem, hbmOld);
DeleteDC(hdcMem);
}
else
{
DeleteObject(hBitmap);
hBitmap = NULL;
}
}
delete image;
}
return hBitmap;
}
// HBITMAPを画像ファイルとして保存する。
BOOL gpimage_save(LPCWSTR filename, HBITMAP hBitmap, float dpi)
{
BOOL ret = FALSE;
CLSID clsid;
if (!gpimage_get_encoder_from_filename(filename, &clsid))
return FALSE;
// HBITMAP を GDI+ の Bitmap に変換する
if (Bitmap* pBitmap = Bitmap::FromHBITMAP(hBitmap, NULL))
{
if (dpi > 0)
{
// DPI値を設定する。
pBitmap->SetResolution(dpi, dpi);
}
// 保存する
if (pBitmap->Save(filename, &clsid, NULL) == Ok)
{
ret = TRUE;
}
// 破棄する。
delete pBitmap;
}
return ret;
}
// HBITMAPを拡大縮小する。
HBITMAP gpimage_resize(HBITMAP hbmSrc, int width, int height)
{
BITMAP bm;
if (!GetObject(hbmSrc, sizeof(bm), &bm))
return NULL;
// DCを作成する。
HDC hdcSrc = CreateCompatibleDC(NULL);
if (!hdcSrc)
return NULL;
HDC hdcDest = CreateCompatibleDC(NULL);
if (!hdcDest)
{
DeleteDC(hdcSrc);
return NULL;
}
// HBITMAPを作成する
BITMAPINFO bmi;
ZeroMemory(&bmi, sizeof(BITMAPINFO));
bmi.bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
bmi.bmiHeader.biWidth = width;
bmi.bmiHeader.biHeight = -height; // 縦方向を反転する
bmi.bmiHeader.biPlanes = 1;
bmi.bmiHeader.biBitCount = 24;
HBITMAP hbmDest = CreateDIBSection(NULL, &bmi, DIB_RGB_COLORS, NULL, NULL, 0);
if (hbmDest)
{
// ビットマップを選択。
HGDIOBJ hbmSrcOld = SelectObject(hdcSrc, hbmSrc);
HGDIOBJ hbmDestOld = SelectObject(hdcDest, hbmDest);
// なめらかに拡大縮小する。
SetStretchBltMode(hdcDest, STRETCH_HALFTONE);
StretchBlt(hdcDest, 0, 0, width, height, hdcSrc, 0, 0, bm.bmWidth, bm.bmHeight, SRCCOPY);
// ビットマップの選択を解除。
SelectObject(hdcSrc, hbmSrcOld);
SelectObject(hdcDest, hbmDestOld);
}
// DCを破棄する。
DeleteDC(hdcDest);
DeleteDC(hdcSrc);
return hbmDest;
}