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