]> git.saurik.com Git - wxWidgets.git/blame - samples/image/image.cpp
implemented alpha support for raw bitmaps under Mac
[wxWidgets.git] / samples / image / image.cpp
CommitLineData
01111366
RR
1/*
2 * Program: image
1d5b7a0b 3 *
01111366
RR
4 * Author: Robert Roebling
5 *
6 * Copyright: (C) 1998, Robert Roebling
7 *
8 */
9
3d05544e
JS
10// For compilers that support precompilation, includes "wx/wx.h".
11#include "wx/wxprec.h"
12
13#ifdef __BORLANDC__
14#pragma hdrstop
15#endif
16
17#ifndef WX_PRECOMP
01111366 18#include "wx/wx.h"
3d05544e
JS
19#endif
20
01111366 21#include "wx/image.h"
a23fd0e1 22#include "wx/file.h"
a8d4e3ac
VS
23#include "wx/mstream.h"
24#include "wx/wfstream.h"
1971d23c 25#include "wx/quantize.h"
a23fd0e1 26
da9df1f5
VZ
27#if wxUSE_CLIPBOARD
28 #include "wx/dataobj.h"
29 #include "wx/clipbrd.h"
30#endif // wxUSE_CLIPBOARD
31
dc1dbfc6 32#include "smile.xbm"
d2aa73a8
VZ
33
34#if !defined(__WINDOWS__) || wxUSE_XPM_IN_MSW
35 #include "smile.xpm"
36#endif
dc1dbfc6 37
9b24b388
VS
38#if defined(__WXMSW__) || defined(__WXMAC__)
39 #include "wx/rawbmp.h"
40 #define wxHAVE_RAW_BITMAP
c698eae5 41#endif
a8d4e3ac 42
01111366
RR
43// derived classes
44
45class MyFrame;
46class MyApp;
47
48// MyCanvas
49
50class MyCanvas: public wxScrolledWindow
51{
1d5b7a0b 52public:
51b07644 53 MyCanvas() {}
01111366 54 MyCanvas( wxWindow *parent, wxWindowID, const wxPoint &pos, const wxSize &size );
1d5b7a0b 55 ~MyCanvas();
01111366 56 void OnPaint( wxPaintEvent &event );
9390a202 57 void CreateAntiAliasedBitmap();
1d5b7a0b 58
e1929140
RR
59 wxBitmap *my_horse_png;
60 wxBitmap *my_horse_jpeg;
61 wxBitmap *my_horse_gif;
ca26177c 62 wxBitmap *my_horse_bmp;
51b07644 63 wxBitmap *my_horse_bmp2;
cbd4be25 64 wxBitmap *my_horse_pcx;
6319afe3 65 wxBitmap *my_horse_pnm;
60a41aee 66 wxBitmap *my_horse_tiff;
9d8bdf2d 67 wxBitmap *my_horse_xpm;
bf504f98
VS
68 wxBitmap *my_horse_ico32;
69 wxBitmap *my_horse_ico16;
70 wxBitmap *my_horse_ico;
71 wxBitmap *my_horse_cur;
2b5f62a0 72 wxBitmap *my_horse_ani;
51b07644 73
dc1dbfc6 74 wxBitmap *my_smile_xbm;
e8fdc264 75 wxBitmap *my_square;
9390a202 76 wxBitmap *my_anti;
1d5b7a0b 77
bf504f98 78 int xH, yH ;
2b5f62a0 79 int m_ani_images ;
bf504f98 80
bea56879
VZ
81protected:
82 wxBitmap m_bmpSmileXpm;
83 wxIcon m_iconSmileXpm;
84
60a41aee 85private:
1d5b7a0b
VZ
86 DECLARE_DYNAMIC_CLASS(MyCanvas)
87 DECLARE_EVENT_TABLE()
01111366
RR
88};
89
18134a1c
VZ
90
91const int nChoices = 8 ;
92static const wxString bppchoices[nChoices] =
93{
51b07644
VZ
94 _T("1 bpp color"),
95 _T("1 bpp B&W"),
96 _T("4 bpp color"),
97 _T("8 bpp color"),
98 _T("8 bpp greyscale"),
99 _T("8 bpp red"),
100 _T("8 bpp own palette"),
101 _T("24 bpp")
18134a1c
VZ
102};
103
104static const int bppvalues[nChoices] =
105{
106 wxBMP_1BPP,
107 wxBMP_1BPP_BW,
108 wxBMP_4BPP,
109 wxBMP_8BPP,
110 wxBMP_8BPP_GREY,
111 wxBMP_8BPP_RED,
112 wxBMP_8BPP_PALETTE,
113 wxBMP_24BPP
114};
115
01111366
RR
116// MyFrame
117
18134a1c 118
01111366
RR
119class MyFrame: public wxFrame
120{
1d5b7a0b
VZ
121public:
122 MyFrame();
01111366 123
01111366 124 void OnAbout( wxCommandEvent &event );
ab0f0386 125 void OnNewFrame( wxCommandEvent &event );
b3f04dc2
VZ
126#ifdef wxHAVE_RAW_BITMAP
127 void OnTestRawBitmap( wxCommandEvent &event );
128#endif // wxHAVE_RAW_BITMAP
01111366 129 void OnQuit( wxCommandEvent &event );
1d5b7a0b 130
dd38c875 131#if wxUSE_CLIPBOARD
da9df1f5
VZ
132 void OnCopy(wxCommandEvent& event);
133 void OnPaste(wxCommandEvent& event);
134#endif // wxUSE_CLIPBOARD
135
01111366 136 MyCanvas *m_canvas;
1d5b7a0b 137
60a41aee 138private:
1d5b7a0b
VZ
139 DECLARE_DYNAMIC_CLASS(MyFrame)
140 DECLARE_EVENT_TABLE()
01111366
RR
141};
142
ab0f0386
VZ
143class MyImageFrame : public wxFrame
144{
145public:
146 MyImageFrame(wxFrame *parent, const wxBitmap& bitmap)
1971d23c 147 : wxFrame(parent, -1, _T("Double click to save"),
ab0f0386 148 wxDefaultPosition, wxDefaultSize,
40c79fab 149 wxCAPTION | wxSYSTEM_MENU | wxCLOSE_BOX),
1971d23c 150 m_bitmap(bitmap)
ab0f0386
VZ
151 {
152 SetClientSize(bitmap.GetWidth(), bitmap.GetHeight());
153 }
154
0c543b7a
VZ
155 void OnEraseBackground(wxEraseEvent& WXUNUSED(event))
156 {
157 // do nothing here to be able to see how transparent images are shown
158 }
159
ab0f0386
VZ
160 void OnPaint(wxPaintEvent& WXUNUSED(event))
161 {
162 wxPaintDC dc( this );
0c543b7a 163 dc.DrawBitmap( m_bitmap, 0, 0, TRUE /* use mask */ );
ab0f0386
VZ
164 }
165
c5c843e0 166 void OnSave(wxMouseEvent& WXUNUSED(event))
1971d23c 167 {
368d59f0 168 wxImage image = m_bitmap.ConvertToImage();
1971d23c 169
51b07644
VZ
170 int bppselection = wxGetSingleChoiceIndex(_T("Set BMP BPP"),
171 _T("Set BMP BPP"),
18134a1c 172 nChoices,
1971d23c
VZ
173 bppchoices,
174 this);
175 if ( bppselection == -1 )
176 {
177 // cancelled
178 return;
179 }
180
fd94e8aa 181 image.SetOption(wxIMAGE_OPTION_BMP_FORMAT, bppvalues[bppselection]);
1971d23c
VZ
182
183 wxString deffilename = bppchoices[bppselection];
4693b20c
MB
184 deffilename.Replace(wxT(" "), wxT("_"));
185 deffilename += wxT(".bmp");
186 wxString savefilename = wxFileSelector( wxT("Save Image"),
187 wxT(""),
1971d23c 188 deffilename,
4693b20c
MB
189 (const wxChar *)NULL,
190 wxT("BMP files (*.bmp)|*.bmp|")
191 wxT("PNG files (*.png)|*.png|")
192 wxT("JPEG files (*.jpg)|*.jpg|")
193 wxT("GIF files (*.gif)|*.gif|")
194 wxT("TIFF files (*.tif)|*.tif|")
bf504f98
VS
195 wxT("PCX files (*.pcx)|*.pcx|")
196 wxT("ICO files (*.ico)|*.ico|")
197 wxT("CUR files (*.cur)|*.cur"),
1971d23c
VZ
198 wxSAVE);
199
200 if ( savefilename.empty() )
201 return;
202
fd94e8aa 203 if ( image.GetOptionInt(wxIMAGE_OPTION_BMP_FORMAT) == wxBMP_8BPP_PALETTE )
1971d23c
VZ
204 {
205 unsigned char *cmap = new unsigned char [256];
206 for ( int i = 0; i < 256; i++ )
207 cmap[i] = i;
208 image.SetPalette(wxPalette(256, cmap, cmap, cmap));
209
210 delete cmap;
211 }
212
45647dcf 213 bool loaded;
1971d23c
VZ
214 wxString extension = savefilename.AfterLast('.').Lower();
215
51b07644 216 if (extension == _T("cur"))
45647dcf 217 {
51b07644
VZ
218 image.Rescale(32,32);
219 image.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_X, 0);
45647dcf
VS
220 image.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y, 0);
221 // This shows how you can save an image with explicitly
222 // specified image format:
223 loaded = image.SaveFile(savefilename, wxBITMAP_TYPE_CUR);
224 }
51b07644 225 else
45647dcf
VS
226 {
227 // This one guesses image format from filename extension
228 // (it may fail if the extension is not recognized):
229 loaded = image.SaveFile(savefilename);
230 }
51b07644 231
45647dcf 232 if ( !loaded )
51b07644
VZ
233 wxMessageBox(_T("No handler for this file type."),
234 _T("File was not saved"),
1971d23c
VZ
235 wxOK|wxCENTRE, this);
236 }
237
ab0f0386
VZ
238private:
239 wxBitmap m_bitmap;
240
241 DECLARE_EVENT_TABLE()
242};
243
b3f04dc2
VZ
244#ifdef wxHAVE_RAW_BITMAP
245
246#include "wx/rawbmp.h"
247
248class MyRawBitmapFrame : public wxFrame
249{
250public:
251 enum
252 {
253 BORDER = 15,
254 SIZE = 150,
255 REAL_SIZE = SIZE - 2*BORDER
256 };
257
258 MyRawBitmapFrame(wxFrame *parent)
259 : wxFrame(parent, -1, _T("Raw bitmaps (how exciting)")),
260 m_bitmap(SIZE, SIZE, 32)
261 {
262 SetClientSize(SIZE, SIZE);
263
a452af5e
VZ
264 wxAlphaPixelData data(m_bitmap,
265 wxPoint(BORDER, BORDER),
266 wxSize(REAL_SIZE, REAL_SIZE));
b3f04dc2
VZ
267 if ( !data )
268 {
269 wxLogError(_T("Failed to gain raw access to bitmap data"));
270 return;
271 }
272
10b41b53
VZ
273 data.UseAlpha();
274
1d2f48b6 275 wxAlphaPixelData::Iterator p(data);
b3f04dc2 276
b3f04dc2
VZ
277 for ( int y = 0; y < REAL_SIZE; ++y )
278 {
1d2f48b6 279 wxAlphaPixelData::Iterator rowStart = p;
b3f04dc2
VZ
280
281 int r = y < REAL_SIZE/3 ? 255 : 0,
282 g = (REAL_SIZE/3 <= y) && (y < 2*(REAL_SIZE/3)) ? 255 : 0,
283 b = 2*(REAL_SIZE/3) <= y ? 255 : 0;
284
285 for ( int x = 0; x < REAL_SIZE; ++x )
286 {
287 p.Red() = r;
288 p.Green() = g;
289 p.Blue() = b;
05a07871
VZ
290 p.Alpha() =
291 (wxAlphaPixelFormat::ChannelType)((x*255.)/REAL_SIZE);
b3f04dc2
VZ
292
293 ++p; // same as p.OffsetX(1)
294 }
295
296 p = rowStart;
1d2f48b6 297 p.OffsetY(data, 1);
b3f04dc2
VZ
298 }
299 }
300
301 void OnPaint(wxPaintEvent& WXUNUSED(event))
302 {
303 wxPaintDC dc( this );
304 dc.DrawText(_T("This is alpha and raw bitmap test"), 0, BORDER);
305 dc.DrawText(_T("This is alpha and raw bitmap test"), 0, SIZE/2 - BORDER);
306 dc.DrawText(_T("This is alpha and raw bitmap test"), 0, SIZE - 2*BORDER);
307 dc.DrawBitmap( m_bitmap, 0, 0, TRUE /* use mask */ );
308 }
309
310private:
311 wxBitmap m_bitmap;
312
313 DECLARE_EVENT_TABLE()
314};
315
316#endif // wxHAVE_RAW_BITMAP
317
01111366
RR
318// MyApp
319
320class MyApp: public wxApp
321{
1d5b7a0b
VZ
322public:
323 virtual bool OnInit();
01111366
RR
324};
325
326// main program
327
328IMPLEMENT_APP(MyApp)
329
330// MyCanvas
331
332IMPLEMENT_DYNAMIC_CLASS(MyCanvas, wxScrolledWindow)
333
ab0f0386 334BEGIN_EVENT_TABLE(MyImageFrame, wxFrame)
0c543b7a
VZ
335 EVT_ERASE_BACKGROUND(MyImageFrame::OnEraseBackground)
336 EVT_PAINT(MyImageFrame::OnPaint)
337 EVT_LEFT_DCLICK(MyImageFrame::OnSave)
ab0f0386
VZ
338END_EVENT_TABLE()
339
b3f04dc2
VZ
340#ifdef wxHAVE_RAW_BITMAP
341
342BEGIN_EVENT_TABLE(MyRawBitmapFrame, wxFrame)
343 EVT_PAINT(MyRawBitmapFrame::OnPaint)
344END_EVENT_TABLE()
345
346#endif // wxHAVE_RAW_BITMAP
347
1d5b7a0b
VZ
348BEGIN_EVENT_TABLE(MyCanvas, wxScrolledWindow)
349 EVT_PAINT(MyCanvas::OnPaint)
01111366
RR
350END_EVENT_TABLE()
351
acbd13a3 352MyCanvas::MyCanvas( wxWindow *parent, wxWindowID id,
1d5b7a0b 353 const wxPoint &pos, const wxSize &size )
81278df2
VZ
354 : wxScrolledWindow( parent, id, pos, size, wxSUNKEN_BORDER )
355#if !defined(__WINDOWS__) || wxUSE_XPM_IN_MSW
356 , m_bmpSmileXpm((const char **) smile_xpm)
357 , m_iconSmileXpm((const char **) smile_xpm)
358#endif
01111366 359{
60a41aee
RR
360 my_horse_png = (wxBitmap*) NULL;
361 my_horse_jpeg = (wxBitmap*) NULL;
362 my_horse_gif = (wxBitmap*) NULL;
363 my_horse_bmp = (wxBitmap*) NULL;
51b07644 364 my_horse_bmp2 = (wxBitmap*) NULL;
60a41aee
RR
365 my_horse_pcx = (wxBitmap*) NULL;
366 my_horse_pnm = (wxBitmap*) NULL;
367 my_horse_tiff = (wxBitmap*) NULL;
9d8bdf2d 368 my_horse_xpm = (wxBitmap*) NULL;
bf504f98
VS
369 my_horse_ico32 = (wxBitmap*) NULL;
370 my_horse_ico16 = (wxBitmap*) NULL;
371 my_horse_ico = (wxBitmap*) NULL;
372 my_horse_cur = (wxBitmap*) NULL;
2b5f62a0 373 my_horse_ani = (wxBitmap*) NULL;
bf504f98 374
dc1dbfc6 375 my_smile_xbm = (wxBitmap*) NULL;
60a41aee
RR
376 my_square = (wxBitmap*) NULL;
377 my_anti = (wxBitmap*) NULL;
378
2b5f62a0
VZ
379 m_ani_images = 0 ;
380
60a41aee
RR
381 SetBackgroundColour(* wxWHITE);
382
383 wxBitmap bitmap( 100, 100 );
384
385 wxMemoryDC dc;
386 dc.SelectObject( bitmap );
a60b1f5d 387 dc.SetBrush( wxBrush( wxT("orange"), wxSOLID ) );
cf3da716 388 dc.SetPen( *wxBLACK_PEN );
60a41aee 389 dc.DrawRectangle( 0, 0, 100, 100 );
cf3da716
RR
390 dc.SetBrush( *wxWHITE_BRUSH );
391 dc.DrawRectangle( 20, 20, 60, 60 );
60a41aee
RR
392 dc.SelectObject( wxNullBitmap );
393
394 // try to find the directory with our images
395 wxString dir;
4693b20c 396 if ( wxFile::Exists(wxT("./horse.png")) )
2b5f62a0 397 dir = wxT("./");
4693b20c 398 else if ( wxFile::Exists(wxT("../horse.png")) )
2b5f62a0 399 dir = wxT("../");
60a41aee 400 else
4693b20c 401 wxLogWarning(wxT("Can't find image files in either '.' or '..'!"));
60a41aee 402
a8d4e3ac 403 wxImage image = bitmap.ConvertToImage();
60a41aee 404
bea56879 405#if wxUSE_LIBPNG
51b07644 406 if ( !image.SaveFile( dir + _T("test.png"), wxBITMAP_TYPE_PNG ))
4693b20c 407 wxLogError(wxT("Can't save file"));
f6bcfd97 408
176fe5af 409 image.Destroy();
60a41aee 410
30ad0a14
VZ
411 if ( image.LoadFile( dir + _T("test.png") ) )
412 my_square = new wxBitmap( image );
f6bcfd97 413
176fe5af 414 image.Destroy();
cc977e5f 415
51b07644 416 if ( !image.LoadFile( dir + _T("horse.png")) )
4693b20c 417 wxLogError(wxT("Can't load PNG image"));
60a41aee 418 else
a8d4e3ac 419 my_horse_png = new wxBitmap( image );
bea56879 420#endif // wxUSE_LIBPNG
60a41aee 421
bea56879 422#if wxUSE_LIBJPEG
176fe5af 423 image.Destroy();
279ababf 424
51b07644 425 if ( !image.LoadFile( dir + _T("horse.jpg")) )
4693b20c 426 wxLogError(wxT("Can't load JPG image"));
60a41aee 427 else
9d8bdf2d 428 my_horse_jpeg = new wxBitmap( image );
bea56879 429#endif // wxUSE_LIBJPEG
6e47faf1
JS
430
431#if wxUSE_GIF
176fe5af 432 image.Destroy();
279ababf 433
2b5f62a0 434 if ( !image.LoadFile( dir + _T("horse.gif" )) )
4693b20c 435 wxLogError(wxT("Can't load GIF image"));
60a41aee 436 else
9d8bdf2d 437 my_horse_gif = new wxBitmap( image );
6e47faf1 438#endif
cbd4be25 439
6e47faf1 440#if wxUSE_PCX
176fe5af 441 image.Destroy();
279ababf 442
51b07644 443 if ( !image.LoadFile( dir + _T("horse.pcx"), wxBITMAP_TYPE_PCX ) )
4693b20c 444 wxLogError(wxT("Can't load PCX image"));
60a41aee 445 else
9d8bdf2d 446 my_horse_pcx = new wxBitmap( image );
6e47faf1 447#endif
cbd4be25 448
176fe5af 449 image.Destroy();
279ababf 450
51b07644 451 if ( !image.LoadFile( dir + _T("horse.bmp"), wxBITMAP_TYPE_BMP ) )
4693b20c 452 wxLogError(wxT("Can't load BMP image"));
60a41aee 453 else
9d8bdf2d 454 my_horse_bmp = new wxBitmap( image );
6319afe3 455
a8d4e3ac 456#if wxUSE_XPM
9d8bdf2d
VS
457 image.Destroy();
458
51b07644 459 if ( !image.LoadFile( dir + _T("horse.xpm"), wxBITMAP_TYPE_XPM ) )
4693b20c 460 wxLogError(wxT("Can't load XPM image"));
9d8bdf2d
VS
461 else
462 my_horse_xpm = new wxBitmap( image );
463
51b07644 464 if ( !image.SaveFile( dir + _T("test.xpm"), wxBITMAP_TYPE_XPM ))
4693b20c 465 wxLogError(wxT("Can't save file"));
a8d4e3ac
VS
466#endif
467
6e47faf1 468#if wxUSE_PNM
176fe5af 469 image.Destroy();
279ababf 470
51b07644 471 if ( !image.LoadFile( dir + _T("horse.pnm"), wxBITMAP_TYPE_PNM ) )
4693b20c 472 wxLogError(wxT("Can't load PNM image"));
60a41aee 473 else
9d8bdf2d 474 my_horse_pnm = new wxBitmap( image );
6e47faf1 475#endif
f048e32f 476
60a41aee 477#if wxUSE_LIBTIFF
176fe5af 478 image.Destroy();
279ababf 479
51b07644 480 if ( !image.LoadFile( dir + _T("horse.tif"), wxBITMAP_TYPE_TIF ) )
4693b20c 481 wxLogError(wxT("Can't load TIFF image"));
60a41aee 482 else
9d8bdf2d 483 my_horse_tiff = new wxBitmap( image );
60a41aee
RR
484#endif
485
60a41aee 486 CreateAntiAliasedBitmap();
dc1dbfc6
RL
487
488 my_smile_xbm = new wxBitmap( (const char*)smile_bits, smile_width,
489 smile_height, 1 );
bfef20bf 490
81278df2 491#if !defined(__WINDOWS__) || wxUSE_XPM_IN_MSW
bfef20bf
GRG
492 // demonstrates XPM automatically using the mask when saving
493 if ( m_bmpSmileXpm.Ok() )
51b07644 494 m_bmpSmileXpm.SaveFile(_T("saved.xpm"), wxBITMAP_TYPE_XPM);
81278df2 495#endif
bf504f98
VS
496
497#if wxUSE_ICO_CUR
498 image.Destroy();
499
51b07644 500 if ( !image.LoadFile( dir + _T("horse.ico"), wxBITMAP_TYPE_ICO, 0 ) )
bf504f98
VS
501 wxLogError(wxT("Can't load first ICO image"));
502 else
503 my_horse_ico32 = new wxBitmap( image );
51b07644 504
bf504f98
VS
505 image.Destroy();
506
51b07644 507 if ( !image.LoadFile( dir + _T("horse.ico"), wxBITMAP_TYPE_ICO, 1 ) )
bf504f98
VS
508 wxLogError(wxT("Can't load second ICO image"));
509 else
510 my_horse_ico16 = new wxBitmap( image );
511
512 image.Destroy();
513
51b07644 514 if ( !image.LoadFile( dir + _T("horse.ico") ) )
bf504f98
VS
515 wxLogError(wxT("Can't load best ICO image"));
516 else
517 my_horse_ico = new wxBitmap( image );
518
519 image.Destroy();
520
51b07644 521 if ( !image.LoadFile( dir + _T("horse.cur"), wxBITMAP_TYPE_CUR ) )
bf504f98
VS
522 wxLogError(wxT("Can't load best ICO image"));
523 else
51b07644 524 {
bf504f98 525 my_horse_cur = new wxBitmap( image );
fd94e8aa
VS
526 xH = 30 + image.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X) ;
527 yH = 2420 + image.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y) ;
51b07644 528 }
2b5f62a0 529
08811762 530 m_ani_images = wxImage::GetImageCount ( dir + _T("horse3.ani"), wxBITMAP_TYPE_ANI );
2b5f62a0
VZ
531 if (m_ani_images==0)
532 wxLogError(wxT("No ANI-format images found"));
533 else
534 my_horse_ani = new wxBitmap [m_ani_images];
535 int i ;
536 for (i=0; i < m_ani_images; i++)
537 {
538 image.Destroy();
08811762 539 if (!image.LoadFile( dir + _T("horse3.ani"), wxBITMAP_TYPE_ANI, i ))
2b5f62a0
VZ
540 {
541 wxString tmp = wxT("Can't load image number ");
542 tmp << i ;
543 wxLogError(tmp);
544 }
545 else
546 my_horse_ani [i] = wxBitmap( image );
547 }
da9df1f5 548#endif // wxUSE_ICO_CUR
bf504f98 549
51b07644
VZ
550 image.Destroy();
551
552 // test image loading from stream
553 wxFile file(dir + _T("horse.bmp"));
30ad0a14 554 if ( file.IsOpened() )
51b07644 555 {
30ad0a14
VZ
556 off_t len = file.Length();
557 void *data = malloc(len);
558 if ( file.Read(data, len) != len )
559 wxLogError(_T("Reading bitmap file failed"));
51b07644 560 else
30ad0a14
VZ
561 {
562 wxMemoryInputStream mis(data, len);
563 if ( !image.LoadFile(mis) )
564 wxLogError(wxT("Can't load BMP image from stream"));
565 else
566 my_horse_bmp2 = new wxBitmap( image );
567 }
51b07644 568
30ad0a14
VZ
569 free(data);
570 }
01111366
RR
571}
572
1d5b7a0b 573MyCanvas::~MyCanvas()
01111366 574{
60a41aee
RR
575 delete my_horse_pnm;
576 delete my_horse_png;
577 delete my_horse_jpeg;
578 delete my_horse_gif;
579 delete my_horse_bmp;
51b07644 580 delete my_horse_bmp2;
60a41aee
RR
581 delete my_horse_pcx;
582 delete my_horse_tiff;
9d8bdf2d 583 delete my_horse_xpm;
bf504f98
VS
584 delete my_horse_ico32;
585 delete my_horse_ico16;
586 delete my_horse_ico;
2f6c54eb 587 delete my_horse_cur;
2b5f62a0 588 delete [] my_horse_ani;
dc1dbfc6 589 delete my_smile_xbm;
60a41aee
RR
590 delete my_square;
591 delete my_anti;
01111366
RR
592}
593
594void MyCanvas::OnPaint( wxPaintEvent &WXUNUSED(event) )
595{
be25e480
RR
596 wxPaintDC dc( this );
597 PrepareDC( dc );
a91b47e8 598
51b07644 599 dc.DrawText( _T("Loaded image"), 30, 10 );
be25e480 600 if (my_square && my_square->Ok()) dc.DrawBitmap( *my_square, 30, 30 );
f048e32f 601
51b07644 602 dc.DrawText( _T("Drawn directly"), 150, 10 );
a60b1f5d 603 dc.SetBrush( wxBrush( wxT("orange"), wxSOLID ) );
cf3da716 604 dc.SetPen( *wxBLACK_PEN );
be25e480 605 dc.DrawRectangle( 150, 30, 100, 100 );
cf3da716
RR
606 dc.SetBrush( *wxWHITE_BRUSH );
607 dc.DrawRectangle( 170, 50, 60, 60 );
be25e480 608
408b4168 609 if (my_anti && my_anti->Ok())
be25e480
RR
610 dc.DrawBitmap( *my_anti, 280, 30 );
611
51b07644 612 dc.DrawText( _T("PNG handler"), 30, 135 );
be25e480 613 if (my_horse_png && my_horse_png->Ok())
408b4168 614 {
be25e480
RR
615 dc.DrawBitmap( *my_horse_png, 30, 150 );
616 wxRect rect(0,0,100,100);
617 wxBitmap sub( my_horse_png->GetSubBitmap(rect) );
51b07644 618 dc.DrawText( _T("GetSubBitmap()"), 280, 190 );
be25e480
RR
619 dc.DrawBitmap( sub, 280, 210 );
620 }
621
51b07644 622 dc.DrawText( _T("JPEG handler"), 30, 365 );
408b4168 623 if (my_horse_jpeg && my_horse_jpeg->Ok())
be25e480
RR
624 dc.DrawBitmap( *my_horse_jpeg, 30, 380 );
625
51b07644 626 dc.DrawText( _T("GIF handler"), 30, 595 );
408b4168 627 if (my_horse_gif && my_horse_gif->Ok())
be25e480
RR
628 dc.DrawBitmap( *my_horse_gif, 30, 610 );
629
51b07644 630 dc.DrawText( _T("PCX handler"), 30, 825 );
408b4168 631 if (my_horse_pcx && my_horse_pcx->Ok())
be25e480
RR
632 dc.DrawBitmap( *my_horse_pcx, 30, 840 );
633
51b07644 634 dc.DrawText( _T("BMP handler"), 30, 1055 );
408b4168 635 if (my_horse_bmp && my_horse_bmp->Ok())
be25e480
RR
636 dc.DrawBitmap( *my_horse_bmp, 30, 1070 );
637
51b07644
VZ
638 dc.DrawText( _T("BMP read from memory"), 280, 1055 );
639 if (my_horse_bmp2 && my_horse_bmp2->Ok())
640 dc.DrawBitmap( *my_horse_bmp2, 280, 1070 );
641
642 dc.DrawText( _T("PNM handler"), 30, 1285 );
408b4168 643 if (my_horse_pnm && my_horse_pnm->Ok())
be25e480 644 dc.DrawBitmap( *my_horse_pnm, 30, 1300 );
408b4168 645
51b07644 646 dc.DrawText( _T("TIFF handler"), 30, 1515 );
408b4168 647 if (my_horse_tiff && my_horse_tiff->Ok())
4b05d973 648 dc.DrawBitmap( *my_horse_tiff, 30, 1530 );
be25e480 649
51b07644 650 dc.DrawText( _T("XPM handler"), 30, 1745 );
9d8bdf2d
VS
651 if (my_horse_xpm && my_horse_xpm->Ok())
652 dc.DrawBitmap( *my_horse_xpm, 30, 1760 );
653
bf504f98 654
408b4168 655 if (my_smile_xbm && my_smile_xbm->Ok())
be25e480 656 {
51b07644
VZ
657 dc.DrawText( _T("XBM bitmap"), 30, 1975 );
658 dc.DrawText( _T("(green on red)"), 30, 1990 );
659 dc.SetTextForeground( _T("GREEN") );
660 dc.SetTextBackground( _T("RED") );
9d8bdf2d 661 dc.DrawBitmap( *my_smile_xbm, 30, 2010 );
408b4168 662
a60b1f5d 663 dc.SetTextForeground( wxT("BLACK") );
51b07644
VZ
664 dc.DrawText( _T("After wxImage conversion"), 150, 1975 );
665 dc.DrawText( _T("(red on white)"), 150, 1990 );
a60b1f5d 666 dc.SetTextForeground( wxT("RED") );
a8d4e3ac 667 wxImage i = my_smile_xbm->ConvertToImage();
176fe5af
GRG
668 i.SetMaskColour( 255, 255, 255 );
669 i.Replace( 0, 0, 0,
be25e480
RR
670 wxRED_PEN->GetColour().Red(),
671 wxRED_PEN->GetColour().Green(),
672 wxRED_PEN->GetColour().Blue() );
368d59f0 673 dc.DrawBitmap( wxBitmap(i), 150, 2010, TRUE );
a60b1f5d 674 dc.SetTextForeground( wxT("BLACK") );
be25e480 675 }
176fe5af 676
408b4168 677
41fbc841 678 wxBitmap mono( 60,50,1 );
82ea63e6
RR
679 wxMemoryDC memdc;
680 memdc.SelectObject( mono );
bfef20bf 681 memdc.SetPen( *wxBLACK_PEN );
82ea63e6 682 memdc.SetBrush( *wxWHITE_BRUSH );
41fbc841
RR
683 memdc.DrawRectangle( 0,0,60,50 );
684 memdc.SetTextForeground( *wxBLACK );
51b07644 685 memdc.DrawText( _T("Hi!"), 5, 5 );
41fbc841
RR
686 memdc.SetBrush( *wxBLACK_BRUSH );
687 memdc.DrawRectangle( 33,5,20,20 );
688 memdc.SetPen( *wxRED_PEN );
689 memdc.DrawLine( 5, 42, 50, 42 );
82ea63e6 690 memdc.SelectObject( wxNullBitmap );
176fe5af 691
408b4168 692 if (mono.Ok())
82ea63e6 693 {
51b07644
VZ
694 dc.DrawText( _T("Mono bitmap"), 30, 2095 );
695 dc.DrawText( _T("(red on green)"), 30, 2110 );
a60b1f5d
MB
696 dc.SetTextForeground( wxT("RED") );
697 dc.SetTextBackground( wxT("GREEN") );
9d8bdf2d 698 dc.DrawBitmap( mono, 30, 2130 );
408b4168 699
a60b1f5d 700 dc.SetTextForeground( wxT("BLACK") );
51b07644
VZ
701 dc.DrawText( _T("After wxImage conversion"), 150, 2095 );
702 dc.DrawText( _T("(red on white)"), 150, 2110 );
a60b1f5d 703 dc.SetTextForeground( wxT("RED") );
a8d4e3ac 704 wxImage i = mono.ConvertToImage();
408b4168
VZ
705 i.SetMaskColour( 255,255,255 );
706 i.Replace( 0,0,0,
82ea63e6
RR
707 wxRED_PEN->GetColour().Red(),
708 wxRED_PEN->GetColour().Green(),
709 wxRED_PEN->GetColour().Blue() );
368d59f0 710 dc.DrawBitmap( wxBitmap(i), 150, 2130, TRUE );
a60b1f5d 711 dc.SetTextForeground( wxT("BLACK") );
bea56879
VZ
712 }
713
51b07644 714 dc.DrawText(_T("XPM bitmap"), 30, 2230);
bea56879
VZ
715 if ( m_bmpSmileXpm.Ok() )
716 {
9d8bdf2d 717 dc.DrawBitmap(m_bmpSmileXpm, 30, 2250, TRUE);
bea56879
VZ
718 }
719
51b07644 720 dc.DrawText(_T("XPM icon"), 150, 2230);
bea56879
VZ
721 if ( m_iconSmileXpm.Ok() )
722 {
9d8bdf2d 723 dc.DrawIcon(m_iconSmileXpm, 150, 2250);
82ea63e6 724 }
bf504f98 725
51b07644 726 dc.DrawText( _T("ICO handler (1st image)"), 30, 2290 );
bf504f98
VS
727 if (my_horse_ico32 && my_horse_ico32->Ok())
728 dc.DrawBitmap( *my_horse_ico32, 30, 2330, TRUE );
729
51b07644 730 dc.DrawText( _T("ICO handler (2nd image)"), 230, 2290 );
bf504f98
VS
731 if (my_horse_ico16 && my_horse_ico16->Ok())
732 dc.DrawBitmap( *my_horse_ico16, 230, 2330, TRUE );
51b07644
VZ
733
734 dc.DrawText( _T("ICO handler (best image)"), 430, 2290 );
bf504f98
VS
735 if (my_horse_ico && my_horse_ico->Ok())
736 dc.DrawBitmap( *my_horse_ico, 430, 2330, TRUE );
737
51b07644 738 dc.DrawText( _T("CUR handler"), 30, 2390 );
bf504f98 739 if (my_horse_cur && my_horse_cur->Ok())
51b07644 740 {
bf504f98
VS
741 dc.DrawBitmap( *my_horse_cur, 30, 2420, TRUE );
742 dc.SetPen (*wxRED_PEN);
743 dc.DrawLine (xH-10,yH,xH+10,yH);
744 dc.DrawLine (xH,yH-10,xH,yH+10);
51b07644 745 }
2b5f62a0
VZ
746 dc.DrawText( _T("ANI handler"), 230, 2390 );
747 int i ;
748 for (i=0; i < m_ani_images; i ++)
749 if (my_horse_ani[i].Ok())
750 {
751 dc.DrawBitmap( my_horse_ani[i], 230 + i * 2 * my_horse_ani[i].GetWidth() , 2420, TRUE );
752 }
9390a202 753}
1d5b7a0b 754
9390a202
RR
755void MyCanvas::CreateAntiAliasedBitmap()
756{
757 wxBitmap bitmap( 300, 300 );
a91b47e8 758
9390a202 759 wxMemoryDC dc;
a91b47e8 760
9390a202 761 dc.SelectObject( bitmap );
a91b47e8 762
9390a202 763 dc.Clear();
f048e32f 764
6e47faf1 765 dc.SetFont( wxFont( 24, wxDECORATIVE, wxNORMAL, wxNORMAL) );
a60b1f5d 766 dc.SetTextForeground( wxT("RED") );
51b07644
VZ
767 dc.DrawText( _T("This is anti-aliased Text."), 20, 20 );
768 dc.DrawText( _T("And a Rectangle."), 20, 60 );
f048e32f 769
9390a202 770 dc.SetBrush( *wxRED_BRUSH );
91b8de8d 771 dc.SetPen( *wxTRANSPARENT_PEN );
9390a202 772 dc.DrawRoundedRectangle( 20, 100, 200, 180, 20 );
f048e32f 773
a8d4e3ac 774 wxImage original= bitmap.ConvertToImage();
9390a202 775 wxImage anti( 150, 150 );
a91b47e8 776
9390a202 777 /* This is quite slow, but safe. Use wxImage::GetData() for speed instead. */
f048e32f 778
9390a202
RR
779 for (int y = 1; y < 149; y++)
780 for (int x = 1; x < 149; x++)
781 {
782 int red = original.GetRed( x*2, y*2 ) +
f048e32f
VZ
783 original.GetRed( x*2-1, y*2 ) +
784 original.GetRed( x*2, y*2+1 ) +
9390a202 785 original.GetRed( x*2+1, y*2+1 );
f048e32f
VZ
786 red = red/4;
787
9390a202 788 int green = original.GetGreen( x*2, y*2 ) +
f048e32f
VZ
789 original.GetGreen( x*2-1, y*2 ) +
790 original.GetGreen( x*2, y*2+1 ) +
9390a202 791 original.GetGreen( x*2+1, y*2+1 );
f048e32f
VZ
792 green = green/4;
793
9390a202 794 int blue = original.GetBlue( x*2, y*2 ) +
f048e32f
VZ
795 original.GetBlue( x*2-1, y*2 ) +
796 original.GetBlue( x*2, y*2+1 ) +
9390a202 797 original.GetBlue( x*2+1, y*2+1 );
f048e32f 798 blue = blue/4;
9390a202
RR
799 anti.SetRGB( x, y, red, green, blue );
800 }
368d59f0 801 my_anti = new wxBitmap(anti);
01111366
RR
802}
803
804// MyFrame
805
b3f04dc2
VZ
806enum
807{
808 ID_QUIT = 108,
809 ID_ABOUT,
810 ID_NEW,
811 ID_SHOWRAW
812};
01111366
RR
813
814IMPLEMENT_DYNAMIC_CLASS( MyFrame, wxFrame )
815
816BEGIN_EVENT_TABLE(MyFrame,wxFrame)
817 EVT_MENU (ID_ABOUT, MyFrame::OnAbout)
818 EVT_MENU (ID_QUIT, MyFrame::OnQuit)
ab0f0386 819 EVT_MENU (ID_NEW, MyFrame::OnNewFrame)
b3f04dc2
VZ
820#ifdef wxHAVE_RAW_BITMAP
821 EVT_MENU (ID_SHOWRAW, MyFrame::OnTestRawBitmap)
822#endif
da9df1f5 823
dd38c875 824#if wxUSE_CLIPBOARD
da9df1f5
VZ
825 EVT_MENU(wxID_COPY, MyFrame::OnCopy)
826 EVT_MENU(wxID_PASTE, MyFrame::OnPaste)
827#endif // wxUSE_CLIPBOARD
01111366
RR
828END_EVENT_TABLE()
829
1d5b7a0b 830MyFrame::MyFrame()
51b07644 831 : wxFrame( (wxFrame *)NULL, -1, _T("wxImage sample"),
1d5b7a0b 832 wxPoint(20,20), wxSize(470,360) )
01111366 833{
da9df1f5
VZ
834 wxMenuBar *menu_bar = new wxMenuBar();
835
836 wxMenu *menuImage = new wxMenu;
837 menuImage->Append( ID_NEW, _T("&Show any image...\tCtrl-O"));
1e3c12d7 838
b3f04dc2 839#ifdef wxHAVE_RAW_BITMAP
da9df1f5 840 menuImage->Append( ID_SHOWRAW, _T("Test &raw bitmap...\tCtrl-R"));
b3f04dc2 841#endif
da9df1f5
VZ
842 menuImage->AppendSeparator();
843 menuImage->Append( ID_ABOUT, _T("&About..."));
844 menuImage->AppendSeparator();
845 menuImage->Append( ID_QUIT, _T("E&xit\tCtrl-Q"));
846 menu_bar->Append(menuImage, _T("&Image"));
847
dd38c875 848#if wxUSE_CLIPBOARD
da9df1f5
VZ
849 wxMenu *menuClipboard = new wxMenu;
850 menuClipboard->Append(wxID_COPY, _T("&Copy test image\tCtrl-C"));
851 menuClipboard->Append(wxID_PASTE, _T("&Paste image\tCtrl-V"));
852 menu_bar->Append(menuClipboard, _T("&Clipboard"));
853#endif // wxUSE_CLIPBOARD
3d05544e 854
01111366 855 SetMenuBar( menu_bar );
1d5b7a0b 856
917e533b
RR
857 CreateStatusBar(2);
858 int widths[] = { -1, 100 };
859 SetStatusWidths( 2, widths );
1d5b7a0b 860
fb1585ae 861 m_canvas = new MyCanvas( this, -1, wxPoint(0,0), wxSize(10,10) );
cbd4be25 862
bf504f98
VS
863 // 500 width * 2500 height
864 m_canvas->SetScrollbars( 10, 10, 50, 250 );
01111366
RR
865}
866
867void MyFrame::OnQuit( wxCommandEvent &WXUNUSED(event) )
868{
869 Close( TRUE );
870}
871
872void MyFrame::OnAbout( wxCommandEvent &WXUNUSED(event) )
873{
51b07644
VZ
874 (void)wxMessageBox( _T("wxImage demo\n")
875 _T("Robert Roebling (c) 1998,2000"),
876 _T("About wxImage Demo"), wxICON_INFORMATION | wxOK );
fb1585ae
RR
877}
878
ab0f0386
VZ
879void MyFrame::OnNewFrame( wxCommandEvent &WXUNUSED(event) )
880{
f6bcfd97
BP
881 wxString filename = wxFileSelector(_T("Select image file"));
882 if ( !filename )
883 return;
884
885 wxImage image;
886 if ( !image.LoadFile(filename) )
887 {
888 wxLogError(_T("Couldn't load image from '%s'."), filename.c_str());
889
890 return;
891 }
892
368d59f0 893 (new MyImageFrame(this, wxBitmap(image)))->Show();
ab0f0386
VZ
894}
895
b3f04dc2
VZ
896#ifdef wxHAVE_RAW_BITMAP
897
898void MyFrame::OnTestRawBitmap( wxCommandEvent &event )
899{
900 (new MyRawBitmapFrame(this))->Show();
901}
902
903#endif // wxHAVE_RAW_BITMAP
904
dd38c875 905#if wxUSE_CLIPBOARD
da9df1f5
VZ
906
907void MyFrame::OnCopy(wxCommandEvent& WXUNUSED(event))
908{
909 wxBitmapDataObject *dobjBmp = new wxBitmapDataObject;
910 dobjBmp->SetBitmap(*m_canvas->my_horse_png);
911
dd38c875
MB
912 wxTheClipboard->Open();
913
da9df1f5
VZ
914 if ( !wxTheClipboard->SetData(dobjBmp) )
915 {
916 wxLogError(_T("Failed to copy bitmap to clipboard"));
917 }
dd38c875
MB
918
919 wxTheClipboard->Close();
da9df1f5
VZ
920}
921
922void MyFrame::OnPaste(wxCommandEvent& WXUNUSED(event))
923{
924 wxBitmapDataObject dobjBmp;
dd38c875
MB
925
926 wxTheClipboard->Open();
da9df1f5
VZ
927 if ( !wxTheClipboard->GetData(dobjBmp) )
928 {
929 wxLogMessage(_T("No bitmap data in the clipboard"));
930 }
931 else
932 {
933 (new MyImageFrame(this, dobjBmp.GetBitmap()))->Show();
934 }
dd38c875 935 wxTheClipboard->Close();
da9df1f5
VZ
936}
937
938#endif // wxUSE_CLIPBOARD
939
01111366
RR
940//-----------------------------------------------------------------------------
941// MyApp
942//-----------------------------------------------------------------------------
943
1d5b7a0b 944bool MyApp::OnInit()
01111366 945{
e9c4b1a2
JS
946#if wxUSE_LIBPNG
947 wxImage::AddHandler( new wxPNGHandler );
948#endif
949
950#if wxUSE_LIBJPEG
951 wxImage::AddHandler( new wxJPEGHandler );
952#endif
953
60a41aee
RR
954#if wxUSE_LIBTIFF
955 wxImage::AddHandler( new wxTIFFHandler );
956#endif
957
6e47faf1 958#if wxUSE_GIF
e1929140 959 wxImage::AddHandler( new wxGIFHandler );
6e47faf1
JS
960#endif
961
962#if wxUSE_PCX
cbd4be25 963 wxImage::AddHandler( new wxPCXHandler );
6e47faf1
JS
964#endif
965
966#if wxUSE_PNM
6319afe3 967 wxImage::AddHandler( new wxPNMHandler );
6e47faf1 968#endif
e1929140 969
a8d4e3ac
VS
970#if wxUSE_XPM
971 wxImage::AddHandler( new wxXPMHandler );
972#endif
973
bf504f98
VS
974#if wxUSE_ICO_CUR
975 wxImage::AddHandler( new wxICOHandler );
976 wxImage::AddHandler( new wxCURHandler );
2b5f62a0 977 wxImage::AddHandler( new wxANIHandler );
bf504f98
VS
978#endif
979
01111366
RR
980 wxFrame *frame = new MyFrame();
981 frame->Show( TRUE );
1d5b7a0b 982
01111366
RR
983 return TRUE;
984}
985