]>
Commit | Line | Data |
---|---|---|
01111366 | 1 | ///////////////////////////////////////////////////////////////////////////// |
38d4b1e4 | 2 | // Name: src/common/image.cpp |
01111366 RR |
3 | // Purpose: wxImage |
4 | // Author: Robert Roebling | |
5 | // RCS-ID: $Id$ | |
6 | // Copyright: (c) Robert Roebling | |
65571936 | 7 | // Licence: wxWindows licence |
01111366 RR |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
0b4f9ee3 UU |
10 | // For compilers that support precompilation, includes "wx.h". |
11 | #include "wx/wxprec.h" | |
12 | ||
13 | #ifdef __BORLANDC__ | |
edccf428 | 14 | #pragma hdrstop |
0b4f9ee3 UU |
15 | #endif |
16 | ||
c96ea657 VS |
17 | #if wxUSE_IMAGE |
18 | ||
0bca0373 WS |
19 | #include "wx/image.h" |
20 | ||
8898456d WS |
21 | #ifndef WX_PRECOMP |
22 | #include "wx/log.h" | |
32d4c30a | 23 | #include "wx/hash.h" |
de6185e2 | 24 | #include "wx/utils.h" |
18680f86 | 25 | #include "wx/math.h" |
02761f6c | 26 | #include "wx/module.h" |
5ff14574 PC |
27 | #include "wx/palette.h" |
28 | #include "wx/intl.h" | |
198c264d | 29 | #include "wx/colour.h" |
8898456d WS |
30 | #endif |
31 | ||
3d05544e | 32 | #include "wx/wfstream.h" |
452418c4 | 33 | #include "wx/xpmdecod.h" |
cad61c3e | 34 | |
58a8ab88 JS |
35 | // For memcpy |
36 | #include <string.h> | |
37 | ||
6632225c VS |
38 | // make the code compile with either wxFile*Stream or wxFFile*Stream: |
39 | #define HAS_FILE_STREAMS (wxUSE_STREAMS && (wxUSE_FILE || wxUSE_FFILE)) | |
40 | ||
41 | #if HAS_FILE_STREAMS | |
8d6c5e4f | 42 | #if wxUSE_FFILE |
6632225c VS |
43 | typedef wxFFileInputStream wxImageFileInputStream; |
44 | typedef wxFFileOutputStream wxImageFileOutputStream; | |
8d6c5e4f VS |
45 | #elif wxUSE_FILE |
46 | typedef wxFileInputStream wxImageFileInputStream; | |
47 | typedef wxFileOutputStream wxImageFileOutputStream; | |
6632225c VS |
48 | #endif // wxUSE_FILE/wxUSE_FFILE |
49 | #endif // HAS_FILE_STREAMS | |
50 | ||
6f5d7825 | 51 | #if wxUSE_VARIANT |
55ccdb93 | 52 | IMPLEMENT_VARIANT_OBJECT_EXPORTED_SHALLOWCMP(wxImage,WXDLLEXPORT) |
6f5d7825 RR |
53 | #endif |
54 | ||
01111366 | 55 | //----------------------------------------------------------------------------- |
72a9034b FM |
56 | // global data |
57 | //----------------------------------------------------------------------------- | |
58 | ||
59 | wxList wxImage::sm_handlers; | |
60 | wxImage wxNullImage; | |
61 | ||
62 | //----------------------------------------------------------------------------- | |
63 | // wxImageRefData | |
01111366 RR |
64 | //----------------------------------------------------------------------------- |
65 | ||
66 | class wxImageRefData: public wxObjectRefData | |
67 | { | |
fd0eed64 | 68 | public: |
edccf428 | 69 | wxImageRefData(); |
487659e0 | 70 | virtual ~wxImageRefData(); |
c7abc967 | 71 | |
dbda9e86 JS |
72 | int m_width; |
73 | int m_height; | |
591d3fa2 | 74 | wxBitmapType m_type; |
dbda9e86 | 75 | unsigned char *m_data; |
487659e0 | 76 | |
dbda9e86 JS |
77 | bool m_hasMask; |
78 | unsigned char m_maskRed,m_maskGreen,m_maskBlue; | |
487659e0 VZ |
79 | |
80 | // alpha channel data, may be NULL for the formats without alpha support | |
81 | unsigned char *m_alpha; | |
82 | ||
dbda9e86 | 83 | bool m_ok; |
d2502f14 VZ |
84 | |
85 | // if true, m_data is pointer to static data and shouldn't be freed | |
f6bcfd97 | 86 | bool m_static; |
487659e0 | 87 | |
d2502f14 VZ |
88 | // same as m_static but for m_alpha |
89 | bool m_staticAlpha; | |
90 | ||
d275c7eb | 91 | #if wxUSE_PALETTE |
5e5437e0 | 92 | wxPalette m_palette; |
d275c7eb | 93 | #endif // wxUSE_PALETTE |
487659e0 | 94 | |
5e5437e0 JS |
95 | wxArrayString m_optionNames; |
96 | wxArrayString m_optionValues; | |
22f3361e | 97 | |
c0c133e1 | 98 | wxDECLARE_NO_COPY_CLASS(wxImageRefData); |
01111366 RR |
99 | }; |
100 | ||
edccf428 | 101 | wxImageRefData::wxImageRefData() |
01111366 | 102 | { |
fd0eed64 RR |
103 | m_width = 0; |
104 | m_height = 0; | |
591d3fa2 | 105 | m_type = wxBITMAP_TYPE_INVALID; |
487659e0 VZ |
106 | m_data = |
107 | m_alpha = (unsigned char *) NULL; | |
108 | ||
fd0eed64 RR |
109 | m_maskRed = 0; |
110 | m_maskGreen = 0; | |
111 | m_maskBlue = 0; | |
70cd62e9 | 112 | m_hasMask = false; |
487659e0 | 113 | |
70cd62e9 | 114 | m_ok = false; |
d2502f14 VZ |
115 | m_static = |
116 | m_staticAlpha = false; | |
01111366 RR |
117 | } |
118 | ||
edccf428 | 119 | wxImageRefData::~wxImageRefData() |
01111366 | 120 | { |
d2502f14 | 121 | if ( !m_static ) |
58c837a4 | 122 | free( m_data ); |
d2502f14 | 123 | if ( !m_staticAlpha ) |
4ea56379 | 124 | free( m_alpha ); |
01111366 RR |
125 | } |
126 | ||
fec19ea9 | 127 | |
72a9034b FM |
128 | //----------------------------------------------------------------------------- |
129 | // wxImage | |
01111366 RR |
130 | //----------------------------------------------------------------------------- |
131 | ||
5c33522f | 132 | #define M_IMGDATA static_cast<wxImageRefData*>(m_refData) |
01111366 | 133 | |
5e5437e0 | 134 | IMPLEMENT_DYNAMIC_CLASS(wxImage, wxObject) |
01111366 | 135 | |
452418c4 | 136 | bool wxImage::Create(const char* const* xpmData) |
cad61c3e JS |
137 | { |
138 | #if wxUSE_XPM | |
139 | UnRef(); | |
e9b64c5e | 140 | |
cad61c3e JS |
141 | wxXPMDecoder decoder; |
142 | (*this) = decoder.ReadData(xpmData); | |
a1b806b9 | 143 | return IsOk(); |
cad61c3e | 144 | #else |
a57ea010 | 145 | wxUnusedVar(xpmData); |
cad61c3e JS |
146 | return false; |
147 | #endif | |
148 | } | |
149 | ||
aaa97828 | 150 | bool wxImage::Create( int width, int height, bool clear ) |
01111366 | 151 | { |
aadaf841 GRG |
152 | UnRef(); |
153 | ||
fd0eed64 | 154 | m_refData = new wxImageRefData(); |
c7abc967 | 155 | |
fd0eed64 | 156 | M_IMGDATA->m_data = (unsigned char *) malloc( width*height*3 ); |
aaa97828 | 157 | if (!M_IMGDATA->m_data) |
fd0eed64 RR |
158 | { |
159 | UnRef(); | |
70cd62e9 | 160 | return false; |
fd0eed64 | 161 | } |
aaa97828 | 162 | |
aaa97828 VZ |
163 | M_IMGDATA->m_width = width; |
164 | M_IMGDATA->m_height = height; | |
70cd62e9 | 165 | M_IMGDATA->m_ok = true; |
aaa97828 | 166 | |
fc3762b5 FM |
167 | if (clear) |
168 | { | |
169 | Clear(); | |
170 | } | |
171 | ||
70cd62e9 | 172 | return true; |
01111366 RR |
173 | } |
174 | ||
aaa97828 | 175 | bool wxImage::Create( int width, int height, unsigned char* data, bool static_data ) |
f6bcfd97 BP |
176 | { |
177 | UnRef(); | |
178 | ||
9a83f860 | 179 | wxCHECK_MSG( data, false, wxT("NULL data in wxImage::Create") ); |
aaa97828 | 180 | |
f6bcfd97 BP |
181 | m_refData = new wxImageRefData(); |
182 | ||
183 | M_IMGDATA->m_data = data; | |
aaa97828 VZ |
184 | M_IMGDATA->m_width = width; |
185 | M_IMGDATA->m_height = height; | |
70cd62e9 | 186 | M_IMGDATA->m_ok = true; |
aaa97828 VZ |
187 | M_IMGDATA->m_static = static_data; |
188 | ||
70cd62e9 | 189 | return true; |
f6bcfd97 BP |
190 | } |
191 | ||
4ea56379 RR |
192 | bool wxImage::Create( int width, int height, unsigned char* data, unsigned char* alpha, bool static_data ) |
193 | { | |
194 | UnRef(); | |
195 | ||
9a83f860 | 196 | wxCHECK_MSG( data, false, wxT("NULL data in wxImage::Create") ); |
4ea56379 RR |
197 | |
198 | m_refData = new wxImageRefData(); | |
199 | ||
200 | M_IMGDATA->m_data = data; | |
201 | M_IMGDATA->m_alpha = alpha; | |
202 | M_IMGDATA->m_width = width; | |
203 | M_IMGDATA->m_height = height; | |
204 | M_IMGDATA->m_ok = true; | |
205 | M_IMGDATA->m_static = static_data; | |
a805de23 | 206 | M_IMGDATA->m_staticAlpha = static_data; |
4ea56379 RR |
207 | |
208 | return true; | |
209 | } | |
210 | ||
01111366 RR |
211 | void wxImage::Destroy() |
212 | { | |
fd0eed64 | 213 | UnRef(); |
01111366 RR |
214 | } |
215 | ||
fc3762b5 FM |
216 | void wxImage::Clear(unsigned char value) |
217 | { | |
218 | memset(M_IMGDATA->m_data, value, M_IMGDATA->m_width*M_IMGDATA->m_height*3); | |
219 | } | |
220 | ||
a0f81e9f | 221 | wxObjectRefData* wxImage::CreateRefData() const |
f6bcfd97 | 222 | { |
a0f81e9f PC |
223 | return new wxImageRefData; |
224 | } | |
051924b8 | 225 | |
a0f81e9f PC |
226 | wxObjectRefData* wxImage::CloneRefData(const wxObjectRefData* that) const |
227 | { | |
5c33522f | 228 | const wxImageRefData* refData = static_cast<const wxImageRefData*>(that); |
a0f81e9f | 229 | wxCHECK_MSG(refData->m_ok, NULL, wxT("invalid image") ); |
051924b8 | 230 | |
a0f81e9f PC |
231 | wxImageRefData* refData_new = new wxImageRefData; |
232 | refData_new->m_width = refData->m_width; | |
233 | refData_new->m_height = refData->m_height; | |
234 | refData_new->m_maskRed = refData->m_maskRed; | |
235 | refData_new->m_maskGreen = refData->m_maskGreen; | |
236 | refData_new->m_maskBlue = refData->m_maskBlue; | |
237 | refData_new->m_hasMask = refData->m_hasMask; | |
238 | refData_new->m_ok = true; | |
239 | unsigned size = unsigned(refData->m_width) * unsigned(refData->m_height); | |
240 | if (refData->m_alpha != NULL) | |
a1cd9564 | 241 | { |
a0f81e9f PC |
242 | refData_new->m_alpha = (unsigned char*)malloc(size); |
243 | memcpy(refData_new->m_alpha, refData->m_alpha, size); | |
a1cd9564 | 244 | } |
a0f81e9f PC |
245 | size *= 3; |
246 | refData_new->m_data = (unsigned char*)malloc(size); | |
247 | memcpy(refData_new->m_data, refData->m_data, size); | |
248 | #if wxUSE_PALETTE | |
249 | refData_new->m_palette = refData->m_palette; | |
250 | #endif | |
251 | refData_new->m_optionNames = refData->m_optionNames; | |
252 | refData_new->m_optionValues = refData->m_optionValues; | |
253 | return refData_new; | |
254 | } | |
051924b8 | 255 | |
496dbbe7 VZ |
256 | // returns a new image with the same dimensions, alpha, and mask as *this |
257 | // if on_its_side is true, width and height are swapped | |
258 | wxImage wxImage::MakeEmptyClone(int flags) const | |
259 | { | |
260 | wxImage image; | |
261 | ||
a1b806b9 | 262 | wxCHECK_MSG( IsOk(), image, wxS("invalid image") ); |
496dbbe7 VZ |
263 | |
264 | long height = M_IMGDATA->m_height; | |
265 | long width = M_IMGDATA->m_width; | |
266 | ||
267 | if ( flags & Clone_SwapOrientation ) | |
268 | wxSwap( width, height ); | |
269 | ||
270 | if ( !image.Create( width, height, false ) ) | |
271 | { | |
272 | wxFAIL_MSG( wxS("unable to create image") ); | |
273 | return image; | |
274 | } | |
275 | ||
276 | if ( M_IMGDATA->m_alpha ) | |
277 | { | |
278 | image.SetAlpha(); | |
279 | wxCHECK2_MSG( image.GetAlpha(), return wxImage(), | |
280 | wxS("unable to create alpha channel") ); | |
281 | } | |
282 | ||
283 | if ( M_IMGDATA->m_hasMask ) | |
284 | { | |
285 | image.SetMaskColour( M_IMGDATA->m_maskRed, | |
286 | M_IMGDATA->m_maskGreen, | |
287 | M_IMGDATA->m_maskBlue ); | |
288 | } | |
289 | ||
290 | return image; | |
291 | } | |
292 | ||
a0f81e9f PC |
293 | wxImage wxImage::Copy() const |
294 | { | |
295 | wxImage image; | |
296 | ||
a1b806b9 | 297 | wxCHECK_MSG( IsOk(), image, wxT("invalid image") ); |
a0f81e9f PC |
298 | |
299 | image.m_refData = CloneRefData(m_refData); | |
d8692f2b | 300 | |
f6bcfd97 BP |
301 | return image; |
302 | } | |
303 | ||
fd9655ad SC |
304 | wxImage wxImage::ShrinkBy( int xFactor , int yFactor ) const |
305 | { | |
306 | if( xFactor == 1 && yFactor == 1 ) | |
a0f81e9f | 307 | return *this; |
7beb59f3 | 308 | |
fd9655ad SC |
309 | wxImage image; |
310 | ||
a1b806b9 | 311 | wxCHECK_MSG( IsOk(), image, wxT("invalid image") ); |
fd9655ad SC |
312 | |
313 | // can't scale to/from 0 size | |
314 | wxCHECK_MSG( (xFactor > 0) && (yFactor > 0), image, | |
315 | wxT("invalid new image size") ); | |
316 | ||
317 | long old_height = M_IMGDATA->m_height, | |
318 | old_width = M_IMGDATA->m_width; | |
7beb59f3 | 319 | |
fd9655ad SC |
320 | wxCHECK_MSG( (old_height > 0) && (old_width > 0), image, |
321 | wxT("invalid old image size") ); | |
322 | ||
323 | long width = old_width / xFactor ; | |
324 | long height = old_height / yFactor ; | |
325 | ||
ff865c13 | 326 | image.Create( width, height, false ); |
fd9655ad SC |
327 | |
328 | char unsigned *data = image.GetData(); | |
329 | ||
330 | wxCHECK_MSG( data, image, wxT("unable to create image") ); | |
331 | ||
332 | bool hasMask = false ; | |
333 | unsigned char maskRed = 0; | |
334 | unsigned char maskGreen = 0; | |
5d4510dc | 335 | unsigned char maskBlue = 0 ; |
cd0bbd03 | 336 | |
5d4510dc | 337 | const unsigned char *source_data = M_IMGDATA->m_data; |
cd0bbd03 | 338 | unsigned char *target_data = data; |
5d4510dc | 339 | const unsigned char *source_alpha = 0 ; |
cd0bbd03 | 340 | unsigned char *target_alpha = 0 ; |
fd9655ad SC |
341 | if (M_IMGDATA->m_hasMask) |
342 | { | |
343 | hasMask = true ; | |
344 | maskRed = M_IMGDATA->m_maskRed; | |
345 | maskGreen = M_IMGDATA->m_maskGreen; | |
346 | maskBlue =M_IMGDATA->m_maskBlue ; | |
7beb59f3 | 347 | |
fd9655ad SC |
348 | image.SetMaskColour( M_IMGDATA->m_maskRed, |
349 | M_IMGDATA->m_maskGreen, | |
350 | M_IMGDATA->m_maskBlue ); | |
351 | } | |
cd0bbd03 SC |
352 | else |
353 | { | |
354 | source_alpha = M_IMGDATA->m_alpha ; | |
355 | if ( source_alpha ) | |
356 | { | |
357 | image.SetAlpha() ; | |
358 | target_alpha = image.GetAlpha() ; | |
359 | } | |
360 | } | |
7beb59f3 | 361 | |
fd9655ad SC |
362 | for (long y = 0; y < height; y++) |
363 | { | |
fd9655ad SC |
364 | for (long x = 0; x < width; x++) |
365 | { | |
366 | unsigned long avgRed = 0 ; | |
367 | unsigned long avgGreen = 0; | |
368 | unsigned long avgBlue = 0; | |
cd0bbd03 | 369 | unsigned long avgAlpha = 0 ; |
fd9655ad SC |
370 | unsigned long counter = 0 ; |
371 | // determine average | |
372 | for ( int y1 = 0 ; y1 < yFactor ; ++y1 ) | |
373 | { | |
374 | long y_offset = (y * yFactor + y1) * old_width; | |
375 | for ( int x1 = 0 ; x1 < xFactor ; ++x1 ) | |
376 | { | |
5d4510dc | 377 | const unsigned char *pixel = source_data + 3 * ( y_offset + x * xFactor + x1 ) ; |
fd9655ad SC |
378 | unsigned char red = pixel[0] ; |
379 | unsigned char green = pixel[1] ; | |
380 | unsigned char blue = pixel[2] ; | |
cd0bbd03 SC |
381 | unsigned char alpha = 255 ; |
382 | if ( source_alpha ) | |
383 | alpha = *(source_alpha + y_offset + x * xFactor + x1) ; | |
fd9655ad SC |
384 | if ( !hasMask || red != maskRed || green != maskGreen || blue != maskBlue ) |
385 | { | |
cd0bbd03 SC |
386 | if ( alpha > 0 ) |
387 | { | |
388 | avgRed += red ; | |
389 | avgGreen += green ; | |
390 | avgBlue += blue ; | |
391 | } | |
392 | avgAlpha += alpha ; | |
fd9655ad SC |
393 | counter++ ; |
394 | } | |
395 | } | |
396 | } | |
397 | if ( counter == 0 ) | |
398 | { | |
399 | *(target_data++) = M_IMGDATA->m_maskRed ; | |
400 | *(target_data++) = M_IMGDATA->m_maskGreen ; | |
401 | *(target_data++) = M_IMGDATA->m_maskBlue ; | |
402 | } | |
403 | else | |
404 | { | |
cd0bbd03 SC |
405 | if ( source_alpha ) |
406 | *(target_alpha++) = (unsigned char)(avgAlpha / counter ) ; | |
646c4aeb VZ |
407 | *(target_data++) = (unsigned char)(avgRed / counter); |
408 | *(target_data++) = (unsigned char)(avgGreen / counter); | |
409 | *(target_data++) = (unsigned char)(avgBlue / counter); | |
fd9655ad SC |
410 | } |
411 | } | |
412 | } | |
413 | ||
8180d40b | 414 | // In case this is a cursor, make sure the hotspot is scaled accordingly: |
fd9655ad SC |
415 | if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_X) ) |
416 | image.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_X, | |
417 | (GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X))/xFactor); | |
418 | if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y) ) | |
419 | image.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y, | |
420 | (GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y))/yFactor); | |
421 | ||
422 | return image; | |
423 | } | |
424 | ||
180f3c74 VZ |
425 | wxImage |
426 | wxImage::Scale( int width, int height, wxImageResizeQuality quality ) const | |
4bc67cc5 RR |
427 | { |
428 | wxImage image; | |
c7abc967 | 429 | |
a1b806b9 | 430 | wxCHECK_MSG( IsOk(), image, wxT("invalid image") ); |
c7abc967 | 431 | |
6721fc38 VZ |
432 | // can't scale to/from 0 size |
433 | wxCHECK_MSG( (width > 0) && (height > 0), image, | |
434 | wxT("invalid new image size") ); | |
435 | ||
436 | long old_height = M_IMGDATA->m_height, | |
437 | old_width = M_IMGDATA->m_width; | |
438 | wxCHECK_MSG( (old_height > 0) && (old_width > 0), image, | |
439 | wxT("invalid old image size") ); | |
c7abc967 | 440 | |
30f27c00 VZ |
441 | // If the image's new width and height are the same as the original, no |
442 | // need to waste time or CPU cycles | |
443 | if ( old_width == width && old_height == height ) | |
07aaa1a4 RR |
444 | return *this; |
445 | ||
fdb7d5bb | 446 | if (quality == wxIMAGE_QUALITY_HIGH) |
fd9655ad | 447 | { |
fdb7d5bb DS |
448 | quality = (width < old_width && height < old_height) |
449 | ? wxIMAGE_QUALITY_BOX_AVERAGE | |
450 | : wxIMAGE_QUALITY_BICUBIC; | |
451 | } | |
180f3c74 | 452 | |
fdb7d5bb DS |
453 | // Resample the image using the method as specified. |
454 | switch ( quality ) | |
455 | { | |
180f3c74 VZ |
456 | case wxIMAGE_QUALITY_NEAREST: |
457 | if ( old_width % width == 0 && old_width >= width && | |
458 | old_height % height == 0 && old_height >= height ) | |
07aaa1a4 | 459 | { |
180f3c74 | 460 | return ShrinkBy( old_width / width , old_height / height ); |
07aaa1a4 | 461 | } |
ff865c13 | 462 | |
180f3c74 VZ |
463 | image = ResampleNearest(width, height); |
464 | break; | |
fdb7d5bb DS |
465 | |
466 | case wxIMAGE_QUALITY_BILINEAR: | |
467 | image = ResampleBilinear(width, height); | |
468 | break; | |
469 | ||
470 | case wxIMAGE_QUALITY_BICUBIC: | |
471 | image = ResampleBicubic(width, height); | |
472 | break; | |
473 | ||
474 | case wxIMAGE_QUALITY_BOX_AVERAGE: | |
475 | image = ResampleBox(width, height); | |
476 | break; | |
eeca3a46 | 477 | } |
36aac195 | 478 | |
1fc1e6af | 479 | // If the original image has a mask, apply the mask to the new image |
e8a8d0dc | 480 | if (M_IMGDATA->m_hasMask) |
1fc1e6af RR |
481 | { |
482 | image.SetMaskColour( M_IMGDATA->m_maskRed, | |
483 | M_IMGDATA->m_maskGreen, | |
484 | M_IMGDATA->m_maskBlue ); | |
485 | } | |
486 | ||
8180d40b | 487 | // In case this is a cursor, make sure the hotspot is scaled accordingly: |
fd94e8aa VS |
488 | if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_X) ) |
489 | image.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_X, | |
490 | (GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X)*width)/old_width); | |
491 | if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y) ) | |
492 | image.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y, | |
493 | (GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y)*height)/old_height); | |
c7abc967 | 494 | |
4bc67cc5 RR |
495 | return image; |
496 | } | |
4698648f | 497 | |
180f3c74 VZ |
498 | wxImage wxImage::ResampleNearest(int width, int height) const |
499 | { | |
500 | wxImage image; | |
501 | image.Create( width, height, false ); | |
502 | ||
503 | unsigned char *data = image.GetData(); | |
504 | ||
505 | wxCHECK_MSG( data, image, wxT("unable to create image") ); | |
506 | ||
5d4510dc | 507 | const unsigned char *source_data = M_IMGDATA->m_data; |
180f3c74 | 508 | unsigned char *target_data = data; |
5d4510dc | 509 | const unsigned char *source_alpha = 0 ; |
180f3c74 VZ |
510 | unsigned char *target_alpha = 0 ; |
511 | ||
512 | if ( !M_IMGDATA->m_hasMask ) | |
513 | { | |
514 | source_alpha = M_IMGDATA->m_alpha ; | |
515 | if ( source_alpha ) | |
516 | { | |
517 | image.SetAlpha() ; | |
518 | target_alpha = image.GetAlpha() ; | |
519 | } | |
520 | } | |
521 | ||
522 | long old_height = M_IMGDATA->m_height, | |
523 | old_width = M_IMGDATA->m_width; | |
524 | long x_delta = (old_width<<16) / width; | |
525 | long y_delta = (old_height<<16) / height; | |
526 | ||
527 | unsigned char* dest_pixel = target_data; | |
528 | ||
529 | long y = 0; | |
530 | for ( long j = 0; j < height; j++ ) | |
531 | { | |
5d4510dc VZ |
532 | const unsigned char* src_line = &source_data[(y>>16)*old_width*3]; |
533 | const unsigned char* src_alpha_line = source_alpha ? &source_alpha[(y>>16)*old_width] : 0 ; | |
180f3c74 VZ |
534 | |
535 | long x = 0; | |
536 | for ( long i = 0; i < width; i++ ) | |
537 | { | |
5d4510dc VZ |
538 | const unsigned char* src_pixel = &src_line[(x>>16)*3]; |
539 | const unsigned char* src_alpha_pixel = source_alpha ? &src_alpha_line[(x>>16)] : 0 ; | |
180f3c74 VZ |
540 | dest_pixel[0] = src_pixel[0]; |
541 | dest_pixel[1] = src_pixel[1]; | |
542 | dest_pixel[2] = src_pixel[2]; | |
543 | dest_pixel += 3; | |
544 | if ( source_alpha ) | |
545 | *(target_alpha++) = *src_alpha_pixel ; | |
546 | x += x_delta; | |
547 | } | |
548 | ||
549 | y += y_delta; | |
550 | } | |
551 | ||
552 | return image; | |
553 | } | |
554 | ||
07aaa1a4 RR |
555 | wxImage wxImage::ResampleBox(int width, int height) const |
556 | { | |
30f27c00 VZ |
557 | // This function implements a simple pre-blur/box averaging method for |
558 | // downsampling that gives reasonably smooth results To scale the image | |
559 | // down we will need to gather a grid of pixels of the size of the scale | |
560 | // factor in each direction and then do an averaging of the pixels. | |
07aaa1a4 RR |
561 | |
562 | wxImage ret_image(width, height, false); | |
563 | ||
30f27c00 VZ |
564 | const double scale_factor_x = double(M_IMGDATA->m_width) / width; |
565 | const double scale_factor_y = double(M_IMGDATA->m_height) / height; | |
566 | ||
567 | const int scale_factor_x_2 = (int)(scale_factor_x / 2); | |
568 | const int scale_factor_y_2 = (int)(scale_factor_y / 2); | |
07aaa1a4 | 569 | |
5d4510dc VZ |
570 | const unsigned char* src_data = M_IMGDATA->m_data; |
571 | const unsigned char* src_alpha = M_IMGDATA->m_alpha; | |
07aaa1a4 RR |
572 | unsigned char* dst_data = ret_image.GetData(); |
573 | unsigned char* dst_alpha = NULL; | |
574 | ||
30f27c00 | 575 | if ( src_alpha ) |
07aaa1a4 RR |
576 | { |
577 | ret_image.SetAlpha(); | |
578 | dst_alpha = ret_image.GetAlpha(); | |
579 | } | |
580 | ||
30f27c00 | 581 | int averaged_pixels, src_pixel_index; |
07aaa1a4 RR |
582 | double sum_r, sum_g, sum_b, sum_a; |
583 | ||
30f27c00 | 584 | for ( int y = 0; y < height; y++ ) // Destination image - Y direction |
07aaa1a4 RR |
585 | { |
586 | // Source pixel in the Y direction | |
30f27c00 | 587 | int src_y = (int)(y * scale_factor_y); |
07aaa1a4 | 588 | |
30f27c00 | 589 | for ( int x = 0; x < width; x++ ) // Destination image - X direction |
07aaa1a4 RR |
590 | { |
591 | // Source pixel in the X direction | |
30f27c00 | 592 | int src_x = (int)(x * scale_factor_x); |
07aaa1a4 RR |
593 | |
594 | // Box of pixels to average | |
595 | averaged_pixels = 0; | |
596 | sum_r = sum_g = sum_b = sum_a = 0.0; | |
597 | ||
41774f1b DS |
598 | for ( int j = int(src_y - scale_factor_y/2.0 + 1), k = j; |
599 | j <= int(src_y + scale_factor_y_2) || j < k + 2; | |
30f27c00 | 600 | j++ ) |
07aaa1a4 RR |
601 | { |
602 | // We don't care to average pixels that don't exist (edges) | |
c7a284c7 | 603 | if ( j < 0 || j > M_IMGDATA->m_height - 1 ) |
07aaa1a4 RR |
604 | continue; |
605 | ||
41774f1b DS |
606 | for ( int i = int(src_x - scale_factor_x/2.0 + 1), e = i; |
607 | i <= src_x + scale_factor_x_2 || i < e + 2; | |
30f27c00 | 608 | i++ ) |
07aaa1a4 RR |
609 | { |
610 | // Don't average edge pixels | |
c7a284c7 | 611 | if ( i < 0 || i > M_IMGDATA->m_width - 1 ) |
07aaa1a4 RR |
612 | continue; |
613 | ||
614 | // Calculate the actual index in our source pixels | |
c7a284c7 | 615 | src_pixel_index = j * M_IMGDATA->m_width + i; |
07aaa1a4 RR |
616 | |
617 | sum_r += src_data[src_pixel_index * 3 + 0]; | |
618 | sum_g += src_data[src_pixel_index * 3 + 1]; | |
619 | sum_b += src_data[src_pixel_index * 3 + 2]; | |
30f27c00 | 620 | if ( src_alpha ) |
07aaa1a4 RR |
621 | sum_a += src_alpha[src_pixel_index]; |
622 | ||
623 | averaged_pixels++; | |
624 | } | |
625 | } | |
626 | ||
627 | // Calculate the average from the sum and number of averaged pixels | |
30f27c00 VZ |
628 | dst_data[0] = (unsigned char)(sum_r / averaged_pixels); |
629 | dst_data[1] = (unsigned char)(sum_g / averaged_pixels); | |
630 | dst_data[2] = (unsigned char)(sum_b / averaged_pixels); | |
07aaa1a4 | 631 | dst_data += 3; |
30f27c00 VZ |
632 | if ( src_alpha ) |
633 | *dst_alpha++ = (unsigned char)(sum_a / averaged_pixels); | |
07aaa1a4 RR |
634 | } |
635 | } | |
636 | ||
637 | return ret_image; | |
638 | } | |
639 | ||
180f3c74 VZ |
640 | wxImage wxImage::ResampleBilinear(int width, int height) const |
641 | { | |
642 | // This function implements a Bilinear algorithm for resampling. | |
643 | wxImage ret_image(width, height, false); | |
5d4510dc VZ |
644 | const unsigned char* src_data = M_IMGDATA->m_data; |
645 | const unsigned char* src_alpha = M_IMGDATA->m_alpha; | |
180f3c74 VZ |
646 | unsigned char* dst_data = ret_image.GetData(); |
647 | unsigned char* dst_alpha = NULL; | |
648 | ||
649 | if ( src_alpha ) | |
650 | { | |
651 | ret_image.SetAlpha(); | |
652 | dst_alpha = ret_image.GetAlpha(); | |
653 | } | |
654 | double HFactor = double(M_IMGDATA->m_height) / height; | |
655 | double WFactor = double(M_IMGDATA->m_width) / width; | |
656 | ||
657 | int srcpixymax = M_IMGDATA->m_height - 1; | |
658 | int srcpixxmax = M_IMGDATA->m_width - 1; | |
659 | ||
660 | double srcpixy, srcpixy1, srcpixy2, dy, dy1; | |
661 | double srcpixx, srcpixx1, srcpixx2, dx, dx1; | |
a4dac190 VZ |
662 | |
663 | // initialize alpha values to avoid g++ warnings about possibly | |
664 | // uninitialized variables | |
665 | double r1, g1, b1, a1 = 0; | |
666 | double r2, g2, b2, a2 = 0; | |
180f3c74 VZ |
667 | |
668 | for ( int dsty = 0; dsty < height; dsty++ ) | |
669 | { | |
670 | // We need to calculate the source pixel to interpolate from - Y-axis | |
671 | srcpixy = double(dsty) * HFactor; | |
672 | srcpixy1 = int(srcpixy); | |
673 | srcpixy2 = ( srcpixy1 == srcpixymax ) ? srcpixy1 : srcpixy1 + 1.0; | |
674 | dy = srcpixy - (int)srcpixy; | |
675 | dy1 = 1.0 - dy; | |
676 | ||
677 | ||
678 | for ( int dstx = 0; dstx < width; dstx++ ) | |
679 | { | |
680 | // X-axis of pixel to interpolate from | |
681 | srcpixx = double(dstx) * WFactor; | |
682 | srcpixx1 = int(srcpixx); | |
683 | srcpixx2 = ( srcpixx1 == srcpixxmax ) ? srcpixx1 : srcpixx1 + 1.0; | |
684 | dx = srcpixx - (int)srcpixx; | |
685 | dx1 = 1.0 - dx; | |
686 | ||
687 | int x_offset1 = srcpixx1 < 0.0 ? 0 : srcpixx1 > srcpixxmax ? srcpixxmax : (int)srcpixx1; | |
688 | int x_offset2 = srcpixx2 < 0.0 ? 0 : srcpixx2 > srcpixxmax ? srcpixxmax : (int)srcpixx2; | |
689 | int y_offset1 = srcpixy1 < 0.0 ? 0 : srcpixy1 > srcpixymax ? srcpixymax : (int)srcpixy1; | |
690 | int y_offset2 = srcpixy2 < 0.0 ? 0 : srcpixy2 > srcpixymax ? srcpixymax : (int)srcpixy2; | |
691 | ||
692 | int src_pixel_index00 = y_offset1 * M_IMGDATA->m_width + x_offset1; | |
693 | int src_pixel_index01 = y_offset1 * M_IMGDATA->m_width + x_offset2; | |
694 | int src_pixel_index10 = y_offset2 * M_IMGDATA->m_width + x_offset1; | |
695 | int src_pixel_index11 = y_offset2 * M_IMGDATA->m_width + x_offset2; | |
696 | ||
5d4510dc | 697 | // first line |
180f3c74 VZ |
698 | r1 = src_data[src_pixel_index00 * 3 + 0] * dx1 + src_data[src_pixel_index01 * 3 + 0] * dx; |
699 | g1 = src_data[src_pixel_index00 * 3 + 1] * dx1 + src_data[src_pixel_index01 * 3 + 1] * dx; | |
700 | b1 = src_data[src_pixel_index00 * 3 + 2] * dx1 + src_data[src_pixel_index01 * 3 + 2] * dx; | |
701 | if ( src_alpha ) | |
702 | a1 = src_alpha[src_pixel_index00] * dx1 + src_alpha[src_pixel_index01] * dx; | |
703 | ||
5d4510dc | 704 | // second line |
180f3c74 VZ |
705 | r2 = src_data[src_pixel_index10 * 3 + 0] * dx1 + src_data[src_pixel_index11 * 3 + 0] * dx; |
706 | g2 = src_data[src_pixel_index10 * 3 + 1] * dx1 + src_data[src_pixel_index11 * 3 + 1] * dx; | |
707 | b2 = src_data[src_pixel_index10 * 3 + 2] * dx1 + src_data[src_pixel_index11 * 3 + 2] * dx; | |
708 | if ( src_alpha ) | |
709 | a2 = src_alpha[src_pixel_index10] * dx1 + src_alpha[src_pixel_index11] * dx; | |
710 | ||
5d4510dc | 711 | // result lines |
180f3c74 | 712 | |
945c909d VZ |
713 | dst_data[0] = static_cast<unsigned char>(r1 * dy1 + r2 * dy); |
714 | dst_data[1] = static_cast<unsigned char>(g1 * dy1 + g2 * dy); | |
715 | dst_data[2] = static_cast<unsigned char>(b1 * dy1 + b2 * dy); | |
180f3c74 VZ |
716 | dst_data += 3; |
717 | ||
718 | if ( src_alpha ) | |
945c909d | 719 | *dst_alpha++ = static_cast<unsigned char>(a1 * dy1 + a2 * dy); |
180f3c74 VZ |
720 | } |
721 | } | |
722 | ||
723 | return ret_image; | |
724 | } | |
725 | ||
30f27c00 VZ |
726 | // The following two local functions are for the B-spline weighting of the |
727 | // bicubic sampling algorithm | |
07aaa1a4 RR |
728 | static inline double spline_cube(double value) |
729 | { | |
730 | return value <= 0.0 ? 0.0 : value * value * value; | |
731 | } | |
732 | ||
733 | static inline double spline_weight(double value) | |
734 | { | |
30f27c00 VZ |
735 | return (spline_cube(value + 2) - |
736 | 4 * spline_cube(value + 1) + | |
737 | 6 * spline_cube(value) - | |
738 | 4 * spline_cube(value - 1)) / 6; | |
07aaa1a4 RR |
739 | } |
740 | ||
741 | // This is the bicubic resampling algorithm | |
742 | wxImage wxImage::ResampleBicubic(int width, int height) const | |
743 | { | |
30f27c00 VZ |
744 | // This function implements a Bicubic B-Spline algorithm for resampling. |
745 | // This method is certainly a little slower than wxImage's default pixel | |
746 | // replication method, however for most reasonably sized images not being | |
747 | // upsampled too much on a fairly average CPU this difference is hardly | |
748 | // noticeable and the results are far more pleasing to look at. | |
07aaa1a4 | 749 | // |
30f27c00 VZ |
750 | // This particular bicubic algorithm does pixel weighting according to a |
751 | // B-Spline that basically implements a Gaussian bell-like weighting | |
752 | // kernel. Because of this method the results may appear a bit blurry when | |
753 | // upsampling by large factors. This is basically because a slight | |
754 | // gaussian blur is being performed to get the smooth look of the upsampled | |
755 | // image. | |
07aaa1a4 RR |
756 | |
757 | // Edge pixels: 3-4 possible solutions | |
30f27c00 VZ |
758 | // - (Wrap/tile) Wrap the image, take the color value from the opposite |
759 | // side of the image. | |
760 | // - (Mirror) Duplicate edge pixels, so that pixel at coordinate (2, n), | |
761 | // where n is nonpositive, will have the value of (2, 1). | |
762 | // - (Ignore) Simply ignore the edge pixels and apply the kernel only to | |
763 | // pixels which do have all neighbours. | |
764 | // - (Clamp) Choose the nearest pixel along the border. This takes the | |
765 | // border pixels and extends them out to infinity. | |
07aaa1a4 | 766 | // |
30f27c00 VZ |
767 | // NOTE: below the y_offset and x_offset variables are being set for edge |
768 | // pixels using the "Mirror" method mentioned above | |
07aaa1a4 RR |
769 | |
770 | wxImage ret_image; | |
771 | ||
772 | ret_image.Create(width, height, false); | |
773 | ||
5d4510dc VZ |
774 | const unsigned char* src_data = M_IMGDATA->m_data; |
775 | const unsigned char* src_alpha = M_IMGDATA->m_alpha; | |
07aaa1a4 RR |
776 | unsigned char* dst_data = ret_image.GetData(); |
777 | unsigned char* dst_alpha = NULL; | |
778 | ||
30f27c00 | 779 | if ( src_alpha ) |
07aaa1a4 RR |
780 | { |
781 | ret_image.SetAlpha(); | |
782 | dst_alpha = ret_image.GetAlpha(); | |
783 | } | |
784 | ||
30f27c00 | 785 | for ( int dsty = 0; dsty < height; dsty++ ) |
07aaa1a4 RR |
786 | { |
787 | // We need to calculate the source pixel to interpolate from - Y-axis | |
993f0845 | 788 | double srcpixy = double(dsty * M_IMGDATA->m_height) / height; |
30f27c00 | 789 | double dy = srcpixy - (int)srcpixy; |
07aaa1a4 | 790 | |
30f27c00 | 791 | for ( int dstx = 0; dstx < width; dstx++ ) |
07aaa1a4 RR |
792 | { |
793 | // X-axis of pixel to interpolate from | |
993f0845 | 794 | double srcpixx = double(dstx * M_IMGDATA->m_width) / width; |
30f27c00 | 795 | double dx = srcpixx - (int)srcpixx; |
07aaa1a4 | 796 | |
30f27c00 VZ |
797 | // Sums for each color channel |
798 | double sum_r = 0, sum_g = 0, sum_b = 0, sum_a = 0; | |
07aaa1a4 RR |
799 | |
800 | // Here we actually determine the RGBA values for the destination pixel | |
30f27c00 | 801 | for ( int k = -1; k <= 2; k++ ) |
07aaa1a4 RR |
802 | { |
803 | // Y offset | |
30f27c00 VZ |
804 | int y_offset = srcpixy + k < 0.0 |
805 | ? 0 | |
806 | : srcpixy + k >= M_IMGDATA->m_height | |
807 | ? M_IMGDATA->m_height - 1 | |
808 | : (int)(srcpixy + k); | |
07aaa1a4 RR |
809 | |
810 | // Loop across the X axis | |
30f27c00 | 811 | for ( int i = -1; i <= 2; i++ ) |
07aaa1a4 RR |
812 | { |
813 | // X offset | |
30f27c00 VZ |
814 | int x_offset = srcpixx + i < 0.0 |
815 | ? 0 | |
816 | : srcpixx + i >= M_IMGDATA->m_width | |
817 | ? M_IMGDATA->m_width - 1 | |
818 | : (int)(srcpixx + i); | |
819 | ||
820 | // Calculate the exact position where the source data | |
821 | // should be pulled from based on the x_offset and y_offset | |
822 | int src_pixel_index = y_offset*M_IMGDATA->m_width + x_offset; | |
823 | ||
824 | // Calculate the weight for the specified pixel according | |
825 | // to the bicubic b-spline kernel we're using for | |
826 | // interpolation | |
827 | double | |
828 | pixel_weight = spline_weight(i - dx)*spline_weight(k - dy); | |
829 | ||
830 | // Create a sum of all velues for each color channel | |
831 | // adjusted for the pixel's calculated weight | |
832 | sum_r += src_data[src_pixel_index * 3 + 0] * pixel_weight; | |
833 | sum_g += src_data[src_pixel_index * 3 + 1] * pixel_weight; | |
834 | sum_b += src_data[src_pixel_index * 3 + 2] * pixel_weight; | |
835 | if ( src_alpha ) | |
836 | sum_a += src_alpha[src_pixel_index] * pixel_weight; | |
07aaa1a4 RR |
837 | } |
838 | } | |
839 | ||
30f27c00 VZ |
840 | // Put the data into the destination image. The summed values are |
841 | // of double data type and are rounded here for accuracy | |
842 | dst_data[0] = (unsigned char)(sum_r + 0.5); | |
843 | dst_data[1] = (unsigned char)(sum_g + 0.5); | |
844 | dst_data[2] = (unsigned char)(sum_b + 0.5); | |
07aaa1a4 RR |
845 | dst_data += 3; |
846 | ||
30f27c00 VZ |
847 | if ( src_alpha ) |
848 | *dst_alpha++ = (unsigned char)sum_a; | |
07aaa1a4 RR |
849 | } |
850 | } | |
851 | ||
852 | return ret_image; | |
853 | } | |
854 | ||
855 | // Blur in the horizontal direction | |
24904055 | 856 | wxImage wxImage::BlurHorizontal(int blurRadius) const |
07aaa1a4 | 857 | { |
496dbbe7 | 858 | wxImage ret_image(MakeEmptyClone()); |
07aaa1a4 | 859 | |
a1b806b9 | 860 | wxCHECK( ret_image.IsOk(), ret_image ); |
07aaa1a4 | 861 | |
496dbbe7 VZ |
862 | const unsigned char* src_data = M_IMGDATA->m_data; |
863 | unsigned char* dst_data = ret_image.GetData(); | |
864 | const unsigned char* src_alpha = M_IMGDATA->m_alpha; | |
865 | unsigned char* dst_alpha = ret_image.GetAlpha(); | |
07aaa1a4 | 866 | |
30f27c00 VZ |
867 | // number of pixels we average over |
868 | const int blurArea = blurRadius*2 + 1; | |
07aaa1a4 | 869 | |
30f27c00 VZ |
870 | // Horizontal blurring algorithm - average all pixels in the specified blur |
871 | // radius in the X or horizontal direction | |
872 | for ( int y = 0; y < M_IMGDATA->m_height; y++ ) | |
07aaa1a4 | 873 | { |
30f27c00 VZ |
874 | // Variables used in the blurring algorithm |
875 | long sum_r = 0, | |
876 | sum_g = 0, | |
877 | sum_b = 0, | |
878 | sum_a = 0; | |
879 | ||
880 | long pixel_idx; | |
881 | const unsigned char *src; | |
882 | unsigned char *dst; | |
883 | ||
884 | // Calculate the average of all pixels in the blur radius for the first | |
885 | // pixel of the row | |
886 | for ( int kernel_x = -blurRadius; kernel_x <= blurRadius; kernel_x++ ) | |
07aaa1a4 | 887 | { |
30f27c00 VZ |
888 | // To deal with the pixels at the start of a row so it's not |
889 | // grabbing GOK values from memory at negative indices of the | |
890 | // image's data or grabbing from the previous row | |
891 | if ( kernel_x < 0 ) | |
07aaa1a4 RR |
892 | pixel_idx = y * M_IMGDATA->m_width; |
893 | else | |
894 | pixel_idx = kernel_x + y * M_IMGDATA->m_width; | |
895 | ||
30f27c00 VZ |
896 | src = src_data + pixel_idx*3; |
897 | sum_r += src[0]; | |
898 | sum_g += src[1]; | |
899 | sum_b += src[2]; | |
900 | if ( src_alpha ) | |
901 | sum_a += src_alpha[pixel_idx]; | |
07aaa1a4 | 902 | } |
30f27c00 VZ |
903 | |
904 | dst = dst_data + y * M_IMGDATA->m_width*3; | |
88835522 WS |
905 | dst[0] = (unsigned char)(sum_r / blurArea); |
906 | dst[1] = (unsigned char)(sum_g / blurArea); | |
907 | dst[2] = (unsigned char)(sum_b / blurArea); | |
30f27c00 | 908 | if ( src_alpha ) |
88835522 | 909 | dst_alpha[y * M_IMGDATA->m_width] = (unsigned char)(sum_a / blurArea); |
30f27c00 VZ |
910 | |
911 | // Now average the values of the rest of the pixels by just moving the | |
912 | // blur radius box along the row | |
913 | for ( int x = 1; x < M_IMGDATA->m_width; x++ ) | |
07aaa1a4 | 914 | { |
30f27c00 VZ |
915 | // Take care of edge pixels on the left edge by essentially |
916 | // duplicating the edge pixel | |
917 | if ( x - blurRadius - 1 < 0 ) | |
07aaa1a4 RR |
918 | pixel_idx = y * M_IMGDATA->m_width; |
919 | else | |
920 | pixel_idx = (x - blurRadius - 1) + y * M_IMGDATA->m_width; | |
921 | ||
30f27c00 VZ |
922 | // Subtract the value of the pixel at the left side of the blur |
923 | // radius box | |
924 | src = src_data + pixel_idx*3; | |
925 | sum_r -= src[0]; | |
926 | sum_g -= src[1]; | |
927 | sum_b -= src[2]; | |
928 | if ( src_alpha ) | |
929 | sum_a -= src_alpha[pixel_idx]; | |
07aaa1a4 RR |
930 | |
931 | // Take care of edge pixels on the right edge | |
30f27c00 | 932 | if ( x + blurRadius > M_IMGDATA->m_width - 1 ) |
07aaa1a4 RR |
933 | pixel_idx = M_IMGDATA->m_width - 1 + y * M_IMGDATA->m_width; |
934 | else | |
935 | pixel_idx = x + blurRadius + y * M_IMGDATA->m_width; | |
936 | ||
937 | // Add the value of the pixel being added to the end of our box | |
30f27c00 VZ |
938 | src = src_data + pixel_idx*3; |
939 | sum_r += src[0]; | |
940 | sum_g += src[1]; | |
941 | sum_b += src[2]; | |
942 | if ( src_alpha ) | |
943 | sum_a += src_alpha[pixel_idx]; | |
07aaa1a4 RR |
944 | |
945 | // Save off the averaged data | |
e8a8d0dc | 946 | dst = dst_data + x*3 + y*M_IMGDATA->m_width*3; |
88835522 WS |
947 | dst[0] = (unsigned char)(sum_r / blurArea); |
948 | dst[1] = (unsigned char)(sum_g / blurArea); | |
949 | dst[2] = (unsigned char)(sum_b / blurArea); | |
30f27c00 | 950 | if ( src_alpha ) |
88835522 | 951 | dst_alpha[x + y * M_IMGDATA->m_width] = (unsigned char)(sum_a / blurArea); |
07aaa1a4 RR |
952 | } |
953 | } | |
954 | ||
955 | return ret_image; | |
956 | } | |
957 | ||
958 | // Blur in the vertical direction | |
24904055 | 959 | wxImage wxImage::BlurVertical(int blurRadius) const |
07aaa1a4 | 960 | { |
496dbbe7 | 961 | wxImage ret_image(MakeEmptyClone()); |
07aaa1a4 | 962 | |
a1b806b9 | 963 | wxCHECK( ret_image.IsOk(), ret_image ); |
07aaa1a4 | 964 | |
496dbbe7 VZ |
965 | const unsigned char* src_data = M_IMGDATA->m_data; |
966 | unsigned char* dst_data = ret_image.GetData(); | |
967 | const unsigned char* src_alpha = M_IMGDATA->m_alpha; | |
968 | unsigned char* dst_alpha = ret_image.GetAlpha(); | |
07aaa1a4 | 969 | |
30f27c00 VZ |
970 | // number of pixels we average over |
971 | const int blurArea = blurRadius*2 + 1; | |
07aaa1a4 | 972 | |
30f27c00 VZ |
973 | // Vertical blurring algorithm - same as horizontal but switched the |
974 | // opposite direction | |
975 | for ( int x = 0; x < M_IMGDATA->m_width; x++ ) | |
07aaa1a4 | 976 | { |
30f27c00 VZ |
977 | // Variables used in the blurring algorithm |
978 | long sum_r = 0, | |
979 | sum_g = 0, | |
980 | sum_b = 0, | |
981 | sum_a = 0; | |
982 | ||
983 | long pixel_idx; | |
984 | const unsigned char *src; | |
985 | unsigned char *dst; | |
986 | ||
987 | // Calculate the average of all pixels in our blur radius box for the | |
988 | // first pixel of the column | |
989 | for ( int kernel_y = -blurRadius; kernel_y <= blurRadius; kernel_y++ ) | |
07aaa1a4 | 990 | { |
30f27c00 VZ |
991 | // To deal with the pixels at the start of a column so it's not |
992 | // grabbing GOK values from memory at negative indices of the | |
993 | // image's data or grabbing from the previous column | |
994 | if ( kernel_y < 0 ) | |
07aaa1a4 RR |
995 | pixel_idx = x; |
996 | else | |
997 | pixel_idx = x + kernel_y * M_IMGDATA->m_width; | |
998 | ||
30f27c00 VZ |
999 | src = src_data + pixel_idx*3; |
1000 | sum_r += src[0]; | |
1001 | sum_g += src[1]; | |
1002 | sum_b += src[2]; | |
1003 | if ( src_alpha ) | |
1004 | sum_a += src_alpha[pixel_idx]; | |
07aaa1a4 | 1005 | } |
30f27c00 VZ |
1006 | |
1007 | dst = dst_data + x*3; | |
88835522 WS |
1008 | dst[0] = (unsigned char)(sum_r / blurArea); |
1009 | dst[1] = (unsigned char)(sum_g / blurArea); | |
1010 | dst[2] = (unsigned char)(sum_b / blurArea); | |
30f27c00 | 1011 | if ( src_alpha ) |
88835522 | 1012 | dst_alpha[x] = (unsigned char)(sum_a / blurArea); |
30f27c00 VZ |
1013 | |
1014 | // Now average the values of the rest of the pixels by just moving the | |
1015 | // box along the column from top to bottom | |
1016 | for ( int y = 1; y < M_IMGDATA->m_height; y++ ) | |
07aaa1a4 | 1017 | { |
30f27c00 VZ |
1018 | // Take care of pixels that would be beyond the top edge by |
1019 | // duplicating the top edge pixel for the column | |
1020 | if ( y - blurRadius - 1 < 0 ) | |
07aaa1a4 RR |
1021 | pixel_idx = x; |
1022 | else | |
1023 | pixel_idx = x + (y - blurRadius - 1) * M_IMGDATA->m_width; | |
1024 | ||
1025 | // Subtract the value of the pixel at the top of our blur radius box | |
30f27c00 VZ |
1026 | src = src_data + pixel_idx*3; |
1027 | sum_r -= src[0]; | |
1028 | sum_g -= src[1]; | |
1029 | sum_b -= src[2]; | |
1030 | if ( src_alpha ) | |
1031 | sum_a -= src_alpha[pixel_idx]; | |
1032 | ||
1033 | // Take care of the pixels that would be beyond the bottom edge of | |
1034 | // the image similar to the top edge | |
1035 | if ( y + blurRadius > M_IMGDATA->m_height - 1 ) | |
07aaa1a4 RR |
1036 | pixel_idx = x + (M_IMGDATA->m_height - 1) * M_IMGDATA->m_width; |
1037 | else | |
1038 | pixel_idx = x + (blurRadius + y) * M_IMGDATA->m_width; | |
1039 | ||
1040 | // Add the value of the pixel being added to the end of our box | |
30f27c00 VZ |
1041 | src = src_data + pixel_idx*3; |
1042 | sum_r += src[0]; | |
1043 | sum_g += src[1]; | |
1044 | sum_b += src[2]; | |
1045 | if ( src_alpha ) | |
1046 | sum_a += src_alpha[pixel_idx]; | |
07aaa1a4 RR |
1047 | |
1048 | // Save off the averaged data | |
30f27c00 | 1049 | dst = dst_data + (x + y * M_IMGDATA->m_width) * 3; |
88835522 WS |
1050 | dst[0] = (unsigned char)(sum_r / blurArea); |
1051 | dst[1] = (unsigned char)(sum_g / blurArea); | |
1052 | dst[2] = (unsigned char)(sum_b / blurArea); | |
30f27c00 | 1053 | if ( src_alpha ) |
88835522 | 1054 | dst_alpha[x + y * M_IMGDATA->m_width] = (unsigned char)(sum_a / blurArea); |
07aaa1a4 RR |
1055 | } |
1056 | } | |
1057 | ||
1058 | return ret_image; | |
1059 | } | |
1060 | ||
1061 | // The new blur function | |
24904055 | 1062 | wxImage wxImage::Blur(int blurRadius) const |
07aaa1a4 RR |
1063 | { |
1064 | wxImage ret_image; | |
1065 | ret_image.Create(M_IMGDATA->m_width, M_IMGDATA->m_height, false); | |
1066 | ||
1067 | // Blur the image in each direction | |
1068 | ret_image = BlurHorizontal(blurRadius); | |
1069 | ret_image = ret_image.BlurVertical(blurRadius); | |
1070 | ||
1071 | return ret_image; | |
1072 | } | |
1073 | ||
f6bcfd97 BP |
1074 | wxImage wxImage::Rotate90( bool clockwise ) const |
1075 | { | |
496dbbe7 | 1076 | wxImage image(MakeEmptyClone(Clone_SwapOrientation)); |
f6bcfd97 | 1077 | |
a1b806b9 | 1078 | wxCHECK( image.IsOk(), image ); |
000c2be4 | 1079 | |
f6bcfd97 BP |
1080 | long height = M_IMGDATA->m_height; |
1081 | long width = M_IMGDATA->m_width; | |
1082 | ||
000c2be4 VZ |
1083 | if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_X) ) |
1084 | { | |
1085 | int hot_x = GetOptionInt( wxIMAGE_OPTION_CUR_HOTSPOT_X ); | |
1086 | image.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y, | |
1087 | clockwise ? hot_x : width - 1 - hot_x); | |
1088 | } | |
1089 | ||
1090 | if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y) ) | |
1091 | { | |
1092 | int hot_y = GetOptionInt( wxIMAGE_OPTION_CUR_HOTSPOT_Y ); | |
1093 | image.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_X, | |
1094 | clockwise ? height - 1 - hot_y : hot_y); | |
1095 | } | |
1096 | ||
496dbbe7 | 1097 | unsigned char *data = image.GetData(); |
496dbbe7 | 1098 | unsigned char *target_data; |
496dbbe7 | 1099 | |
4776c0b7 VZ |
1100 | // we rotate the image in 21-pixel (63-byte) wide strips |
1101 | // to make better use of cpu cache - memory transfers | |
1102 | // (note: while much better than single-pixel "strips", | |
be0d0fed | 1103 | // our vertical strips will still generally straddle 64-byte cachelines) |
4776c0b7 | 1104 | for (long ii = 0; ii < width; ) |
f6bcfd97 | 1105 | { |
4776c0b7 VZ |
1106 | long next_ii = wxMin(ii + 21, width); |
1107 | ||
1108 | for (long j = 0; j < height; j++) | |
f6bcfd97 | 1109 | { |
4776c0b7 VZ |
1110 | const unsigned char *source_data |
1111 | = M_IMGDATA->m_data + (j*width + ii)*3; | |
1112 | ||
1113 | for (long i = ii; i < next_ii; i++) | |
921c65ed | 1114 | { |
4776c0b7 VZ |
1115 | if ( clockwise ) |
1116 | { | |
be0d0fed | 1117 | target_data = data + ((i + 1)*height - j - 1)*3; |
4776c0b7 VZ |
1118 | } |
1119 | else | |
1120 | { | |
be0d0fed | 1121 | target_data = data + (height*(width - 1 - i) + j)*3; |
4776c0b7 VZ |
1122 | } |
1123 | memcpy( target_data, source_data, 3 ); | |
1124 | source_data += 3; | |
921c65ed | 1125 | } |
89a1395e | 1126 | } |
4776c0b7 VZ |
1127 | |
1128 | ii = next_ii; | |
89a1395e VZ |
1129 | } |
1130 | ||
1131 | const unsigned char *source_alpha = M_IMGDATA->m_alpha; | |
1132 | ||
1133 | if ( source_alpha ) | |
1134 | { | |
1135 | unsigned char *alpha_data = image.GetAlpha(); | |
1136 | unsigned char *target_alpha = 0 ; | |
921c65ed | 1137 | |
be0d0fed | 1138 | for (long ii = 0; ii < width; ) |
89a1395e | 1139 | { |
be0d0fed VZ |
1140 | long next_ii = wxMin(ii + 64, width); |
1141 | ||
1142 | for (long j = 0; j < height; j++) | |
921c65ed | 1143 | { |
be0d0fed VZ |
1144 | source_alpha = M_IMGDATA->m_alpha + j*width + ii; |
1145 | ||
1146 | for (long i = ii; i < next_ii; i++) | |
89a1395e | 1147 | { |
be0d0fed VZ |
1148 | if ( clockwise ) |
1149 | { | |
1150 | target_alpha = alpha_data + (i+1)*height - j - 1; | |
1151 | } | |
1152 | else | |
1153 | { | |
1154 | target_alpha = alpha_data + height*(width - i - 1) + j; | |
1155 | } | |
89a1395e | 1156 | |
be0d0fed VZ |
1157 | *target_alpha = *source_alpha++; |
1158 | } | |
921c65ed | 1159 | } |
be0d0fed VZ |
1160 | |
1161 | ii = next_ii; | |
f6bcfd97 BP |
1162 | } |
1163 | } | |
1164 | ||
1165 | return image; | |
1166 | } | |
1167 | ||
8524dec3 VZ |
1168 | wxImage wxImage::Rotate180() const |
1169 | { | |
0fe7cd1d | 1170 | wxImage image(MakeEmptyClone()); |
8524dec3 | 1171 | |
a1b806b9 | 1172 | wxCHECK( image.IsOk(), image ); |
8524dec3 VZ |
1173 | |
1174 | long height = M_IMGDATA->m_height; | |
1175 | long width = M_IMGDATA->m_width; | |
1176 | ||
0547ad09 VZ |
1177 | if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_X) ) |
1178 | { | |
1179 | image.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_X, | |
1180 | width - 1 - GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X)); | |
1181 | } | |
1182 | ||
1183 | if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y) ) | |
1184 | { | |
1185 | image.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y, | |
1186 | height - 1 - GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y)); | |
1187 | } | |
1188 | ||
496dbbe7 VZ |
1189 | unsigned char *data = image.GetData(); |
1190 | unsigned char *alpha = image.GetAlpha(); | |
8524dec3 VZ |
1191 | const unsigned char *source_data = M_IMGDATA->m_data; |
1192 | unsigned char *target_data = data + width * height * 3; | |
1193 | ||
1194 | for (long j = 0; j < height; j++) | |
1195 | { | |
1196 | for (long i = 0; i < width; i++) | |
1197 | { | |
1198 | target_data -= 3; | |
1199 | memcpy( target_data, source_data, 3 ); | |
1200 | source_data += 3; | |
1201 | } | |
1202 | } | |
1203 | ||
1204 | if ( alpha ) | |
1205 | { | |
1206 | const unsigned char *src_alpha = M_IMGDATA->m_alpha; | |
1207 | unsigned char *dest_alpha = alpha + width * height; | |
1208 | ||
1209 | for (long j = 0; j < height; ++j) | |
1210 | { | |
1211 | for (long i = 0; i < width; ++i) | |
1212 | { | |
1213 | *(--dest_alpha) = *(src_alpha++); | |
1214 | } | |
1215 | } | |
1216 | } | |
1217 | ||
1218 | return image; | |
1219 | } | |
1220 | ||
f6bcfd97 BP |
1221 | wxImage wxImage::Mirror( bool horizontally ) const |
1222 | { | |
5d4510dc | 1223 | wxImage image(MakeEmptyClone()); |
f6bcfd97 | 1224 | |
a1b806b9 | 1225 | wxCHECK( image.IsOk(), image ); |
f6bcfd97 BP |
1226 | |
1227 | long height = M_IMGDATA->m_height; | |
1228 | long width = M_IMGDATA->m_width; | |
1229 | ||
496dbbe7 VZ |
1230 | unsigned char *data = image.GetData(); |
1231 | unsigned char *alpha = image.GetAlpha(); | |
1232 | const unsigned char *source_data = M_IMGDATA->m_data; | |
487659e0 | 1233 | unsigned char *target_data; |
f6bcfd97 BP |
1234 | |
1235 | if (horizontally) | |
1236 | { | |
1237 | for (long j = 0; j < height; j++) | |
1238 | { | |
1239 | data += width*3; | |
1240 | target_data = data-3; | |
1241 | for (long i = 0; i < width; i++) | |
1242 | { | |
1243 | memcpy( target_data, source_data, 3 ); | |
1244 | source_data += 3; | |
1245 | target_data -= 3; | |
1246 | } | |
1247 | } | |
051924b8 VZ |
1248 | |
1249 | if (alpha != NULL) | |
1250 | { | |
1251 | // src_alpha starts at the first pixel and increases by 1 after each step | |
1252 | // (a step here is the copy of the alpha value of one pixel) | |
1253 | const unsigned char *src_alpha = M_IMGDATA->m_alpha; | |
1254 | // dest_alpha starts just beyond the first line, decreases before each step, | |
1255 | // and after each line is finished, increases by 2 widths (skipping the line | |
1256 | // just copied and the line that will be copied next) | |
1257 | unsigned char *dest_alpha = alpha + width; | |
1258 | ||
1259 | for (long jj = 0; jj < height; ++jj) | |
1260 | { | |
1261 | for (long i = 0; i < width; ++i) { | |
1262 | *(--dest_alpha) = *(src_alpha++); // copy one pixel | |
1263 | } | |
1264 | dest_alpha += 2 * width; // advance beyond the end of the next line | |
1265 | } | |
1266 | } | |
f6bcfd97 BP |
1267 | } |
1268 | else | |
1269 | { | |
1270 | for (long i = 0; i < height; i++) | |
1271 | { | |
1272 | target_data = data + 3*width*(height-1-i); | |
3ca6a5f0 | 1273 | memcpy( target_data, source_data, (size_t)3*width ); |
f6bcfd97 BP |
1274 | source_data += 3*width; |
1275 | } | |
051924b8 | 1276 | |
5d4510dc | 1277 | if ( alpha ) |
051924b8 VZ |
1278 | { |
1279 | // src_alpha starts at the first pixel and increases by 1 width after each step | |
1280 | // (a step here is the copy of the alpha channel of an entire line) | |
1281 | const unsigned char *src_alpha = M_IMGDATA->m_alpha; | |
1282 | // dest_alpha starts just beyond the last line (beyond the whole image) | |
1283 | // and decreases by 1 width before each step | |
1284 | unsigned char *dest_alpha = alpha + width * height; | |
1285 | ||
1286 | for (long jj = 0; jj < height; ++jj) | |
1287 | { | |
1288 | dest_alpha -= width; | |
1289 | memcpy( dest_alpha, src_alpha, (size_t)width ); | |
1290 | src_alpha += width; | |
1291 | } | |
1292 | } | |
f6bcfd97 BP |
1293 | } |
1294 | ||
1295 | return image; | |
1296 | } | |
1297 | ||
7b2471a0 SB |
1298 | wxImage wxImage::GetSubImage( const wxRect &rect ) const |
1299 | { | |
1300 | wxImage image; | |
1301 | ||
a1b806b9 | 1302 | wxCHECK_MSG( IsOk(), image, wxT("invalid image") ); |
7b2471a0 | 1303 | |
051924b8 VZ |
1304 | wxCHECK_MSG( (rect.GetLeft()>=0) && (rect.GetTop()>=0) && |
1305 | (rect.GetRight()<=GetWidth()) && (rect.GetBottom()<=GetHeight()), | |
58c837a4 | 1306 | image, wxT("invalid subimage size") ); |
7b2471a0 | 1307 | |
051924b8 VZ |
1308 | const int subwidth = rect.GetWidth(); |
1309 | const int subheight = rect.GetHeight(); | |
7b2471a0 | 1310 | |
ff865c13 | 1311 | image.Create( subwidth, subheight, false ); |
7b2471a0 | 1312 | |
051924b8 VZ |
1313 | const unsigned char *src_data = GetData(); |
1314 | const unsigned char *src_alpha = M_IMGDATA->m_alpha; | |
1315 | unsigned char *subdata = image.GetData(); | |
1316 | unsigned char *subalpha = NULL; | |
7b2471a0 | 1317 | |
223d09f6 | 1318 | wxCHECK_MSG( subdata, image, wxT("unable to create image") ); |
7b2471a0 | 1319 | |
5d4510dc | 1320 | if ( src_alpha ) { |
051924b8 VZ |
1321 | image.SetAlpha(); |
1322 | subalpha = image.GetAlpha(); | |
1323 | wxCHECK_MSG( subalpha, image, wxT("unable to create alpha channel")); | |
1324 | } | |
1325 | ||
7b2471a0 SB |
1326 | if (M_IMGDATA->m_hasMask) |
1327 | image.SetMaskColour( M_IMGDATA->m_maskRed, M_IMGDATA->m_maskGreen, M_IMGDATA->m_maskBlue ); | |
1328 | ||
051924b8 VZ |
1329 | const int width = GetWidth(); |
1330 | const int pixsoff = rect.GetLeft() + width * rect.GetTop(); | |
995612e2 | 1331 | |
051924b8 VZ |
1332 | src_data += 3 * pixsoff; |
1333 | src_alpha += pixsoff; // won't be used if was NULL, so this is ok | |
7b2471a0 SB |
1334 | |
1335 | for (long j = 0; j < subheight; ++j) | |
1336 | { | |
051924b8 VZ |
1337 | memcpy( subdata, src_data, 3 * subwidth ); |
1338 | subdata += 3 * subwidth; | |
1339 | src_data += 3 * width; | |
1340 | if (subalpha != NULL) { | |
1341 | memcpy( subalpha, src_alpha, subwidth ); | |
1342 | subalpha += subwidth; | |
1343 | src_alpha += width; | |
1344 | } | |
7b2471a0 SB |
1345 | } |
1346 | ||
1347 | return image; | |
1348 | } | |
1349 | ||
e9b64c5e | 1350 | wxImage wxImage::Size( const wxSize& size, const wxPoint& pos, |
b737ad10 RR |
1351 | int r_, int g_, int b_ ) const |
1352 | { | |
1353 | wxImage image; | |
1354 | ||
a1b806b9 | 1355 | wxCHECK_MSG( IsOk(), image, wxT("invalid image") ); |
b737ad10 RR |
1356 | wxCHECK_MSG( (size.GetWidth() > 0) && (size.GetHeight() > 0), image, wxT("invalid size") ); |
1357 | ||
1358 | int width = GetWidth(), height = GetHeight(); | |
1359 | image.Create(size.GetWidth(), size.GetHeight(), false); | |
1360 | ||
1361 | unsigned char r = (unsigned char)r_; | |
1362 | unsigned char g = (unsigned char)g_; | |
1363 | unsigned char b = (unsigned char)b_; | |
1364 | if ((r_ == -1) && (g_ == -1) && (b_ == -1)) | |
1365 | { | |
1366 | GetOrFindMaskColour( &r, &g, &b ); | |
1367 | image.SetMaskColour(r, g, b); | |
1368 | } | |
1369 | ||
1370 | image.SetRGB(wxRect(), r, g, b); | |
1371 | ||
2e51fb30 VZ |
1372 | // we have two coordinate systems: |
1373 | // source: starting at 0,0 of source image | |
1374 | // destination starting at 0,0 of destination image | |
1375 | // Documentation says: | |
1376 | // "The image is pasted into a new image [...] at the position pos relative | |
1377 | // to the upper left of the new image." this means the transition rule is: | |
1378 | // "dest coord" = "source coord" + pos; | |
b737ad10 | 1379 | |
2e51fb30 VZ |
1380 | // calculate the intersection using source coordinates: |
1381 | wxRect srcRect(0, 0, width, height); | |
1382 | wxRect dstRect(-pos, size); | |
b737ad10 | 1383 | |
2e51fb30 VZ |
1384 | srcRect.Intersect(dstRect); |
1385 | ||
1386 | if (!srcRect.IsEmpty()) | |
b737ad10 | 1387 | { |
2e51fb30 VZ |
1388 | // insertion point is needed in destination coordinates. |
1389 | // NB: it is not always "pos"! | |
1390 | wxPoint ptInsert = srcRect.GetTopLeft() + pos; | |
1391 | ||
1392 | if ((srcRect.GetWidth() == width) && (srcRect.GetHeight() == height)) | |
1393 | image.Paste(*this, ptInsert.x, ptInsert.y); | |
b737ad10 | 1394 | else |
2e51fb30 | 1395 | image.Paste(GetSubImage(srcRect), ptInsert.x, ptInsert.y); |
b737ad10 RR |
1396 | } |
1397 | ||
1398 | return image; | |
1399 | } | |
1400 | ||
f6bcfd97 BP |
1401 | void wxImage::Paste( const wxImage &image, int x, int y ) |
1402 | { | |
a1b806b9 DS |
1403 | wxCHECK_RET( IsOk(), wxT("invalid image") ); |
1404 | wxCHECK_RET( image.IsOk(), wxT("invalid image") ); | |
f6bcfd97 | 1405 | |
a0f81e9f PC |
1406 | AllocExclusive(); |
1407 | ||
f6bcfd97 BP |
1408 | int xx = 0; |
1409 | int yy = 0; | |
1410 | int width = image.GetWidth(); | |
1411 | int height = image.GetHeight(); | |
1412 | ||
1413 | if (x < 0) | |
1414 | { | |
1415 | xx = -x; | |
1416 | width += x; | |
1417 | } | |
1418 | if (y < 0) | |
1419 | { | |
1420 | yy = -y; | |
1421 | height += y; | |
1422 | } | |
1423 | ||
1424 | if ((x+xx)+width > M_IMGDATA->m_width) | |
1425 | width = M_IMGDATA->m_width - (x+xx); | |
1426 | if ((y+yy)+height > M_IMGDATA->m_height) | |
1427 | height = M_IMGDATA->m_height - (y+yy); | |
1428 | ||
1429 | if (width < 1) return; | |
1430 | if (height < 1) return; | |
1431 | ||
de83bbe3 VZ |
1432 | // If we can, copy the data using memcpy() as this is the fastest way. But |
1433 | // for this the image being pasted must have "compatible" mask with this | |
1434 | // one meaning that either it must not have one at all or it must use the | |
1435 | // same masked colour. | |
1436 | if ( !image.HasMask() || | |
1437 | ((HasMask() && | |
f6bcfd97 BP |
1438 | (GetMaskRed()==image.GetMaskRed()) && |
1439 | (GetMaskGreen()==image.GetMaskGreen()) && | |
de83bbe3 | 1440 | (GetMaskBlue()==image.GetMaskBlue()))) ) |
f6bcfd97 | 1441 | { |
5d4510dc | 1442 | const unsigned char* source_data = image.GetData() + 3*(xx + yy*image.GetWidth()); |
f6bcfd97 BP |
1443 | int source_step = image.GetWidth()*3; |
1444 | ||
5d4510dc | 1445 | unsigned char* target_data = GetData() + 3*((x+xx) + (y+yy)*M_IMGDATA->m_width); |
f6bcfd97 BP |
1446 | int target_step = M_IMGDATA->m_width*3; |
1447 | for (int j = 0; j < height; j++) | |
1448 | { | |
85f81873 | 1449 | memcpy( target_data, source_data, width*3 ); |
f6bcfd97 BP |
1450 | source_data += source_step; |
1451 | target_data += target_step; | |
1452 | } | |
1453 | } | |
33ac7e6f | 1454 | |
14678d6d VZ |
1455 | // Copy over the alpha channel from the original image |
1456 | if ( image.HasAlpha() ) | |
1457 | { | |
1458 | if ( !HasAlpha() ) | |
1459 | InitAlpha(); | |
1460 | ||
5d4510dc | 1461 | const unsigned char* source_data = image.GetAlpha() + xx + yy*image.GetWidth(); |
14678d6d VZ |
1462 | int source_step = image.GetWidth(); |
1463 | ||
1464 | unsigned char* target_data = GetAlpha() + (x+xx) + (y+yy)*M_IMGDATA->m_width; | |
1465 | int target_step = M_IMGDATA->m_width; | |
1466 | ||
1467 | for (int j = 0; j < height; j++, | |
1468 | source_data += source_step, | |
1469 | target_data += target_step) | |
1470 | { | |
1471 | memcpy( target_data, source_data, width ); | |
1472 | } | |
1473 | } | |
1474 | ||
aa21b509 | 1475 | if (!HasMask() && image.HasMask()) |
f6bcfd97 | 1476 | { |
aa21b509 RR |
1477 | unsigned char r = image.GetMaskRed(); |
1478 | unsigned char g = image.GetMaskGreen(); | |
1479 | unsigned char b = image.GetMaskBlue(); | |
33ac7e6f | 1480 | |
5d4510dc | 1481 | const unsigned char* source_data = image.GetData() + 3*(xx + yy*image.GetWidth()); |
aa21b509 RR |
1482 | int source_step = image.GetWidth()*3; |
1483 | ||
5d4510dc | 1484 | unsigned char* target_data = GetData() + 3*((x+xx) + (y+yy)*M_IMGDATA->m_width); |
aa21b509 | 1485 | int target_step = M_IMGDATA->m_width*3; |
33ac7e6f | 1486 | |
aa21b509 RR |
1487 | for (int j = 0; j < height; j++) |
1488 | { | |
85f81873 | 1489 | for (int i = 0; i < width*3; i+=3) |
aa21b509 | 1490 | { |
dcc36b34 RR |
1491 | if ((source_data[i] != r) || |
1492 | (source_data[i+1] != g) || | |
aa21b509 RR |
1493 | (source_data[i+2] != b)) |
1494 | { | |
1495 | memcpy( target_data+i, source_data+i, 3 ); | |
1496 | } | |
33ac7e6f | 1497 | } |
aa21b509 RR |
1498 | source_data += source_step; |
1499 | target_data += target_step; | |
1500 | } | |
f6bcfd97 BP |
1501 | } |
1502 | } | |
1503 | ||
be25e480 RR |
1504 | void wxImage::Replace( unsigned char r1, unsigned char g1, unsigned char b1, |
1505 | unsigned char r2, unsigned char g2, unsigned char b2 ) | |
1506 | { | |
a1b806b9 | 1507 | wxCHECK_RET( IsOk(), wxT("invalid image") ); |
be25e480 | 1508 | |
a0f81e9f PC |
1509 | AllocExclusive(); |
1510 | ||
487659e0 | 1511 | unsigned char *data = GetData(); |
06b466c7 | 1512 | |
be25e480 RR |
1513 | const int w = GetWidth(); |
1514 | const int h = GetHeight(); | |
1515 | ||
1516 | for (int j = 0; j < h; j++) | |
1517 | for (int i = 0; i < w; i++) | |
069d0f27 VZ |
1518 | { |
1519 | if ((data[0] == r1) && (data[1] == g1) && (data[2] == b1)) | |
1520 | { | |
1521 | data[0] = r2; | |
1522 | data[1] = g2; | |
1523 | data[2] = b2; | |
1524 | } | |
1525 | data += 3; | |
1526 | } | |
be25e480 RR |
1527 | } |
1528 | ||
198c264d JS |
1529 | wxImage wxImage::ConvertToGreyscale(void) const |
1530 | { | |
1531 | return ConvertToGreyscale(0.299, 0.587, 0.114); | |
1532 | } | |
1533 | ||
1534 | wxImage wxImage::ConvertToGreyscale(double weight_r, double weight_g, double weight_b) const | |
ec85956a | 1535 | { |
5d4510dc | 1536 | wxImage image(MakeEmptyClone()); |
ec85956a | 1537 | |
a1b806b9 | 1538 | wxCHECK( image.IsOk(), image ); |
ec85956a | 1539 | |
496dbbe7 | 1540 | const unsigned char *src = M_IMGDATA->m_data; |
ec85956a JS |
1541 | unsigned char *dest = image.GetData(); |
1542 | ||
5d4510dc VZ |
1543 | const bool hasMask = M_IMGDATA->m_hasMask; |
1544 | const unsigned char maskRed = M_IMGDATA->m_maskRed; | |
1545 | const unsigned char maskGreen = M_IMGDATA->m_maskGreen; | |
1546 | const unsigned char maskBlue = M_IMGDATA->m_maskBlue; | |
ec85956a | 1547 | |
ec85956a JS |
1548 | const long size = M_IMGDATA->m_width * M_IMGDATA->m_height; |
1549 | for ( long i = 0; i < size; i++, src += 3, dest += 3 ) | |
1550 | { | |
198c264d | 1551 | memcpy(dest, src, 3); |
5d4510dc VZ |
1552 | // only modify non-masked pixels |
1553 | if ( !hasMask || src[0] != maskRed || src[1] != maskGreen || src[2] != maskBlue ) | |
ec85956a | 1554 | { |
198c264d | 1555 | wxColour::MakeGrey(dest + 0, dest + 1, dest + 2, weight_r, weight_g, weight_b); |
ec85956a JS |
1556 | } |
1557 | } | |
1558 | ||
7ce30d0b | 1559 | // copy the alpha channel, if any |
496dbbe7 | 1560 | if ( image.HasAlpha() ) |
7ce30d0b | 1561 | { |
496dbbe7 | 1562 | memcpy( image.GetAlpha(), GetAlpha(), GetWidth() * GetHeight() ); |
7ce30d0b WS |
1563 | } |
1564 | ||
ec85956a JS |
1565 | return image; |
1566 | } | |
1567 | ||
f515c25a | 1568 | wxImage wxImage::ConvertToMono( unsigned char r, unsigned char g, unsigned char b ) const |
fec19ea9 VS |
1569 | { |
1570 | wxImage image; | |
1571 | ||
a1b806b9 | 1572 | wxCHECK_MSG( IsOk(), image, wxT("invalid image") ); |
fec19ea9 | 1573 | |
ff865c13 | 1574 | image.Create( M_IMGDATA->m_width, M_IMGDATA->m_height, false ); |
fec19ea9 | 1575 | |
487659e0 | 1576 | unsigned char *data = image.GetData(); |
fec19ea9 VS |
1577 | |
1578 | wxCHECK_MSG( data, image, wxT("unable to create image") ); | |
1579 | ||
1580 | if (M_IMGDATA->m_hasMask) | |
1581 | { | |
1582 | if (M_IMGDATA->m_maskRed == r && M_IMGDATA->m_maskGreen == g && | |
1583 | M_IMGDATA->m_maskBlue == b) | |
1584 | image.SetMaskColour( 255, 255, 255 ); | |
1585 | else | |
1586 | image.SetMaskColour( 0, 0, 0 ); | |
1587 | } | |
1588 | ||
1589 | long size = M_IMGDATA->m_height * M_IMGDATA->m_width; | |
1590 | ||
487659e0 VZ |
1591 | unsigned char *srcd = M_IMGDATA->m_data; |
1592 | unsigned char *tard = image.GetData(); | |
fec19ea9 VS |
1593 | |
1594 | for ( long i = 0; i < size; i++, srcd += 3, tard += 3 ) | |
1595 | { | |
198c264d JS |
1596 | bool on = (srcd[0] == r) && (srcd[1] == g) && (srcd[2] == b); |
1597 | wxColourBase::MakeMono(tard + 0, tard + 1, tard + 2, on); | |
fec19ea9 VS |
1598 | } |
1599 | ||
1600 | return image; | |
1601 | } | |
1602 | ||
198c264d JS |
1603 | wxImage wxImage::ConvertToDisabled(unsigned char brightness) const |
1604 | { | |
1605 | wxImage image = *this; | |
1606 | ||
1607 | unsigned char mr = image.GetMaskRed(); | |
1608 | unsigned char mg = image.GetMaskGreen(); | |
1609 | unsigned char mb = image.GetMaskBlue(); | |
1610 | ||
1611 | int width = image.GetWidth(); | |
1612 | int height = image.GetHeight(); | |
1613 | bool has_mask = image.HasMask(); | |
1614 | ||
1615 | for (int y = height-1; y >= 0; --y) | |
1616 | { | |
1617 | for (int x = width-1; x >= 0; --x) | |
1618 | { | |
1619 | unsigned char* data = image.GetData() + (y*(width*3))+(x*3); | |
1620 | unsigned char* r = data; | |
1621 | unsigned char* g = data+1; | |
1622 | unsigned char* b = data+2; | |
1623 | ||
1624 | if (has_mask && (*r == mr) && (*g == mg) && (*b == mb)) | |
1625 | continue; | |
1626 | ||
1627 | wxColour::MakeDisabled(r, g, b, brightness); | |
1628 | } | |
1629 | } | |
1630 | return image; | |
1631 | } | |
1632 | ||
21dc4be5 VZ |
1633 | int wxImage::GetWidth() const |
1634 | { | |
a1b806b9 | 1635 | wxCHECK_MSG( IsOk(), 0, wxT("invalid image") ); |
21dc4be5 VZ |
1636 | |
1637 | return M_IMGDATA->m_width; | |
1638 | } | |
1639 | ||
1640 | int wxImage::GetHeight() const | |
1641 | { | |
a1b806b9 | 1642 | wxCHECK_MSG( IsOk(), 0, wxT("invalid image") ); |
21dc4be5 VZ |
1643 | |
1644 | return M_IMGDATA->m_height; | |
1645 | } | |
1646 | ||
591d3fa2 VZ |
1647 | wxBitmapType wxImage::GetType() const |
1648 | { | |
1649 | wxCHECK_MSG( IsOk(), wxBITMAP_TYPE_INVALID, wxT("invalid image") ); | |
1650 | ||
1651 | return M_IMGDATA->m_type; | |
1652 | } | |
1653 | ||
9d1c7e84 VZ |
1654 | void wxImage::SetType(wxBitmapType type) |
1655 | { | |
1656 | wxCHECK_RET( IsOk(), "must create the image before setting its type"); | |
1657 | ||
1658 | // type can be wxBITMAP_TYPE_INVALID to reset the image type to default | |
1659 | wxASSERT_MSG( type != wxBITMAP_TYPE_MAX, "invalid bitmap type" ); | |
1660 | ||
1661 | M_IMGDATA->m_type = type; | |
1662 | } | |
1663 | ||
5644ac46 | 1664 | long wxImage::XYToIndex(int x, int y) const |
ef539066 | 1665 | { |
a1b806b9 | 1666 | if ( IsOk() && |
5644ac46 VZ |
1667 | x >= 0 && y >= 0 && |
1668 | x < M_IMGDATA->m_width && y < M_IMGDATA->m_height ) | |
1669 | { | |
1670 | return y*M_IMGDATA->m_width + x; | |
1671 | } | |
c7abc967 | 1672 | |
5644ac46 VZ |
1673 | return -1; |
1674 | } | |
c7abc967 | 1675 | |
5644ac46 VZ |
1676 | void wxImage::SetRGB( int x, int y, unsigned char r, unsigned char g, unsigned char b ) |
1677 | { | |
1678 | long pos = XYToIndex(x, y); | |
1679 | wxCHECK_RET( pos != -1, wxT("invalid image coordinates") ); | |
c7abc967 | 1680 | |
a0f81e9f PC |
1681 | AllocExclusive(); |
1682 | ||
5644ac46 | 1683 | pos *= 3; |
c7abc967 | 1684 | |
ef539066 RR |
1685 | M_IMGDATA->m_data[ pos ] = r; |
1686 | M_IMGDATA->m_data[ pos+1 ] = g; | |
1687 | M_IMGDATA->m_data[ pos+2 ] = b; | |
1688 | } | |
1689 | ||
b737ad10 RR |
1690 | void wxImage::SetRGB( const wxRect& rect_, unsigned char r, unsigned char g, unsigned char b ) |
1691 | { | |
a1b806b9 | 1692 | wxCHECK_RET( IsOk(), wxT("invalid image") ); |
b737ad10 | 1693 | |
a0f81e9f PC |
1694 | AllocExclusive(); |
1695 | ||
b737ad10 RR |
1696 | wxRect rect(rect_); |
1697 | wxRect imageRect(0, 0, GetWidth(), GetHeight()); | |
1698 | if ( rect == wxRect() ) | |
1699 | { | |
1700 | rect = imageRect; | |
1701 | } | |
1702 | else | |
1703 | { | |
22a35096 VS |
1704 | wxCHECK_RET( imageRect.Contains(rect.GetTopLeft()) && |
1705 | imageRect.Contains(rect.GetBottomRight()), | |
b737ad10 RR |
1706 | wxT("invalid bounding rectangle") ); |
1707 | } | |
1708 | ||
1709 | int x1 = rect.GetLeft(), | |
1710 | y1 = rect.GetTop(), | |
1711 | x2 = rect.GetRight() + 1, | |
1712 | y2 = rect.GetBottom() + 1; | |
1713 | ||
e9b64c5e | 1714 | unsigned char *data wxDUMMY_INITIALIZE(NULL); |
b737ad10 RR |
1715 | int x, y, width = GetWidth(); |
1716 | for (y = y1; y < y2; y++) | |
1717 | { | |
1718 | data = M_IMGDATA->m_data + (y*width + x1)*3; | |
1719 | for (x = x1; x < x2; x++) | |
1720 | { | |
1721 | *data++ = r; | |
1722 | *data++ = g; | |
1723 | *data++ = b; | |
1724 | } | |
1725 | } | |
1726 | } | |
1727 | ||
f6bcfd97 | 1728 | unsigned char wxImage::GetRed( int x, int y ) const |
ef539066 | 1729 | { |
5644ac46 VZ |
1730 | long pos = XYToIndex(x, y); |
1731 | wxCHECK_MSG( pos != -1, 0, wxT("invalid image coordinates") ); | |
c7abc967 | 1732 | |
5644ac46 | 1733 | pos *= 3; |
c7abc967 | 1734 | |
ef539066 RR |
1735 | return M_IMGDATA->m_data[pos]; |
1736 | } | |
1737 | ||
f6bcfd97 | 1738 | unsigned char wxImage::GetGreen( int x, int y ) const |
ef539066 | 1739 | { |
5644ac46 VZ |
1740 | long pos = XYToIndex(x, y); |
1741 | wxCHECK_MSG( pos != -1, 0, wxT("invalid image coordinates") ); | |
c7abc967 | 1742 | |
5644ac46 | 1743 | pos *= 3; |
c7abc967 | 1744 | |
ef539066 RR |
1745 | return M_IMGDATA->m_data[pos+1]; |
1746 | } | |
1747 | ||
f6bcfd97 | 1748 | unsigned char wxImage::GetBlue( int x, int y ) const |
ef539066 | 1749 | { |
5644ac46 VZ |
1750 | long pos = XYToIndex(x, y); |
1751 | wxCHECK_MSG( pos != -1, 0, wxT("invalid image coordinates") ); | |
c7abc967 | 1752 | |
5644ac46 | 1753 | pos *= 3; |
c7abc967 | 1754 | |
ef539066 RR |
1755 | return M_IMGDATA->m_data[pos+2]; |
1756 | } | |
4698648f | 1757 | |
b7cacb43 | 1758 | bool wxImage::IsOk() const |
4698648f | 1759 | { |
de8c48cf VZ |
1760 | // image of 0 width or height can't be considered ok - at least because it |
1761 | // causes crashes in ConvertToBitmap() if we don't catch it in time | |
1762 | wxImageRefData *data = M_IMGDATA; | |
1763 | return data && data->m_ok && data->m_width && data->m_height; | |
01111366 RR |
1764 | } |
1765 | ||
487659e0 | 1766 | unsigned char *wxImage::GetData() const |
01111366 | 1767 | { |
a1b806b9 | 1768 | wxCHECK_MSG( IsOk(), (unsigned char *)NULL, wxT("invalid image") ); |
c7abc967 | 1769 | |
fd0eed64 | 1770 | return M_IMGDATA->m_data; |
01111366 RR |
1771 | } |
1772 | ||
4013de12 | 1773 | void wxImage::SetData( unsigned char *data, bool static_data ) |
01111366 | 1774 | { |
a1b806b9 | 1775 | wxCHECK_RET( IsOk(), wxT("invalid image") ); |
58a8ab88 | 1776 | |
ed58dbea RR |
1777 | wxImageRefData *newRefData = new wxImageRefData(); |
1778 | ||
1779 | newRefData->m_width = M_IMGDATA->m_width; | |
1780 | newRefData->m_height = M_IMGDATA->m_height; | |
1781 | newRefData->m_data = data; | |
70cd62e9 | 1782 | newRefData->m_ok = true; |
ed58dbea RR |
1783 | newRefData->m_maskRed = M_IMGDATA->m_maskRed; |
1784 | newRefData->m_maskGreen = M_IMGDATA->m_maskGreen; | |
1785 | newRefData->m_maskBlue = M_IMGDATA->m_maskBlue; | |
1786 | newRefData->m_hasMask = M_IMGDATA->m_hasMask; | |
4013de12 | 1787 | newRefData->m_static = static_data; |
995612e2 | 1788 | |
ed58dbea | 1789 | UnRef(); |
995612e2 | 1790 | |
ed58dbea | 1791 | m_refData = newRefData; |
01111366 RR |
1792 | } |
1793 | ||
4013de12 | 1794 | void wxImage::SetData( unsigned char *data, int new_width, int new_height, bool static_data ) |
f6bcfd97 BP |
1795 | { |
1796 | wxImageRefData *newRefData = new wxImageRefData(); | |
1797 | ||
1798 | if (m_refData) | |
1799 | { | |
1800 | newRefData->m_width = new_width; | |
1801 | newRefData->m_height = new_height; | |
1802 | newRefData->m_data = data; | |
70cd62e9 | 1803 | newRefData->m_ok = true; |
f6bcfd97 BP |
1804 | newRefData->m_maskRed = M_IMGDATA->m_maskRed; |
1805 | newRefData->m_maskGreen = M_IMGDATA->m_maskGreen; | |
1806 | newRefData->m_maskBlue = M_IMGDATA->m_maskBlue; | |
1807 | newRefData->m_hasMask = M_IMGDATA->m_hasMask; | |
1808 | } | |
1809 | else | |
1810 | { | |
1811 | newRefData->m_width = new_width; | |
1812 | newRefData->m_height = new_height; | |
1813 | newRefData->m_data = data; | |
70cd62e9 | 1814 | newRefData->m_ok = true; |
f6bcfd97 | 1815 | } |
4013de12 | 1816 | newRefData->m_static = static_data; |
f6bcfd97 BP |
1817 | |
1818 | UnRef(); | |
1819 | ||
1820 | m_refData = newRefData; | |
1821 | } | |
1822 | ||
487659e0 VZ |
1823 | // ---------------------------------------------------------------------------- |
1824 | // alpha channel support | |
1825 | // ---------------------------------------------------------------------------- | |
1826 | ||
1827 | void wxImage::SetAlpha(int x, int y, unsigned char alpha) | |
1828 | { | |
5644ac46 | 1829 | wxCHECK_RET( HasAlpha(), wxT("no alpha channel") ); |
487659e0 | 1830 | |
5644ac46 VZ |
1831 | long pos = XYToIndex(x, y); |
1832 | wxCHECK_RET( pos != -1, wxT("invalid image coordinates") ); | |
487659e0 | 1833 | |
a0f81e9f PC |
1834 | AllocExclusive(); |
1835 | ||
5644ac46 | 1836 | M_IMGDATA->m_alpha[pos] = alpha; |
487659e0 VZ |
1837 | } |
1838 | ||
d30ee785 | 1839 | unsigned char wxImage::GetAlpha(int x, int y) const |
487659e0 | 1840 | { |
5644ac46 | 1841 | wxCHECK_MSG( HasAlpha(), 0, wxT("no alpha channel") ); |
487659e0 | 1842 | |
5644ac46 VZ |
1843 | long pos = XYToIndex(x, y); |
1844 | wxCHECK_MSG( pos != -1, 0, wxT("invalid image coordinates") ); | |
487659e0 | 1845 | |
5644ac46 | 1846 | return M_IMGDATA->m_alpha[pos]; |
487659e0 VZ |
1847 | } |
1848 | ||
5644ac46 VZ |
1849 | bool |
1850 | wxImage::ConvertColourToAlpha(unsigned char r, unsigned char g, unsigned char b) | |
6408deed | 1851 | { |
5644ac46 | 1852 | SetAlpha(NULL); |
b713f891 | 1853 | |
5644ac46 VZ |
1854 | const int w = M_IMGDATA->m_width; |
1855 | const int h = M_IMGDATA->m_height; | |
b713f891 | 1856 | |
6408deed RR |
1857 | unsigned char *alpha = GetAlpha(); |
1858 | unsigned char *data = GetData(); | |
b713f891 | 1859 | |
5644ac46 VZ |
1860 | for ( int y = 0; y < h; y++ ) |
1861 | { | |
1862 | for ( int x = 0; x < w; x++ ) | |
1863 | { | |
1864 | *alpha++ = *data; | |
1865 | *data++ = r; | |
1866 | *data++ = g; | |
1867 | *data++ = b; | |
1868 | } | |
1869 | } | |
6408deed RR |
1870 | |
1871 | return true; | |
1872 | } | |
1873 | ||
4013de12 | 1874 | void wxImage::SetAlpha( unsigned char *alpha, bool static_data ) |
487659e0 | 1875 | { |
a1b806b9 | 1876 | wxCHECK_RET( IsOk(), wxT("invalid image") ); |
487659e0 | 1877 | |
a0f81e9f PC |
1878 | AllocExclusive(); |
1879 | ||
487659e0 VZ |
1880 | if ( !alpha ) |
1881 | { | |
edf8e8e0 | 1882 | alpha = (unsigned char *)malloc(M_IMGDATA->m_width*M_IMGDATA->m_height); |
487659e0 VZ |
1883 | } |
1884 | ||
eb86e775 VZ |
1885 | if( !M_IMGDATA->m_staticAlpha ) |
1886 | free(M_IMGDATA->m_alpha); | |
1887 | ||
487659e0 | 1888 | M_IMGDATA->m_alpha = alpha; |
d2502f14 | 1889 | M_IMGDATA->m_staticAlpha = static_data; |
487659e0 VZ |
1890 | } |
1891 | ||
1892 | unsigned char *wxImage::GetAlpha() const | |
1893 | { | |
a1b806b9 | 1894 | wxCHECK_MSG( IsOk(), (unsigned char *)NULL, wxT("invalid image") ); |
487659e0 VZ |
1895 | |
1896 | return M_IMGDATA->m_alpha; | |
1897 | } | |
1898 | ||
828f0936 VZ |
1899 | void wxImage::InitAlpha() |
1900 | { | |
1901 | wxCHECK_RET( !HasAlpha(), wxT("image already has an alpha channel") ); | |
1902 | ||
1903 | // initialize memory for alpha channel | |
1904 | SetAlpha(); | |
1905 | ||
1906 | unsigned char *alpha = M_IMGDATA->m_alpha; | |
1907 | const size_t lenAlpha = M_IMGDATA->m_width * M_IMGDATA->m_height; | |
1908 | ||
828f0936 VZ |
1909 | if ( HasMask() ) |
1910 | { | |
1911 | // use the mask to initialize the alpha channel. | |
1912 | const unsigned char * const alphaEnd = alpha + lenAlpha; | |
1913 | ||
1914 | const unsigned char mr = M_IMGDATA->m_maskRed; | |
1915 | const unsigned char mg = M_IMGDATA->m_maskGreen; | |
1916 | const unsigned char mb = M_IMGDATA->m_maskBlue; | |
1917 | for ( unsigned char *src = M_IMGDATA->m_data; | |
1918 | alpha < alphaEnd; | |
1919 | src += 3, alpha++ ) | |
1920 | { | |
1921 | *alpha = (src[0] == mr && src[1] == mg && src[2] == mb) | |
21dc4be5 VZ |
1922 | ? wxIMAGE_ALPHA_TRANSPARENT |
1923 | : wxIMAGE_ALPHA_OPAQUE; | |
828f0936 VZ |
1924 | } |
1925 | ||
1926 | M_IMGDATA->m_hasMask = false; | |
1927 | } | |
1928 | else // no mask | |
1929 | { | |
1930 | // make the image fully opaque | |
21dc4be5 | 1931 | memset(alpha, wxIMAGE_ALPHA_OPAQUE, lenAlpha); |
828f0936 VZ |
1932 | } |
1933 | } | |
1934 | ||
90fbb09a VZ |
1935 | void wxImage::ClearAlpha() |
1936 | { | |
1937 | wxCHECK_RET( HasAlpha(), wxT("image already doesn't have an alpha channel") ); | |
1938 | ||
1939 | if ( !M_IMGDATA->m_staticAlpha ) | |
1940 | free( M_IMGDATA->m_alpha ); | |
1941 | ||
1942 | M_IMGDATA->m_alpha = NULL; | |
1943 | } | |
1944 | ||
1945 | ||
487659e0 VZ |
1946 | // ---------------------------------------------------------------------------- |
1947 | // mask support | |
1948 | // ---------------------------------------------------------------------------- | |
1949 | ||
01111366 RR |
1950 | void wxImage::SetMaskColour( unsigned char r, unsigned char g, unsigned char b ) |
1951 | { | |
a1b806b9 | 1952 | wxCHECK_RET( IsOk(), wxT("invalid image") ); |
c7abc967 | 1953 | |
a0f81e9f PC |
1954 | AllocExclusive(); |
1955 | ||
fd0eed64 RR |
1956 | M_IMGDATA->m_maskRed = r; |
1957 | M_IMGDATA->m_maskGreen = g; | |
1958 | M_IMGDATA->m_maskBlue = b; | |
70cd62e9 | 1959 | M_IMGDATA->m_hasMask = true; |
01111366 RR |
1960 | } |
1961 | ||
b737ad10 RR |
1962 | bool wxImage::GetOrFindMaskColour( unsigned char *r, unsigned char *g, unsigned char *b ) const |
1963 | { | |
a1b806b9 | 1964 | wxCHECK_MSG( IsOk(), false, wxT("invalid image") ); |
b737ad10 RR |
1965 | |
1966 | if (M_IMGDATA->m_hasMask) | |
1967 | { | |
1968 | if (r) *r = M_IMGDATA->m_maskRed; | |
1969 | if (g) *g = M_IMGDATA->m_maskGreen; | |
1970 | if (b) *b = M_IMGDATA->m_maskBlue; | |
1971 | return true; | |
1972 | } | |
1973 | else | |
1974 | { | |
1975 | FindFirstUnusedColour(r, g, b); | |
1976 | return false; | |
1977 | } | |
1978 | } | |
1979 | ||
01111366 RR |
1980 | unsigned char wxImage::GetMaskRed() const |
1981 | { | |
a1b806b9 | 1982 | wxCHECK_MSG( IsOk(), 0, wxT("invalid image") ); |
c7abc967 | 1983 | |
fd0eed64 | 1984 | return M_IMGDATA->m_maskRed; |
01111366 RR |
1985 | } |
1986 | ||
1987 | unsigned char wxImage::GetMaskGreen() const | |
1988 | { | |
a1b806b9 | 1989 | wxCHECK_MSG( IsOk(), 0, wxT("invalid image") ); |
c7abc967 | 1990 | |
fd0eed64 | 1991 | return M_IMGDATA->m_maskGreen; |
01111366 RR |
1992 | } |
1993 | ||
1994 | unsigned char wxImage::GetMaskBlue() const | |
1995 | { | |
a1b806b9 | 1996 | wxCHECK_MSG( IsOk(), 0, wxT("invalid image") ); |
c7abc967 | 1997 | |
fd0eed64 | 1998 | return M_IMGDATA->m_maskBlue; |
01111366 | 1999 | } |
4698648f | 2000 | |
01111366 RR |
2001 | void wxImage::SetMask( bool mask ) |
2002 | { | |
a1b806b9 | 2003 | wxCHECK_RET( IsOk(), wxT("invalid image") ); |
c7abc967 | 2004 | |
a0f81e9f PC |
2005 | AllocExclusive(); |
2006 | ||
fd0eed64 | 2007 | M_IMGDATA->m_hasMask = mask; |
01111366 RR |
2008 | } |
2009 | ||
2010 | bool wxImage::HasMask() const | |
2011 | { | |
a1b806b9 | 2012 | wxCHECK_MSG( IsOk(), false, wxT("invalid image") ); |
c7abc967 | 2013 | |
fd0eed64 | 2014 | return M_IMGDATA->m_hasMask; |
01111366 RR |
2015 | } |
2016 | ||
21dc4be5 | 2017 | bool wxImage::IsTransparent(int x, int y, unsigned char threshold) const |
4698648f | 2018 | { |
21dc4be5 VZ |
2019 | long pos = XYToIndex(x, y); |
2020 | wxCHECK_MSG( pos != -1, false, wxT("invalid image coordinates") ); | |
c7abc967 | 2021 | |
21dc4be5 VZ |
2022 | // check mask |
2023 | if ( M_IMGDATA->m_hasMask ) | |
2024 | { | |
2025 | const unsigned char *p = M_IMGDATA->m_data + 3*pos; | |
2026 | if ( p[0] == M_IMGDATA->m_maskRed && | |
2027 | p[1] == M_IMGDATA->m_maskGreen && | |
2028 | p[2] == M_IMGDATA->m_maskBlue ) | |
2029 | { | |
2030 | return true; | |
2031 | } | |
2032 | } | |
01111366 | 2033 | |
21dc4be5 VZ |
2034 | // then check alpha |
2035 | if ( M_IMGDATA->m_alpha ) | |
2036 | { | |
2037 | if ( M_IMGDATA->m_alpha[pos] < threshold ) | |
2038 | { | |
2039 | // transparent enough | |
2040 | return true; | |
2041 | } | |
2042 | } | |
c7abc967 | 2043 | |
21dc4be5 VZ |
2044 | // not transparent |
2045 | return false; | |
01111366 RR |
2046 | } |
2047 | ||
487659e0 | 2048 | bool wxImage::SetMaskFromImage(const wxImage& mask, |
1f5b2017 | 2049 | unsigned char mr, unsigned char mg, unsigned char mb) |
52b64b0a | 2050 | { |
52b64b0a RR |
2051 | // check that the images are the same size |
2052 | if ( (M_IMGDATA->m_height != mask.GetHeight() ) || (M_IMGDATA->m_width != mask.GetWidth () ) ) | |
2053 | { | |
bc88f66f | 2054 | wxLogError( _("Image and mask have different sizes.") ); |
70cd62e9 | 2055 | return false; |
52b64b0a | 2056 | } |
487659e0 | 2057 | |
52b64b0a RR |
2058 | // find unused colour |
2059 | unsigned char r,g,b ; | |
1f5b2017 | 2060 | if (!FindFirstUnusedColour(&r, &g, &b)) |
52b64b0a | 2061 | { |
bc88f66f | 2062 | wxLogError( _("No unused colour in image being masked.") ); |
70cd62e9 | 2063 | return false ; |
52b64b0a | 2064 | } |
487659e0 | 2065 | |
a0f81e9f PC |
2066 | AllocExclusive(); |
2067 | ||
487659e0 VZ |
2068 | unsigned char *imgdata = GetData(); |
2069 | unsigned char *maskdata = mask.GetData(); | |
52b64b0a RR |
2070 | |
2071 | const int w = GetWidth(); | |
2072 | const int h = GetHeight(); | |
2073 | ||
2074 | for (int j = 0; j < h; j++) | |
1f5b2017 | 2075 | { |
52b64b0a RR |
2076 | for (int i = 0; i < w; i++) |
2077 | { | |
1f5b2017 | 2078 | if ((maskdata[0] == mr) && (maskdata[1] == mg) && (maskdata[2] == mb)) |
52b64b0a RR |
2079 | { |
2080 | imgdata[0] = r; | |
2081 | imgdata[1] = g; | |
2082 | imgdata[2] = b; | |
2083 | } | |
2084 | imgdata += 3; | |
2085 | maskdata += 3; | |
2086 | } | |
1f5b2017 | 2087 | } |
52b64b0a | 2088 | |
1f5b2017 | 2089 | SetMaskColour(r, g, b); |
70cd62e9 | 2090 | SetMask(true); |
487659e0 | 2091 | |
70cd62e9 | 2092 | return true; |
52b64b0a | 2093 | } |
7beb59f3 | 2094 | |
8f2b21e4 | 2095 | bool wxImage::ConvertAlphaToMask(unsigned char threshold) |
ff5ad794 | 2096 | { |
c1099d92 | 2097 | if ( !HasAlpha() ) |
878f28d8 | 2098 | return false; |
ff5ad794 VS |
2099 | |
2100 | unsigned char mr, mg, mb; | |
c1099d92 | 2101 | if ( !FindFirstUnusedColour(&mr, &mg, &mb) ) |
ff5ad794 VS |
2102 | { |
2103 | wxLogError( _("No unused colour in image being masked.") ); | |
2104 | return false; | |
2105 | } | |
94406a49 | 2106 | |
878f28d8 | 2107 | return ConvertAlphaToMask(mr, mg, mb, threshold); |
c1099d92 VZ |
2108 | } |
2109 | ||
878f28d8 | 2110 | bool wxImage::ConvertAlphaToMask(unsigned char mr, |
c1099d92 VZ |
2111 | unsigned char mg, |
2112 | unsigned char mb, | |
2113 | unsigned char threshold) | |
2114 | { | |
2115 | if ( !HasAlpha() ) | |
878f28d8 | 2116 | return false; |
c1099d92 | 2117 | |
a0f81e9f PC |
2118 | AllocExclusive(); |
2119 | ||
ff5ad794 VS |
2120 | SetMask(true); |
2121 | SetMaskColour(mr, mg, mb); | |
94406a49 | 2122 | |
ff5ad794 VS |
2123 | unsigned char *imgdata = GetData(); |
2124 | unsigned char *alphadata = GetAlpha(); | |
2125 | ||
8f2b21e4 VS |
2126 | int w = GetWidth(); |
2127 | int h = GetHeight(); | |
ff5ad794 | 2128 | |
8f2b21e4 | 2129 | for (int y = 0; y < h; y++) |
ff5ad794 | 2130 | { |
8f2b21e4 | 2131 | for (int x = 0; x < w; x++, imgdata += 3, alphadata++) |
ff5ad794 | 2132 | { |
e95f0d79 | 2133 | if (*alphadata < threshold) |
ff5ad794 VS |
2134 | { |
2135 | imgdata[0] = mr; | |
2136 | imgdata[1] = mg; | |
2137 | imgdata[2] = mb; | |
2138 | } | |
2139 | } | |
2140 | } | |
2141 | ||
c1099d92 | 2142 | if ( !M_IMGDATA->m_staticAlpha ) |
eb86e775 VZ |
2143 | free(M_IMGDATA->m_alpha); |
2144 | ||
ff5ad794 | 2145 | M_IMGDATA->m_alpha = NULL; |
eb86e775 | 2146 | M_IMGDATA->m_staticAlpha = false; |
878f28d8 VZ |
2147 | |
2148 | return true; | |
ff5ad794 | 2149 | } |
52b64b0a | 2150 | |
21dc4be5 | 2151 | // ---------------------------------------------------------------------------- |
5e5437e0 | 2152 | // Palette functions |
21dc4be5 VZ |
2153 | // ---------------------------------------------------------------------------- |
2154 | ||
2155 | #if wxUSE_PALETTE | |
5e5437e0 JS |
2156 | |
2157 | bool wxImage::HasPalette() const | |
2158 | { | |
a1b806b9 | 2159 | if (!IsOk()) |
70cd62e9 | 2160 | return false; |
5e5437e0 | 2161 | |
a1b806b9 | 2162 | return M_IMGDATA->m_palette.IsOk(); |
5e5437e0 JS |
2163 | } |
2164 | ||
2165 | const wxPalette& wxImage::GetPalette() const | |
2166 | { | |
a1b806b9 | 2167 | wxCHECK_MSG( IsOk(), wxNullPalette, wxT("invalid image") ); |
5e5437e0 JS |
2168 | |
2169 | return M_IMGDATA->m_palette; | |
2170 | } | |
2171 | ||
2172 | void wxImage::SetPalette(const wxPalette& palette) | |
2173 | { | |
a1b806b9 | 2174 | wxCHECK_RET( IsOk(), wxT("invalid image") ); |
5e5437e0 | 2175 | |
a0f81e9f PC |
2176 | AllocExclusive(); |
2177 | ||
5e5437e0 JS |
2178 | M_IMGDATA->m_palette = palette; |
2179 | } | |
2180 | ||
d275c7eb VZ |
2181 | #endif // wxUSE_PALETTE |
2182 | ||
21dc4be5 | 2183 | // ---------------------------------------------------------------------------- |
5e5437e0 | 2184 | // Option functions (arbitrary name/value mapping) |
21dc4be5 VZ |
2185 | // ---------------------------------------------------------------------------- |
2186 | ||
5e5437e0 JS |
2187 | void wxImage::SetOption(const wxString& name, const wxString& value) |
2188 | { | |
a0f81e9f PC |
2189 | AllocExclusive(); |
2190 | ||
70cd62e9 | 2191 | int idx = M_IMGDATA->m_optionNames.Index(name, false); |
36abe9d4 | 2192 | if ( idx == wxNOT_FOUND ) |
5e5437e0 JS |
2193 | { |
2194 | M_IMGDATA->m_optionNames.Add(name); | |
2195 | M_IMGDATA->m_optionValues.Add(value); | |
2196 | } | |
2197 | else | |
2198 | { | |
2199 | M_IMGDATA->m_optionNames[idx] = name; | |
2200 | M_IMGDATA->m_optionValues[idx] = value; | |
2201 | } | |
2202 | } | |
2203 | ||
2204 | void wxImage::SetOption(const wxString& name, int value) | |
2205 | { | |
2206 | wxString valStr; | |
2207 | valStr.Printf(wxT("%d"), value); | |
2208 | SetOption(name, valStr); | |
2209 | } | |
2210 | ||
2211 | wxString wxImage::GetOption(const wxString& name) const | |
2212 | { | |
36abe9d4 VZ |
2213 | if ( !M_IMGDATA ) |
2214 | return wxEmptyString; | |
5e5437e0 | 2215 | |
70cd62e9 | 2216 | int idx = M_IMGDATA->m_optionNames.Index(name, false); |
36abe9d4 | 2217 | if ( idx == wxNOT_FOUND ) |
5e5437e0 JS |
2218 | return wxEmptyString; |
2219 | else | |
2220 | return M_IMGDATA->m_optionValues[idx]; | |
2221 | } | |
2222 | ||
2223 | int wxImage::GetOptionInt(const wxString& name) const | |
2224 | { | |
5e5437e0 JS |
2225 | return wxAtoi(GetOption(name)); |
2226 | } | |
2227 | ||
2228 | bool wxImage::HasOption(const wxString& name) const | |
2229 | { | |
36abe9d4 VZ |
2230 | return M_IMGDATA ? M_IMGDATA->m_optionNames.Index(name, false) != wxNOT_FOUND |
2231 | : false; | |
5e5437e0 JS |
2232 | } |
2233 | ||
21dc4be5 VZ |
2234 | // ---------------------------------------------------------------------------- |
2235 | // image I/O | |
2236 | // ---------------------------------------------------------------------------- | |
2237 | ||
9a6384ca | 2238 | bool wxImage::LoadFile( const wxString& WXUNUSED_UNLESS_STREAMS(filename), |
e98e625c | 2239 | wxBitmapType WXUNUSED_UNLESS_STREAMS(type), |
9a6384ca | 2240 | int WXUNUSED_UNLESS_STREAMS(index) ) |
01111366 | 2241 | { |
6632225c | 2242 | #if HAS_FILE_STREAMS |
3f74b7ae VZ |
2243 | wxImageFileInputStream stream(filename); |
2244 | if ( stream.IsOk() ) | |
6c28fd33 | 2245 | { |
d80207c3 | 2246 | wxBufferedInputStream bstream( stream ); |
3f74b7ae VZ |
2247 | if ( LoadFile(bstream, type, index) ) |
2248 | return true; | |
6c28fd33 | 2249 | } |
d80207c3 | 2250 | |
3f74b7ae | 2251 | wxLogError(_("Failed to load image from file \"%s\"."), filename); |
6632225c | 2252 | #endif // HAS_FILE_STREAMS |
3f74b7ae VZ |
2253 | |
2254 | return false; | |
9e9ee68e VS |
2255 | } |
2256 | ||
9a6384ca WS |
2257 | bool wxImage::LoadFile( const wxString& WXUNUSED_UNLESS_STREAMS(filename), |
2258 | const wxString& WXUNUSED_UNLESS_STREAMS(mimetype), | |
2259 | int WXUNUSED_UNLESS_STREAMS(index) ) | |
9e9ee68e | 2260 | { |
6632225c | 2261 | #if HAS_FILE_STREAMS |
3f74b7ae VZ |
2262 | wxImageFileInputStream stream(filename); |
2263 | if ( stream.IsOk() ) | |
6c28fd33 | 2264 | { |
d80207c3 | 2265 | wxBufferedInputStream bstream( stream ); |
3f74b7ae VZ |
2266 | if ( LoadFile(bstream, mimetype, index) ) |
2267 | return true; | |
6c28fd33 | 2268 | } |
d80207c3 | 2269 | |
3f74b7ae | 2270 | wxLogError(_("Failed to load image from file \"%s\"."), filename); |
6632225c | 2271 | #endif // HAS_FILE_STREAMS |
3f74b7ae VZ |
2272 | |
2273 | return false; | |
1ccbb61a VZ |
2274 | } |
2275 | ||
45647dcf | 2276 | |
45647dcf VS |
2277 | bool wxImage::SaveFile( const wxString& filename ) const |
2278 | { | |
2279 | wxString ext = filename.AfterLast('.').Lower(); | |
487659e0 | 2280 | |
e98e625c VZ |
2281 | wxImageHandler *handler = FindHandler(ext, wxBITMAP_TYPE_ANY); |
2282 | if ( !handler) | |
45647dcf | 2283 | { |
e98e625c VZ |
2284 | wxLogError(_("Can't save image to file '%s': unknown extension."), |
2285 | filename); | |
2286 | return false; | |
45647dcf VS |
2287 | } |
2288 | ||
e98e625c | 2289 | return SaveFile(filename, handler->GetType()); |
45647dcf VS |
2290 | } |
2291 | ||
9a6384ca | 2292 | bool wxImage::SaveFile( const wxString& WXUNUSED_UNLESS_STREAMS(filename), |
e98e625c | 2293 | wxBitmapType WXUNUSED_UNLESS_STREAMS(type) ) const |
1ccbb61a | 2294 | { |
6632225c | 2295 | #if HAS_FILE_STREAMS |
a1b806b9 | 2296 | wxCHECK_MSG( IsOk(), false, wxT("invalid image") ); |
2a736739 | 2297 | |
36aac195 | 2298 | ((wxImage*)this)->SetOption(wxIMAGE_OPTION_FILENAME, filename); |
fd94e8aa | 2299 | |
6632225c | 2300 | wxImageFileOutputStream stream(filename); |
9e9ee68e | 2301 | |
2b5f62a0 | 2302 | if ( stream.IsOk() ) |
1b055864 | 2303 | { |
069d0f27 | 2304 | wxBufferedOutputStream bstream( stream ); |
1b055864 RR |
2305 | return SaveFile(bstream, type); |
2306 | } | |
6632225c | 2307 | #endif // HAS_FILE_STREAMS |
3ca6a5f0 | 2308 | |
70cd62e9 | 2309 | return false; |
3d05544e | 2310 | } |
01111366 | 2311 | |
9a6384ca WS |
2312 | bool wxImage::SaveFile( const wxString& WXUNUSED_UNLESS_STREAMS(filename), |
2313 | const wxString& WXUNUSED_UNLESS_STREAMS(mimetype) ) const | |
9e9ee68e | 2314 | { |
6632225c | 2315 | #if HAS_FILE_STREAMS |
a1b806b9 | 2316 | wxCHECK_MSG( IsOk(), false, wxT("invalid image") ); |
2a736739 | 2317 | |
36aac195 | 2318 | ((wxImage*)this)->SetOption(wxIMAGE_OPTION_FILENAME, filename); |
fd94e8aa | 2319 | |
6632225c | 2320 | wxImageFileOutputStream stream(filename); |
c7abc967 | 2321 | |
2b5f62a0 | 2322 | if ( stream.IsOk() ) |
1b055864 | 2323 | { |
069d0f27 | 2324 | wxBufferedOutputStream bstream( stream ); |
1b055864 RR |
2325 | return SaveFile(bstream, mimetype); |
2326 | } | |
6632225c | 2327 | #endif // HAS_FILE_STREAMS |
3ca6a5f0 | 2328 | |
70cd62e9 | 2329 | return false; |
9e9ee68e VS |
2330 | } |
2331 | ||
9a6384ca | 2332 | bool wxImage::CanRead( const wxString& WXUNUSED_UNLESS_STREAMS(name) ) |
87202f78 | 2333 | { |
6632225c VS |
2334 | #if HAS_FILE_STREAMS |
2335 | wxImageFileInputStream stream(name); | |
9a6384ca | 2336 | return CanRead(stream); |
87202f78 | 2337 | #else |
9a6384ca | 2338 | return false; |
87202f78 SB |
2339 | #endif |
2340 | } | |
2341 | ||
9a6384ca | 2342 | int wxImage::GetImageCount( const wxString& WXUNUSED_UNLESS_STREAMS(name), |
e98e625c | 2343 | wxBitmapType WXUNUSED_UNLESS_STREAMS(type) ) |
60d43ad8 | 2344 | { |
6632225c VS |
2345 | #if HAS_FILE_STREAMS |
2346 | wxImageFileInputStream stream(name); | |
a1b806b9 | 2347 | if (stream.IsOk()) |
9a6384ca | 2348 | return GetImageCount(stream, type); |
60d43ad8 | 2349 | #endif |
2c0a4e08 VZ |
2350 | |
2351 | return 0; | |
60d43ad8 VS |
2352 | } |
2353 | ||
e02afc7a | 2354 | #if wxUSE_STREAMS |
deb2fec0 | 2355 | |
87202f78 SB |
2356 | bool wxImage::CanRead( wxInputStream &stream ) |
2357 | { | |
79fa2374 | 2358 | const wxList& list = GetHandlers(); |
004fd0c8 | 2359 | |
222ed1d6 | 2360 | for ( wxList::compatibility_iterator node = list.GetFirst(); node; node = node->GetNext() ) |
004fd0c8 | 2361 | { |
60d43ad8 VS |
2362 | wxImageHandler *handler=(wxImageHandler*)node->GetData(); |
2363 | if (handler->CanRead( stream )) | |
70cd62e9 | 2364 | return true; |
87202f78 SB |
2365 | } |
2366 | ||
70cd62e9 | 2367 | return false; |
60d43ad8 VS |
2368 | } |
2369 | ||
e98e625c | 2370 | int wxImage::GetImageCount( wxInputStream &stream, wxBitmapType type ) |
60d43ad8 VS |
2371 | { |
2372 | wxImageHandler *handler; | |
2373 | ||
2374 | if ( type == wxBITMAP_TYPE_ANY ) | |
2375 | { | |
f71b0c2d | 2376 | const wxList& list = GetHandlers(); |
60d43ad8 | 2377 | |
f71b0c2d VZ |
2378 | for ( wxList::compatibility_iterator node = list.GetFirst(); |
2379 | node; | |
2380 | node = node->GetNext() ) | |
60d43ad8 | 2381 | { |
f71b0c2d | 2382 | handler = (wxImageHandler*)node->GetData(); |
60d43ad8 | 2383 | if ( handler->CanRead(stream) ) |
f71b0c2d VZ |
2384 | { |
2385 | const int count = handler->GetImageCount(stream); | |
2386 | if ( count >= 0 ) | |
2387 | return count; | |
2388 | } | |
60d43ad8 VS |
2389 | |
2390 | } | |
2391 | ||
2392 | wxLogWarning(_("No handler found for image type.")); | |
2393 | return 0; | |
2394 | } | |
2395 | ||
2396 | handler = FindHandler(type); | |
2397 | ||
2398 | if ( !handler ) | |
2399 | { | |
b7c31456 | 2400 | wxLogWarning(_("No image handler for type %d defined."), type); |
70cd62e9 | 2401 | return false; |
60d43ad8 VS |
2402 | } |
2403 | ||
2404 | if ( handler->CanRead(stream) ) | |
2405 | { | |
649d13e8 | 2406 | return handler->GetImageCount(stream); |
60d43ad8 VS |
2407 | } |
2408 | else | |
2409 | { | |
b7c31456 | 2410 | wxLogError(_("Image file is not of type %d."), type); |
60d43ad8 VS |
2411 | return 0; |
2412 | } | |
87202f78 SB |
2413 | } |
2414 | ||
591d3fa2 VZ |
2415 | bool wxImage::DoLoad(wxImageHandler& handler, wxInputStream& stream, int index) |
2416 | { | |
36abe9d4 VZ |
2417 | // save the options values which can be clobbered by the handler (e.g. many |
2418 | // of them call Destroy() before trying to load the file) | |
2419 | const unsigned maxWidth = GetOptionInt(wxIMAGE_OPTION_MAX_WIDTH), | |
2420 | maxHeight = GetOptionInt(wxIMAGE_OPTION_MAX_HEIGHT); | |
2421 | ||
94803e4e VZ |
2422 | // Preserve the original stream position if possible to rewind back to it |
2423 | // if we failed to load the file -- maybe the next handler that we try can | |
2424 | // succeed after us then. | |
2425 | wxFileOffset posOld = wxInvalidOffset; | |
2426 | if ( stream.IsSeekable() ) | |
2427 | posOld = stream.TellI(); | |
2428 | ||
591d3fa2 | 2429 | if ( !handler.LoadFile(this, stream, true/*verbose*/, index) ) |
94803e4e VZ |
2430 | { |
2431 | if ( posOld != wxInvalidOffset ) | |
2432 | stream.SeekI(posOld); | |
2433 | ||
591d3fa2 | 2434 | return false; |
94803e4e | 2435 | } |
591d3fa2 | 2436 | |
36abe9d4 VZ |
2437 | // rescale the image to the specified size if needed |
2438 | if ( maxWidth || maxHeight ) | |
2439 | { | |
2440 | const unsigned widthOrig = GetWidth(), | |
2441 | heightOrig = GetHeight(); | |
2442 | ||
2443 | // this uses the same (trivial) algorithm as the JPEG handler | |
2444 | unsigned width = widthOrig, | |
2445 | height = heightOrig; | |
2446 | while ( (maxWidth && width > maxWidth) || | |
2447 | (maxHeight && height > maxHeight) ) | |
2448 | { | |
2449 | width /= 2; | |
2450 | height /= 2; | |
2451 | } | |
2452 | ||
2453 | if ( width != widthOrig || height != heightOrig ) | |
b6963858 VZ |
2454 | { |
2455 | // get the original size if it was set by the image handler | |
2456 | // but also in order to restore it after Rescale | |
2457 | int widthOrigOption = GetOptionInt(wxIMAGE_OPTION_ORIGINAL_WIDTH), | |
2458 | heightOrigOption = GetOptionInt(wxIMAGE_OPTION_ORIGINAL_HEIGHT); | |
2459 | ||
36abe9d4 | 2460 | Rescale(width, height, wxIMAGE_QUALITY_HIGH); |
b6963858 VZ |
2461 | |
2462 | SetOption(wxIMAGE_OPTION_ORIGINAL_WIDTH, widthOrigOption ? widthOrigOption : widthOrig); | |
2463 | SetOption(wxIMAGE_OPTION_ORIGINAL_HEIGHT, heightOrigOption ? heightOrigOption : heightOrig); | |
2464 | } | |
36abe9d4 VZ |
2465 | } |
2466 | ||
b50e6e41 PC |
2467 | // Set this after Rescale, which currently does not preserve it |
2468 | M_IMGDATA->m_type = handler.GetType(); | |
2469 | ||
591d3fa2 VZ |
2470 | return true; |
2471 | } | |
2472 | ||
e98e625c | 2473 | bool wxImage::LoadFile( wxInputStream& stream, wxBitmapType type, int index ) |
3d05544e | 2474 | { |
36abe9d4 | 2475 | AllocExclusive(); |
c7abc967 | 2476 | |
deb2fec0 SB |
2477 | wxImageHandler *handler; |
2478 | ||
60d43ad8 | 2479 | if ( type == wxBITMAP_TYPE_ANY ) |
deb2fec0 | 2480 | { |
3f74b7ae VZ |
2481 | if ( !stream.IsSeekable() ) |
2482 | { | |
2483 | // The error message about image data format being unknown below | |
2484 | // would be misleading in this case as we are not even going to try | |
2485 | // any handlers because CanRead() never does anything for not | |
2486 | // seekable stream, so try to be more precise here. | |
2487 | wxLogError(_("Can't automatically determine the image format " | |
2488 | "for non-seekable input.")); | |
2489 | return false; | |
2490 | } | |
2491 | ||
f71b0c2d VZ |
2492 | const wxList& list = GetHandlers(); |
2493 | for ( wxList::compatibility_iterator node = list.GetFirst(); | |
2494 | node; | |
2495 | node = node->GetNext() ) | |
995612e2 | 2496 | { |
f71b0c2d | 2497 | handler = (wxImageHandler*)node->GetData(); |
591d3fa2 | 2498 | if ( handler->CanRead(stream) && DoLoad(*handler, stream, index) ) |
f71b0c2d | 2499 | return true; |
995612e2 | 2500 | } |
deb2fec0 | 2501 | |
3f74b7ae | 2502 | wxLogWarning( _("Unknown image data format.") ); |
f71b0c2d | 2503 | |
70cd62e9 | 2504 | return false; |
deb2fec0 | 2505 | } |
e98e625c | 2506 | //else: have specific type |
deb2fec0 SB |
2507 | |
2508 | handler = FindHandler(type); | |
e98e625c | 2509 | if ( !handler ) |
fd0eed64 | 2510 | { |
b7c31456 | 2511 | wxLogWarning( _("No image handler for type %d defined."), type ); |
70cd62e9 | 2512 | return false; |
fd0eed64 | 2513 | } |
c7abc967 | 2514 | |
e98e625c | 2515 | if ( stream.IsSeekable() && !handler->CanRead(stream) ) |
dd9ea234 | 2516 | { |
3f74b7ae | 2517 | wxLogError(_("This is not a %s."), handler->GetName()); |
dd9ea234 JS |
2518 | return false; |
2519 | } | |
e98e625c | 2520 | |
591d3fa2 | 2521 | return DoLoad(*handler, stream, index); |
01111366 RR |
2522 | } |
2523 | ||
60d43ad8 | 2524 | bool wxImage::LoadFile( wxInputStream& stream, const wxString& mimetype, int index ) |
9e9ee68e VS |
2525 | { |
2526 | UnRef(); | |
2527 | ||
2528 | m_refData = new wxImageRefData; | |
2529 | ||
2530 | wxImageHandler *handler = FindHandlerMime(mimetype); | |
2531 | ||
e98e625c | 2532 | if ( !handler ) |
9e9ee68e | 2533 | { |
58c837a4 | 2534 | wxLogWarning( _("No image handler for type %s defined."), mimetype.GetData() ); |
70cd62e9 | 2535 | return false; |
9e9ee68e VS |
2536 | } |
2537 | ||
e98e625c | 2538 | if ( stream.IsSeekable() && !handler->CanRead(stream) ) |
dd9ea234 | 2539 | { |
3f74b7ae | 2540 | wxLogError(_("Image is not of type %s."), mimetype); |
dd9ea234 JS |
2541 | return false; |
2542 | } | |
e98e625c | 2543 | |
591d3fa2 VZ |
2544 | return DoLoad(*handler, stream, index); |
2545 | } | |
2546 | ||
2547 | bool wxImage::DoSave(wxImageHandler& handler, wxOutputStream& stream) const | |
2548 | { | |
5c33522f | 2549 | wxImage * const self = const_cast<wxImage *>(this); |
591d3fa2 VZ |
2550 | if ( !handler.SaveFile(self, stream) ) |
2551 | return false; | |
2552 | ||
2553 | M_IMGDATA->m_type = handler.GetType(); | |
2554 | return true; | |
9e9ee68e VS |
2555 | } |
2556 | ||
e98e625c | 2557 | bool wxImage::SaveFile( wxOutputStream& stream, wxBitmapType type ) const |
01111366 | 2558 | { |
a1b806b9 | 2559 | wxCHECK_MSG( IsOk(), false, wxT("invalid image") ); |
c7abc967 | 2560 | |
fd0eed64 | 2561 | wxImageHandler *handler = FindHandler(type); |
2a736739 | 2562 | if ( !handler ) |
fd0eed64 | 2563 | { |
58c837a4 | 2564 | wxLogWarning( _("No image handler for type %d defined."), type ); |
70cd62e9 | 2565 | return false; |
9e9ee68e VS |
2566 | } |
2567 | ||
591d3fa2 | 2568 | return DoSave(*handler, stream); |
9e9ee68e VS |
2569 | } |
2570 | ||
e0a76d8d | 2571 | bool wxImage::SaveFile( wxOutputStream& stream, const wxString& mimetype ) const |
9e9ee68e | 2572 | { |
a1b806b9 | 2573 | wxCHECK_MSG( IsOk(), false, wxT("invalid image") ); |
c7abc967 | 2574 | |
9e9ee68e | 2575 | wxImageHandler *handler = FindHandlerMime(mimetype); |
2a736739 | 2576 | if ( !handler ) |
9e9ee68e | 2577 | { |
58c837a4 | 2578 | wxLogWarning( _("No image handler for type %s defined."), mimetype.GetData() ); |
6bed673e | 2579 | return false; |
fd0eed64 | 2580 | } |
c7abc967 | 2581 | |
591d3fa2 | 2582 | return DoSave(*handler, stream); |
01111366 | 2583 | } |
e98e625c | 2584 | |
e02afc7a | 2585 | #endif // wxUSE_STREAMS |
01111366 | 2586 | |
21dc4be5 VZ |
2587 | // ---------------------------------------------------------------------------- |
2588 | // image I/O handlers | |
2589 | // ---------------------------------------------------------------------------- | |
2590 | ||
01111366 RR |
2591 | void wxImage::AddHandler( wxImageHandler *handler ) |
2592 | { | |
2b5f62a0 VZ |
2593 | // Check for an existing handler of the type being added. |
2594 | if (FindHandler( handler->GetType() ) == 0) | |
2595 | { | |
2596 | sm_handlers.Append( handler ); | |
2597 | } | |
2598 | else | |
2599 | { | |
2600 | // This is not documented behaviour, merely the simplest 'fix' | |
2601 | // for preventing duplicate additions. If someone ever has | |
2602 | // a good reason to add and remove duplicate handlers (and they | |
2603 | // may) we should probably refcount the duplicates. | |
2604 | // also an issue in InsertHandler below. | |
2605 | ||
9a83f860 | 2606 | wxLogDebug( wxT("Adding duplicate image handler for '%s'"), |
2b5f62a0 VZ |
2607 | handler->GetName().c_str() ); |
2608 | delete handler; | |
2609 | } | |
01111366 RR |
2610 | } |
2611 | ||
2612 | void wxImage::InsertHandler( wxImageHandler *handler ) | |
2613 | { | |
2b5f62a0 VZ |
2614 | // Check for an existing handler of the type being added. |
2615 | if (FindHandler( handler->GetType() ) == 0) | |
2616 | { | |
2617 | sm_handlers.Insert( handler ); | |
2618 | } | |
2619 | else | |
2620 | { | |
2621 | // see AddHandler for additional comments. | |
9a83f860 | 2622 | wxLogDebug( wxT("Inserting duplicate image handler for '%s'"), |
2b5f62a0 VZ |
2623 | handler->GetName().c_str() ); |
2624 | delete handler; | |
2625 | } | |
01111366 RR |
2626 | } |
2627 | ||
2628 | bool wxImage::RemoveHandler( const wxString& name ) | |
2629 | { | |
fd0eed64 RR |
2630 | wxImageHandler *handler = FindHandler(name); |
2631 | if (handler) | |
2632 | { | |
2633 | sm_handlers.DeleteObject(handler); | |
222ed1d6 | 2634 | delete handler; |
70cd62e9 | 2635 | return true; |
fd0eed64 RR |
2636 | } |
2637 | else | |
70cd62e9 | 2638 | return false; |
01111366 RR |
2639 | } |
2640 | ||
2641 | wxImageHandler *wxImage::FindHandler( const wxString& name ) | |
2642 | { | |
222ed1d6 | 2643 | wxList::compatibility_iterator node = sm_handlers.GetFirst(); |
fd0eed64 RR |
2644 | while (node) |
2645 | { | |
b1d4dd7a | 2646 | wxImageHandler *handler = (wxImageHandler*)node->GetData(); |
ce3ed50d | 2647 | if (handler->GetName().Cmp(name) == 0) return handler; |
c7abc967 | 2648 | |
b1d4dd7a | 2649 | node = node->GetNext(); |
fd0eed64 | 2650 | } |
b4c26503 | 2651 | return NULL; |
01111366 RR |
2652 | } |
2653 | ||
e98e625c | 2654 | wxImageHandler *wxImage::FindHandler( const wxString& extension, wxBitmapType bitmapType ) |
01111366 | 2655 | { |
222ed1d6 | 2656 | wxList::compatibility_iterator node = sm_handlers.GetFirst(); |
fd0eed64 RR |
2657 | while (node) |
2658 | { | |
b1d4dd7a | 2659 | wxImageHandler *handler = (wxImageHandler*)node->GetData(); |
ba4800d3 | 2660 | if ((bitmapType == wxBITMAP_TYPE_ANY) || (handler->GetType() == bitmapType)) |
e98e625c | 2661 | { |
ba4800d3 VZ |
2662 | if (handler->GetExtension() == extension) |
2663 | return handler; | |
2664 | if (handler->GetAltExtensions().Index(extension, false) != wxNOT_FOUND) | |
2665 | return handler; | |
e98e625c | 2666 | } |
b1d4dd7a | 2667 | node = node->GetNext(); |
fd0eed64 | 2668 | } |
b4c26503 | 2669 | return NULL; |
01111366 RR |
2670 | } |
2671 | ||
e98e625c | 2672 | wxImageHandler *wxImage::FindHandler(wxBitmapType bitmapType ) |
01111366 | 2673 | { |
222ed1d6 | 2674 | wxList::compatibility_iterator node = sm_handlers.GetFirst(); |
fd0eed64 RR |
2675 | while (node) |
2676 | { | |
b1d4dd7a | 2677 | wxImageHandler *handler = (wxImageHandler *)node->GetData(); |
fd0eed64 | 2678 | if (handler->GetType() == bitmapType) return handler; |
b1d4dd7a | 2679 | node = node->GetNext(); |
fd0eed64 | 2680 | } |
b4c26503 | 2681 | return NULL; |
fd0eed64 RR |
2682 | } |
2683 | ||
9e9ee68e VS |
2684 | wxImageHandler *wxImage::FindHandlerMime( const wxString& mimetype ) |
2685 | { | |
222ed1d6 | 2686 | wxList::compatibility_iterator node = sm_handlers.GetFirst(); |
9e9ee68e VS |
2687 | while (node) |
2688 | { | |
b1d4dd7a | 2689 | wxImageHandler *handler = (wxImageHandler *)node->GetData(); |
70cd62e9 | 2690 | if (handler->GetMimeType().IsSameAs(mimetype, false)) return handler; |
b1d4dd7a | 2691 | node = node->GetNext(); |
9e9ee68e | 2692 | } |
b4c26503 | 2693 | return NULL; |
9e9ee68e VS |
2694 | } |
2695 | ||
fd0eed64 RR |
2696 | void wxImage::InitStandardHandlers() |
2697 | { | |
77fac225 | 2698 | #if wxUSE_STREAMS |
66e23ad2 | 2699 | AddHandler(new wxBMPHandler); |
77fac225 | 2700 | #endif // wxUSE_STREAMS |
01111366 RR |
2701 | } |
2702 | ||
2703 | void wxImage::CleanUpHandlers() | |
2704 | { | |
222ed1d6 | 2705 | wxList::compatibility_iterator node = sm_handlers.GetFirst(); |
fd0eed64 RR |
2706 | while (node) |
2707 | { | |
b1d4dd7a | 2708 | wxImageHandler *handler = (wxImageHandler *)node->GetData(); |
222ed1d6 | 2709 | wxList::compatibility_iterator next = node->GetNext(); |
fd0eed64 | 2710 | delete handler; |
fd0eed64 RR |
2711 | node = next; |
2712 | } | |
01111366 | 2713 | |
222ed1d6 MB |
2714 | sm_handlers.Clear(); |
2715 | } | |
ff865c13 | 2716 | |
939fadc8 JS |
2717 | wxString wxImage::GetImageExtWildcard() |
2718 | { | |
2719 | wxString fmts; | |
2720 | ||
2721 | wxList& Handlers = wxImage::GetHandlers(); | |
222ed1d6 | 2722 | wxList::compatibility_iterator Node = Handlers.GetFirst(); |
939fadc8 JS |
2723 | while ( Node ) |
2724 | { | |
2725 | wxImageHandler* Handler = (wxImageHandler*)Node->GetData(); | |
2726 | fmts += wxT("*.") + Handler->GetExtension(); | |
ba4800d3 VZ |
2727 | for (size_t i = 0; i < Handler->GetAltExtensions().size(); i++) |
2728 | fmts += wxT(";*.") + Handler->GetAltExtensions()[i]; | |
939fadc8 JS |
2729 | Node = Node->GetNext(); |
2730 | if ( Node ) fmts += wxT(";"); | |
2731 | } | |
2732 | ||
2733 | return wxT("(") + fmts + wxT(")|") + fmts; | |
2734 | } | |
2735 | ||
978d3d36 VZ |
2736 | wxImage::HSVValue wxImage::RGBtoHSV(const RGBValue& rgb) |
2737 | { | |
978d3d36 VZ |
2738 | const double red = rgb.red / 255.0, |
2739 | green = rgb.green / 255.0, | |
2740 | blue = rgb.blue / 255.0; | |
2741 | ||
c77a6796 VZ |
2742 | // find the min and max intensity (and remember which one was it for the |
2743 | // latter) | |
978d3d36 | 2744 | double minimumRGB = red; |
c77a6796 | 2745 | if ( green < minimumRGB ) |
978d3d36 | 2746 | minimumRGB = green; |
c77a6796 | 2747 | if ( blue < minimumRGB ) |
978d3d36 VZ |
2748 | minimumRGB = blue; |
2749 | ||
c77a6796 | 2750 | enum { RED, GREEN, BLUE } chMax = RED; |
978d3d36 | 2751 | double maximumRGB = red; |
c77a6796 VZ |
2752 | if ( green > maximumRGB ) |
2753 | { | |
2754 | chMax = GREEN; | |
978d3d36 | 2755 | maximumRGB = green; |
c77a6796 VZ |
2756 | } |
2757 | if ( blue > maximumRGB ) | |
2758 | { | |
2759 | chMax = BLUE; | |
978d3d36 | 2760 | maximumRGB = blue; |
c77a6796 | 2761 | } |
978d3d36 | 2762 | |
c77a6796 | 2763 | const double value = maximumRGB; |
978d3d36 | 2764 | |
38d4b1e4 | 2765 | double hue = 0.0, saturation; |
c77a6796 VZ |
2766 | const double deltaRGB = maximumRGB - minimumRGB; |
2767 | if ( wxIsNullDouble(deltaRGB) ) | |
978d3d36 VZ |
2768 | { |
2769 | // Gray has no color | |
2770 | hue = 0.0; | |
2771 | saturation = 0.0; | |
2772 | } | |
2773 | else | |
2774 | { | |
c77a6796 VZ |
2775 | switch ( chMax ) |
2776 | { | |
2777 | case RED: | |
2778 | hue = (green - blue) / deltaRGB; | |
2779 | break; | |
978d3d36 | 2780 | |
c77a6796 VZ |
2781 | case GREEN: |
2782 | hue = 2.0 + (blue - red) / deltaRGB; | |
2783 | break; | |
978d3d36 | 2784 | |
c77a6796 VZ |
2785 | case BLUE: |
2786 | hue = 4.0 + (red - green) / deltaRGB; | |
2787 | break; | |
38d4b1e4 WS |
2788 | |
2789 | default: | |
2790 | wxFAIL_MSG(wxT("hue not specified")); | |
2791 | break; | |
c77a6796 VZ |
2792 | } |
2793 | ||
2794 | hue /= 6.0; | |
978d3d36 | 2795 | |
c77a6796 VZ |
2796 | if ( hue < 0.0 ) |
2797 | hue += 1.0; | |
978d3d36 | 2798 | |
c77a6796 | 2799 | saturation = deltaRGB / maximumRGB; |
978d3d36 VZ |
2800 | } |
2801 | ||
2802 | return HSVValue(hue, saturation, value); | |
2803 | } | |
2804 | ||
2805 | wxImage::RGBValue wxImage::HSVtoRGB(const HSVValue& hsv) | |
2806 | { | |
2807 | double red, green, blue; | |
2808 | ||
c77a6796 | 2809 | if ( wxIsNullDouble(hsv.saturation) ) |
978d3d36 | 2810 | { |
c77a6796 VZ |
2811 | // Grey |
2812 | red = hsv.value; | |
978d3d36 | 2813 | green = hsv.value; |
c77a6796 | 2814 | blue = hsv.value; |
978d3d36 | 2815 | } |
c77a6796 | 2816 | else // not grey |
978d3d36 VZ |
2817 | { |
2818 | double hue = hsv.hue * 6.0; // sector 0 to 5 | |
2819 | int i = (int)floor(hue); | |
2820 | double f = hue - i; // fractional part of h | |
2821 | double p = hsv.value * (1.0 - hsv.saturation); | |
2822 | ||
2823 | switch (i) | |
2824 | { | |
2825 | case 0: | |
2826 | red = hsv.value; | |
2827 | green = hsv.value * (1.0 - hsv.saturation * (1.0 - f)); | |
2828 | blue = p; | |
2829 | break; | |
2830 | ||
2831 | case 1: | |
2832 | red = hsv.value * (1.0 - hsv.saturation * f); | |
2833 | green = hsv.value; | |
2834 | blue = p; | |
2835 | break; | |
2836 | ||
2837 | case 2: | |
2838 | red = p; | |
2839 | green = hsv.value; | |
2840 | blue = hsv.value * (1.0 - hsv.saturation * (1.0 - f)); | |
2841 | break; | |
2842 | ||
2843 | case 3: | |
2844 | red = p; | |
2845 | green = hsv.value * (1.0 - hsv.saturation * f); | |
2846 | blue = hsv.value; | |
2847 | break; | |
2848 | ||
2849 | case 4: | |
2850 | red = hsv.value * (1.0 - hsv.saturation * (1.0 - f)); | |
2851 | green = p; | |
2852 | blue = hsv.value; | |
2853 | break; | |
2854 | ||
2855 | default: // case 5: | |
2856 | red = hsv.value; | |
2857 | green = p; | |
2858 | blue = hsv.value * (1.0 - hsv.saturation * f); | |
2859 | break; | |
2860 | } | |
2861 | } | |
2862 | ||
2863 | return RGBValue((unsigned char)(red * 255.0), | |
2864 | (unsigned char)(green * 255.0), | |
2865 | (unsigned char)(blue * 255.0)); | |
2866 | } | |
2867 | ||
2868 | /* | |
2869 | * Rotates the hue of each pixel of the image. angle is a double in the range | |
2870 | * -1.0..1.0 where -1.0 is -360 degrees and 1.0 is 360 degrees | |
2871 | */ | |
2872 | void wxImage::RotateHue(double angle) | |
2873 | { | |
a0f81e9f PC |
2874 | AllocExclusive(); |
2875 | ||
978d3d36 VZ |
2876 | unsigned char *srcBytePtr; |
2877 | unsigned char *dstBytePtr; | |
2878 | unsigned long count; | |
2879 | wxImage::HSVValue hsv; | |
2880 | wxImage::RGBValue rgb; | |
2881 | ||
6926b9c4 | 2882 | wxASSERT (angle >= -1.0 && angle <= 1.0); |
978d3d36 | 2883 | count = M_IMGDATA->m_width * M_IMGDATA->m_height; |
c77a6796 | 2884 | if ( count > 0 && !wxIsNullDouble(angle) ) |
978d3d36 VZ |
2885 | { |
2886 | srcBytePtr = M_IMGDATA->m_data; | |
2887 | dstBytePtr = srcBytePtr; | |
2888 | do | |
2889 | { | |
2890 | rgb.red = *srcBytePtr++; | |
2891 | rgb.green = *srcBytePtr++; | |
2892 | rgb.blue = *srcBytePtr++; | |
2893 | hsv = RGBtoHSV(rgb); | |
2894 | ||
2895 | hsv.hue = hsv.hue + angle; | |
2896 | if (hsv.hue > 1.0) | |
2897 | hsv.hue = hsv.hue - 1.0; | |
2898 | else if (hsv.hue < 0.0) | |
2899 | hsv.hue = hsv.hue + 1.0; | |
2900 | ||
2901 | rgb = HSVtoRGB(hsv); | |
2902 | *dstBytePtr++ = rgb.red; | |
2903 | *dstBytePtr++ = rgb.green; | |
2904 | *dstBytePtr++ = rgb.blue; | |
2905 | } while (--count != 0); | |
2906 | } | |
2907 | } | |
2908 | ||
01111366 RR |
2909 | //----------------------------------------------------------------------------- |
2910 | // wxImageHandler | |
2911 | //----------------------------------------------------------------------------- | |
2912 | ||
63d963a1 | 2913 | IMPLEMENT_ABSTRACT_CLASS(wxImageHandler,wxObject) |
01111366 | 2914 | |
e02afc7a | 2915 | #if wxUSE_STREAMS |
8faef7cc | 2916 | int wxImageHandler::GetImageCount( wxInputStream& stream ) |
01111366 | 2917 | { |
8faef7cc FM |
2918 | // NOTE: this code is the same of wxAnimationDecoder::CanRead and |
2919 | // wxImageHandler::CallDoCanRead | |
01111366 | 2920 | |
8faef7cc FM |
2921 | if ( !stream.IsSeekable() ) |
2922 | return false; // can't test unseekable stream | |
0828c087 | 2923 | |
8faef7cc FM |
2924 | wxFileOffset posOld = stream.TellI(); |
2925 | int n = DoGetImageCount(stream); | |
2926 | ||
2927 | // restore the old position to be able to test other formats and so on | |
2928 | if ( stream.SeekI(posOld) == wxInvalidOffset ) | |
2929 | { | |
9a83f860 | 2930 | wxLogDebug(wxT("Failed to rewind the stream in wxImageHandler!")); |
8faef7cc FM |
2931 | |
2932 | // reading would fail anyhow as we're not at the right position | |
2933 | return false; | |
2934 | } | |
2935 | ||
2936 | return n; | |
700ec454 RR |
2937 | } |
2938 | ||
0828c087 VS |
2939 | bool wxImageHandler::CanRead( const wxString& name ) |
2940 | { | |
3f74b7ae VZ |
2941 | wxImageFileInputStream stream(name); |
2942 | if ( !stream.IsOk() ) | |
0828c087 | 2943 | { |
3f74b7ae | 2944 | wxLogError(_("Failed to check format of image file \"%s\"."), name); |
0828c087 | 2945 | |
3f74b7ae VZ |
2946 | return false; |
2947 | } | |
0828c087 | 2948 | |
3f74b7ae | 2949 | return CanRead(stream); |
39d16996 VZ |
2950 | } |
2951 | ||
2952 | bool wxImageHandler::CallDoCanRead(wxInputStream& stream) | |
2953 | { | |
8faef7cc FM |
2954 | // NOTE: this code is the same of wxAnimationDecoder::CanRead and |
2955 | // wxImageHandler::GetImageCount | |
03647350 | 2956 | |
8faef7cc FM |
2957 | if ( !stream.IsSeekable() ) |
2958 | return false; // can't test unseekable stream | |
39d16996 | 2959 | |
8faef7cc | 2960 | wxFileOffset posOld = stream.TellI(); |
39d16996 VZ |
2961 | bool ok = DoCanRead(stream); |
2962 | ||
2963 | // restore the old position to be able to test other formats and so on | |
2964 | if ( stream.SeekI(posOld) == wxInvalidOffset ) | |
2965 | { | |
9a83f860 | 2966 | wxLogDebug(wxT("Failed to rewind the stream in wxImageHandler!")); |
39d16996 VZ |
2967 | |
2968 | // reading would fail anyhow as we're not at the right position | |
70cd62e9 | 2969 | return false; |
0828c087 | 2970 | } |
39d16996 VZ |
2971 | |
2972 | return ok; | |
0828c087 VS |
2973 | } |
2974 | ||
e02afc7a | 2975 | #endif // wxUSE_STREAMS |
01111366 | 2976 | |
361f4288 VZ |
2977 | /* static */ |
2978 | wxImageResolution | |
2979 | wxImageHandler::GetResolutionFromOptions(const wxImage& image, int *x, int *y) | |
2980 | { | |
9a83f860 | 2981 | wxCHECK_MSG( x && y, wxIMAGE_RESOLUTION_NONE, wxT("NULL pointer") ); |
361f4288 VZ |
2982 | |
2983 | if ( image.HasOption(wxIMAGE_OPTION_RESOLUTIONX) && | |
2984 | image.HasOption(wxIMAGE_OPTION_RESOLUTIONY) ) | |
2985 | { | |
2986 | *x = image.GetOptionInt(wxIMAGE_OPTION_RESOLUTIONX); | |
2987 | *y = image.GetOptionInt(wxIMAGE_OPTION_RESOLUTIONY); | |
2988 | } | |
2989 | else if ( image.HasOption(wxIMAGE_OPTION_RESOLUTION) ) | |
2990 | { | |
2991 | *x = | |
2992 | *y = image.GetOptionInt(wxIMAGE_OPTION_RESOLUTION); | |
2993 | } | |
2994 | else // no resolution options specified | |
2995 | { | |
2996 | *x = | |
2997 | *y = 0; | |
2998 | ||
2999 | return wxIMAGE_RESOLUTION_NONE; | |
3000 | } | |
3001 | ||
3002 | // get the resolution unit too | |
3003 | int resUnit = image.GetOptionInt(wxIMAGE_OPTION_RESOLUTIONUNIT); | |
3004 | if ( !resUnit ) | |
3005 | { | |
3006 | // this is the default | |
3007 | resUnit = wxIMAGE_RESOLUTION_INCHES; | |
3008 | } | |
3009 | ||
3010 | return (wxImageResolution)resUnit; | |
3011 | } | |
3012 | ||
487659e0 VZ |
3013 | // ---------------------------------------------------------------------------- |
3014 | // image histogram stuff | |
3015 | // ---------------------------------------------------------------------------- | |
3016 | ||
3017 | bool | |
3018 | wxImageHistogram::FindFirstUnusedColour(unsigned char *r, | |
3019 | unsigned char *g, | |
3020 | unsigned char *b, | |
3021 | unsigned char r2, | |
3022 | unsigned char b2, | |
3023 | unsigned char g2) const | |
3024 | { | |
3025 | unsigned long key = MakeKey(r2, g2, b2); | |
3026 | ||
3027 | while ( find(key) != end() ) | |
3028 | { | |
3029 | // color already used | |
3030 | r2++; | |
3031 | if ( r2 >= 255 ) | |
3032 | { | |
3033 | r2 = 0; | |
3034 | g2++; | |
3035 | if ( g2 >= 255 ) | |
3036 | { | |
3037 | g2 = 0; | |
3038 | b2++; | |
3039 | if ( b2 >= 255 ) | |
3040 | { | |
bc88f66f | 3041 | wxLogError(_("No unused colour in image.") ); |
70cd62e9 | 3042 | return false; |
487659e0 VZ |
3043 | } |
3044 | } | |
3045 | } | |
3046 | ||
3047 | key = MakeKey(r2, g2, b2); | |
3048 | } | |
3049 | ||
3050 | if ( r ) | |
3051 | *r = r2; | |
3052 | if ( g ) | |
3053 | *g = g2; | |
3054 | if ( b ) | |
3055 | *b = b2; | |
3056 | ||
70cd62e9 | 3057 | return true; |
487659e0 VZ |
3058 | } |
3059 | ||
3060 | bool | |
3061 | wxImage::FindFirstUnusedColour(unsigned char *r, | |
3062 | unsigned char *g, | |
3063 | unsigned char *b, | |
3064 | unsigned char r2, | |
3065 | unsigned char b2, | |
3066 | unsigned char g2) const | |
3067 | { | |
3068 | wxImageHistogram histogram; | |
3069 | ||
3070 | ComputeHistogram(histogram); | |
3071 | ||
3072 | return histogram.FindFirstUnusedColour(r, g, b, r2, g2, b2); | |
3073 | } | |
3074 | ||
3075 | ||
c9d01afd | 3076 | |
89d00456 GRG |
3077 | // GRG, Dic/99 |
3078 | // Counts and returns the number of different colours. Optionally stops | |
cc9f7d79 GRG |
3079 | // when it exceeds 'stopafter' different colours. This is useful, for |
3080 | // example, to see if the image can be saved as 8-bit (256 colour or | |
3081 | // less, in this case it would be invoked as CountColours(256)). Default | |
3082 | // value for stopafter is -1 (don't care). | |
89d00456 | 3083 | // |
e0a76d8d | 3084 | unsigned long wxImage::CountColours( unsigned long stopafter ) const |
89d00456 GRG |
3085 | { |
3086 | wxHashTable h; | |
ad30de59 | 3087 | wxObject dummy; |
33ac7e6f | 3088 | unsigned char r, g, b; |
eeca3a46 | 3089 | unsigned char *p; |
89d00456 GRG |
3090 | unsigned long size, nentries, key; |
3091 | ||
3092 | p = GetData(); | |
3093 | size = GetWidth() * GetHeight(); | |
3094 | nentries = 0; | |
3095 | ||
cc9f7d79 | 3096 | for (unsigned long j = 0; (j < size) && (nentries <= stopafter) ; j++) |
89d00456 GRG |
3097 | { |
3098 | r = *(p++); | |
3099 | g = *(p++); | |
3100 | b = *(p++); | |
487659e0 | 3101 | key = wxImageHistogram::MakeKey(r, g, b); |
89d00456 | 3102 | |
ad30de59 | 3103 | if (h.Get(key) == NULL) |
89d00456 | 3104 | { |
ad30de59 | 3105 | h.Put(key, &dummy); |
89d00456 GRG |
3106 | nentries++; |
3107 | } | |
3108 | } | |
3109 | ||
89d00456 GRG |
3110 | return nentries; |
3111 | } | |
3112 | ||
3113 | ||
e0a76d8d | 3114 | unsigned long wxImage::ComputeHistogram( wxImageHistogram &h ) const |
c9d01afd | 3115 | { |
487659e0 VZ |
3116 | unsigned char *p = GetData(); |
3117 | unsigned long nentries = 0; | |
952ae1e8 VS |
3118 | |
3119 | h.clear(); | |
c9d01afd | 3120 | |
487659e0 | 3121 | const unsigned long size = GetWidth() * GetHeight(); |
c9d01afd | 3122 | |
487659e0 VZ |
3123 | unsigned char r, g, b; |
3124 | for ( unsigned long n = 0; n < size; n++ ) | |
c9d01afd | 3125 | { |
487659e0 VZ |
3126 | r = *p++; |
3127 | g = *p++; | |
3128 | b = *p++; | |
3129 | ||
3130 | wxImageHistogramEntry& entry = h[wxImageHistogram::MakeKey(r, g, b)]; | |
c9d01afd | 3131 | |
952ae1e8 VS |
3132 | if ( entry.value++ == 0 ) |
3133 | entry.index = nentries++; | |
c9d01afd GRG |
3134 | } |
3135 | ||
3136 | return nentries; | |
3137 | } | |
3138 | ||
7a632f10 JS |
3139 | /* |
3140 | * Rotation code by Carlos Moreno | |
3141 | */ | |
3142 | ||
3fff3966 | 3143 | static const double wxROTATE_EPSILON = 1e-10; |
7a632f10 JS |
3144 | |
3145 | // Auxiliary function to rotate a point (x,y) with respect to point p0 | |
3146 | // make it inline and use a straight return to facilitate optimization | |
3147 | // also, the function receives the sine and cosine of the angle to avoid | |
3148 | // repeating the time-consuming calls to these functions -- sin/cos can | |
3149 | // be computed and stored in the calling function. | |
3150 | ||
3fff3966 VZ |
3151 | static inline wxRealPoint |
3152 | wxRotatePoint(const wxRealPoint& p, double cos_angle, double sin_angle, | |
3153 | const wxRealPoint& p0) | |
7a632f10 | 3154 | { |
3fff3966 VZ |
3155 | return wxRealPoint(p0.x + (p.x - p0.x) * cos_angle - (p.y - p0.y) * sin_angle, |
3156 | p0.y + (p.y - p0.y) * cos_angle + (p.x - p0.x) * sin_angle); | |
7a632f10 JS |
3157 | } |
3158 | ||
3fff3966 VZ |
3159 | static inline wxRealPoint |
3160 | wxRotatePoint(double x, double y, double cos_angle, double sin_angle, | |
3161 | const wxRealPoint & p0) | |
7a632f10 | 3162 | { |
3fff3966 | 3163 | return wxRotatePoint (wxRealPoint(x,y), cos_angle, sin_angle, p0); |
7a632f10 JS |
3164 | } |
3165 | ||
e26d5213 VZ |
3166 | wxImage wxImage::Rotate(double angle, |
3167 | const wxPoint& centre_of_rotation, | |
3168 | bool interpolating, | |
3169 | wxPoint *offset_after_rotation) const | |
7a632f10 | 3170 | { |
e26d5213 VZ |
3171 | // screen coordinates are a mirror image of "real" coordinates |
3172 | angle = -angle; | |
3173 | ||
3174 | const bool has_alpha = HasAlpha(); | |
3175 | ||
3176 | const int w = GetWidth(); | |
3177 | const int h = GetHeight(); | |
b713f891 | 3178 | |
e26d5213 | 3179 | int i; |
7a632f10 | 3180 | |
ad30de59 | 3181 | // Create pointer-based array to accelerate access to wxImage's data |
e26d5213 | 3182 | unsigned char ** data = new unsigned char * [h]; |
b5c91ac6 | 3183 | data[0] = GetData(); |
e26d5213 VZ |
3184 | for (i = 1; i < h; i++) |
3185 | data[i] = data[i - 1] + (3 * w); | |
7a632f10 | 3186 | |
b713f891 | 3187 | // Same for alpha channel |
6408deed RR |
3188 | unsigned char ** alpha = NULL; |
3189 | if (has_alpha) | |
3190 | { | |
e26d5213 | 3191 | alpha = new unsigned char * [h]; |
6408deed | 3192 | alpha[0] = GetAlpha(); |
e26d5213 VZ |
3193 | for (i = 1; i < h; i++) |
3194 | alpha[i] = alpha[i - 1] + w; | |
6408deed RR |
3195 | } |
3196 | ||
b5c91ac6 | 3197 | // precompute coefficients for rotation formula |
7a632f10 JS |
3198 | const double cos_angle = cos(angle); |
3199 | const double sin_angle = sin(angle); | |
3200 | ||
ad30de59 GRG |
3201 | // Create new Image to store the result |
3202 | // First, find rectangle that covers the rotated image; to do that, | |
3203 | // rotate the four corners | |
7a632f10 | 3204 | |
b5c91ac6 | 3205 | const wxRealPoint p0(centre_of_rotation.x, centre_of_rotation.y); |
7a632f10 | 3206 | |
3fff3966 | 3207 | wxRealPoint p1 = wxRotatePoint (0, 0, cos_angle, sin_angle, p0); |
e26d5213 VZ |
3208 | wxRealPoint p2 = wxRotatePoint (0, h, cos_angle, sin_angle, p0); |
3209 | wxRealPoint p3 = wxRotatePoint (w, 0, cos_angle, sin_angle, p0); | |
3210 | wxRealPoint p4 = wxRotatePoint (w, h, cos_angle, sin_angle, p0); | |
7a632f10 | 3211 | |
4e115ed2 VZ |
3212 | int x1a = (int) floor (wxMin (wxMin(p1.x, p2.x), wxMin(p3.x, p4.x))); |
3213 | int y1a = (int) floor (wxMin (wxMin(p1.y, p2.y), wxMin(p3.y, p4.y))); | |
3214 | int x2a = (int) ceil (wxMax (wxMax(p1.x, p2.x), wxMax(p3.x, p4.x))); | |
3215 | int y2a = (int) ceil (wxMax (wxMax(p1.y, p2.y), wxMax(p3.y, p4.y))); | |
7a632f10 | 3216 | |
6408deed | 3217 | // Create rotated image |
4e115ed2 | 3218 | wxImage rotated (x2a - x1a + 1, y2a - y1a + 1, false); |
6408deed RR |
3219 | // With alpha channel |
3220 | if (has_alpha) | |
3221 | rotated.SetAlpha(); | |
7a632f10 JS |
3222 | |
3223 | if (offset_after_rotation != NULL) | |
3224 | { | |
4e115ed2 | 3225 | *offset_after_rotation = wxPoint (x1a, y1a); |
7a632f10 JS |
3226 | } |
3227 | ||
e26d5213 VZ |
3228 | // the rotated (destination) image is always accessed sequentially via this |
3229 | // pointer, there is no need for pointer-based arrays here | |
3230 | unsigned char *dst = rotated.GetData(); | |
b713f891 | 3231 | |
e26d5213 | 3232 | unsigned char *alpha_dst = has_alpha ? rotated.GetAlpha() : NULL; |
7a632f10 | 3233 | |
e26d5213 VZ |
3234 | // if the original image has a mask, use its RGB values as the blank pixel, |
3235 | // else, fall back to default (black). | |
b5c91ac6 GRG |
3236 | unsigned char blank_r = 0; |
3237 | unsigned char blank_g = 0; | |
3238 | unsigned char blank_b = 0; | |
ad30de59 GRG |
3239 | |
3240 | if (HasMask()) | |
3241 | { | |
b5c91ac6 GRG |
3242 | blank_r = GetMaskRed(); |
3243 | blank_g = GetMaskGreen(); | |
3244 | blank_b = GetMaskBlue(); | |
3245 | rotated.SetMaskColour( blank_r, blank_g, blank_b ); | |
ad30de59 GRG |
3246 | } |
3247 | ||
3248 | // Now, for each point of the rotated image, find where it came from, by | |
3249 | // performing an inverse rotation (a rotation of -angle) and getting the | |
3250 | // pixel at those coordinates | |
3251 | ||
e26d5213 VZ |
3252 | const int rH = rotated.GetHeight(); |
3253 | const int rW = rotated.GetWidth(); | |
7a632f10 | 3254 | |
e26d5213 VZ |
3255 | // do the (interpolating) test outside of the loops, so that it is done |
3256 | // only once, instead of repeating it for each pixel. | |
b5c91ac6 | 3257 | if (interpolating) |
7a632f10 | 3258 | { |
e26d5213 | 3259 | for (int y = 0; y < rH; y++) |
7a632f10 | 3260 | { |
e26d5213 | 3261 | for (int x = 0; x < rW; x++) |
7a632f10 | 3262 | { |
3fff3966 | 3263 | wxRealPoint src = wxRotatePoint (x + x1a, y + y1a, cos_angle, -sin_angle, p0); |
b5c91ac6 | 3264 | |
e26d5213 VZ |
3265 | if (-0.25 < src.x && src.x < w - 0.75 && |
3266 | -0.25 < src.y && src.y < h - 0.75) | |
7a632f10 | 3267 | { |
ad30de59 GRG |
3268 | // interpolate using the 4 enclosing grid-points. Those |
3269 | // points can be obtained using floor and ceiling of the | |
3270 | // exact coordinates of the point | |
f2506310 JS |
3271 | int x1, y1, x2, y2; |
3272 | ||
e26d5213 | 3273 | if (0 < src.x && src.x < w - 1) |
f2506310 | 3274 | { |
3fff3966 VZ |
3275 | x1 = wxRound(floor(src.x)); |
3276 | x2 = wxRound(ceil(src.x)); | |
f2506310 JS |
3277 | } |
3278 | else // else means that x is near one of the borders (0 or width-1) | |
3279 | { | |
3fff3966 | 3280 | x1 = x2 = wxRound (src.x); |
f2506310 JS |
3281 | } |
3282 | ||
e26d5213 | 3283 | if (0 < src.y && src.y < h - 1) |
f2506310 | 3284 | { |
3fff3966 VZ |
3285 | y1 = wxRound(floor(src.y)); |
3286 | y2 = wxRound(ceil(src.y)); | |
f2506310 JS |
3287 | } |
3288 | else | |
3289 | { | |
3fff3966 | 3290 | y1 = y2 = wxRound (src.y); |
f2506310 | 3291 | } |
7a632f10 | 3292 | |
ad30de59 GRG |
3293 | // get four points and the distances (square of the distance, |
3294 | // for efficiency reasons) for the interpolation formula | |
b5c91ac6 GRG |
3295 | |
3296 | // GRG: Do not calculate the points until they are | |
3297 | // really needed -- this way we can calculate | |
3298 | // just one, instead of four, if d1, d2, d3 | |
3fff3966 | 3299 | // or d4 are < wxROTATE_EPSILON |
7a632f10 JS |
3300 | |
3301 | const double d1 = (src.x - x1) * (src.x - x1) + (src.y - y1) * (src.y - y1); | |
3302 | const double d2 = (src.x - x2) * (src.x - x2) + (src.y - y1) * (src.y - y1); | |
3303 | const double d3 = (src.x - x2) * (src.x - x2) + (src.y - y2) * (src.y - y2); | |
3304 | const double d4 = (src.x - x1) * (src.x - x1) + (src.y - y2) * (src.y - y2); | |
3305 | ||
ad30de59 GRG |
3306 | // Now interpolate as a weighted average of the four surrounding |
3307 | // points, where the weights are the distances to each of those points | |
7a632f10 | 3308 | |
ad30de59 GRG |
3309 | // If the point is exactly at one point of the grid of the source |
3310 | // image, then don't interpolate -- just assign the pixel | |
7a632f10 | 3311 | |
3fff3966 VZ |
3312 | // d1,d2,d3,d4 are positive -- no need for abs() |
3313 | if (d1 < wxROTATE_EPSILON) | |
7a632f10 | 3314 | { |
b5c91ac6 GRG |
3315 | unsigned char *p = data[y1] + (3 * x1); |
3316 | *(dst++) = *(p++); | |
3317 | *(dst++) = *(p++); | |
6408deed | 3318 | *(dst++) = *p; |
b713f891 | 3319 | |
6408deed | 3320 | if (has_alpha) |
4e115ed2 | 3321 | *(alpha_dst++) = *(alpha[y1] + x1); |
7a632f10 | 3322 | } |
3fff3966 | 3323 | else if (d2 < wxROTATE_EPSILON) |
7a632f10 | 3324 | { |
b5c91ac6 GRG |
3325 | unsigned char *p = data[y1] + (3 * x2); |
3326 | *(dst++) = *(p++); | |
3327 | *(dst++) = *(p++); | |
6408deed | 3328 | *(dst++) = *p; |
b713f891 | 3329 | |
6408deed | 3330 | if (has_alpha) |
4e115ed2 | 3331 | *(alpha_dst++) = *(alpha[y1] + x2); |
7a632f10 | 3332 | } |
3fff3966 | 3333 | else if (d3 < wxROTATE_EPSILON) |
7a632f10 | 3334 | { |
b5c91ac6 GRG |
3335 | unsigned char *p = data[y2] + (3 * x2); |
3336 | *(dst++) = *(p++); | |
3337 | *(dst++) = *(p++); | |
6408deed | 3338 | *(dst++) = *p; |
b713f891 | 3339 | |
6408deed | 3340 | if (has_alpha) |
4e115ed2 | 3341 | *(alpha_dst++) = *(alpha[y2] + x2); |
7a632f10 | 3342 | } |
3fff3966 | 3343 | else if (d4 < wxROTATE_EPSILON) |
7a632f10 | 3344 | { |
b5c91ac6 GRG |
3345 | unsigned char *p = data[y2] + (3 * x1); |
3346 | *(dst++) = *(p++); | |
3347 | *(dst++) = *(p++); | |
6408deed | 3348 | *(dst++) = *p; |
b713f891 | 3349 | |
6408deed | 3350 | if (has_alpha) |
4e115ed2 | 3351 | *(alpha_dst++) = *(alpha[y2] + x1); |
7a632f10 JS |
3352 | } |
3353 | else | |
3354 | { | |
06b466c7 | 3355 | // weights for the weighted average are proportional to the inverse of the distance |
b5c91ac6 GRG |
3356 | unsigned char *v1 = data[y1] + (3 * x1); |
3357 | unsigned char *v2 = data[y1] + (3 * x2); | |
3358 | unsigned char *v3 = data[y2] + (3 * x2); | |
3359 | unsigned char *v4 = data[y2] + (3 * x1); | |
3360 | ||
06b466c7 VZ |
3361 | const double w1 = 1/d1, w2 = 1/d2, w3 = 1/d3, w4 = 1/d4; |
3362 | ||
b5c91ac6 GRG |
3363 | // GRG: Unrolled. |
3364 | ||
3365 | *(dst++) = (unsigned char) | |
3366 | ( (w1 * *(v1++) + w2 * *(v2++) + | |
3367 | w3 * *(v3++) + w4 * *(v4++)) / | |
3368 | (w1 + w2 + w3 + w4) ); | |
3369 | *(dst++) = (unsigned char) | |
3370 | ( (w1 * *(v1++) + w2 * *(v2++) + | |
3371 | w3 * *(v3++) + w4 * *(v4++)) / | |
3372 | (w1 + w2 + w3 + w4) ); | |
3373 | *(dst++) = (unsigned char) | |
999836aa VZ |
3374 | ( (w1 * *v1 + w2 * *v2 + |
3375 | w3 * *v3 + w4 * *v4) / | |
b5c91ac6 | 3376 | (w1 + w2 + w3 + w4) ); |
b713f891 | 3377 | |
6408deed RR |
3378 | if (has_alpha) |
3379 | { | |
4e115ed2 VZ |
3380 | v1 = alpha[y1] + (x1); |
3381 | v2 = alpha[y1] + (x2); | |
3382 | v3 = alpha[y2] + (x2); | |
3383 | v4 = alpha[y2] + (x1); | |
6408deed RR |
3384 | |
3385 | *(alpha_dst++) = (unsigned char) | |
3386 | ( (w1 * *v1 + w2 * *v2 + | |
3387 | w3 * *v3 + w4 * *v4) / | |
3388 | (w1 + w2 + w3 + w4) ); | |
3389 | } | |
7a632f10 JS |
3390 | } |
3391 | } | |
3392 | else | |
3393 | { | |
b5c91ac6 GRG |
3394 | *(dst++) = blank_r; |
3395 | *(dst++) = blank_g; | |
3396 | *(dst++) = blank_b; | |
b713f891 | 3397 | |
6408deed RR |
3398 | if (has_alpha) |
3399 | *(alpha_dst++) = 0; | |
7a632f10 JS |
3400 | } |
3401 | } | |
b5c91ac6 GRG |
3402 | } |
3403 | } | |
e26d5213 | 3404 | else // not interpolating |
b5c91ac6 | 3405 | { |
e26d5213 | 3406 | for (int y = 0; y < rH; y++) |
b5c91ac6 | 3407 | { |
e26d5213 | 3408 | for (int x = 0; x < rW; x++) |
7a632f10 | 3409 | { |
3fff3966 | 3410 | wxRealPoint src = wxRotatePoint (x + x1a, y + y1a, cos_angle, -sin_angle, p0); |
b5c91ac6 | 3411 | |
3fff3966 VZ |
3412 | const int xs = wxRound (src.x); // wxRound rounds to the |
3413 | const int ys = wxRound (src.y); // closest integer | |
7a632f10 | 3414 | |
e26d5213 | 3415 | if (0 <= xs && xs < w && 0 <= ys && ys < h) |
7a632f10 | 3416 | { |
b5c91ac6 GRG |
3417 | unsigned char *p = data[ys] + (3 * xs); |
3418 | *(dst++) = *(p++); | |
3419 | *(dst++) = *(p++); | |
999836aa | 3420 | *(dst++) = *p; |
b713f891 | 3421 | |
6408deed | 3422 | if (has_alpha) |
4e115ed2 | 3423 | *(alpha_dst++) = *(alpha[ys] + (xs)); |
7a632f10 JS |
3424 | } |
3425 | else | |
3426 | { | |
b5c91ac6 GRG |
3427 | *(dst++) = blank_r; |
3428 | *(dst++) = blank_g; | |
3429 | *(dst++) = blank_b; | |
b713f891 | 3430 | |
6408deed RR |
3431 | if (has_alpha) |
3432 | *(alpha_dst++) = 255; | |
7a632f10 JS |
3433 | } |
3434 | } | |
3435 | } | |
3436 | } | |
3437 | ||
4aff28fc | 3438 | delete [] data; |
e26d5213 | 3439 | delete [] alpha; |
4aff28fc | 3440 | |
7a632f10 JS |
3441 | return rotated; |
3442 | } | |
c9d01afd | 3443 | |
ef8f37e0 VS |
3444 | |
3445 | ||
3446 | ||
3447 | ||
3448 | // A module to allow wxImage initialization/cleanup | |
3449 | // without calling these functions from app.cpp or from | |
3450 | // the user's application. | |
3451 | ||
3452 | class wxImageModule: public wxModule | |
3453 | { | |
3454 | DECLARE_DYNAMIC_CLASS(wxImageModule) | |
3455 | public: | |
3456 | wxImageModule() {} | |
47b378bd VS |
3457 | bool OnInit() { wxImage::InitStandardHandlers(); return true; } |
3458 | void OnExit() { wxImage::CleanUpHandlers(); } | |
ef8f37e0 VS |
3459 | }; |
3460 | ||
3461 | IMPLEMENT_DYNAMIC_CLASS(wxImageModule, wxModule) | |
3462 | ||
3463 | ||
c96ea657 | 3464 | #endif // wxUSE_IMAGE |