4 * Author: Robert Roebling
6 * Copyright: (C) 1998, Robert Roebling
10 // For compilers that support precompilation, includes "wx/wx.h".
11 #include "wx/wxprec.h"
23 #include "wx/mstream.h"
24 #include "wx/wfstream.h"
25 #include "wx/quantize.h"
28 #include "wx/dataobj.h"
29 #include "wx/clipbrd.h"
30 #endif // wxUSE_CLIPBOARD
34 #if !defined(__WINDOWS__) || wxUSE_XPM_IN_MSW
38 # include "wx/rawbmp.h"
40 #define wxHAVE_RAW_BITMAP
50 class MyCanvas
: public wxScrolledWindow
54 MyCanvas( wxWindow
*parent
, wxWindowID
, const wxPoint
&pos
, const wxSize
&size
);
56 void OnPaint( wxPaintEvent
&event
);
57 void CreateAntiAliasedBitmap();
59 wxBitmap
*my_horse_png
;
60 wxBitmap
*my_horse_jpeg
;
61 wxBitmap
*my_horse_gif
;
62 wxBitmap
*my_horse_bmp
;
63 wxBitmap
*my_horse_bmp2
;
64 wxBitmap
*my_horse_pcx
;
65 wxBitmap
*my_horse_pnm
;
66 wxBitmap
*my_horse_tiff
;
67 wxBitmap
*my_horse_xpm
;
68 wxBitmap
*my_horse_ico32
;
69 wxBitmap
*my_horse_ico16
;
70 wxBitmap
*my_horse_ico
;
71 wxBitmap
*my_horse_cur
;
72 wxBitmap
*my_horse_ani
;
74 wxBitmap
*my_smile_xbm
;
82 wxBitmap m_bmpSmileXpm
;
83 wxIcon m_iconSmileXpm
;
86 DECLARE_DYNAMIC_CLASS(MyCanvas
)
91 const int nChoices
= 8 ;
92 static const wxString bppchoices
[nChoices
] =
98 _T("8 bpp greyscale"),
100 _T("8 bpp own palette"),
104 static const int bppvalues
[nChoices
] =
119 class MyFrame
: public wxFrame
124 void OnAbout( wxCommandEvent
&event
);
125 void OnNewFrame( wxCommandEvent
&event
);
126 #ifdef wxHAVE_RAW_BITMAP
127 void OnTestRawBitmap( wxCommandEvent
&event
);
128 #endif // wxHAVE_RAW_BITMAP
129 void OnQuit( wxCommandEvent
&event
);
132 void OnCopy(wxCommandEvent
& event
);
133 void OnPaste(wxCommandEvent
& event
);
134 #endif // wxUSE_CLIPBOARD
139 DECLARE_DYNAMIC_CLASS(MyFrame
)
140 DECLARE_EVENT_TABLE()
143 class MyImageFrame
: public wxFrame
146 MyImageFrame(wxFrame
*parent
, const wxBitmap
& bitmap
)
147 : wxFrame(parent
, -1, _T("Double click to save"),
148 wxDefaultPosition
, wxDefaultSize
,
149 wxCAPTION
| wxSYSTEM_MENU
| wxCLOSE_BOX
),
152 SetClientSize(bitmap
.GetWidth(), bitmap
.GetHeight());
155 void OnEraseBackground(wxEraseEvent
& WXUNUSED(event
))
157 // do nothing here to be able to see how transparent images are shown
160 void OnPaint(wxPaintEvent
& WXUNUSED(event
))
162 wxPaintDC
dc( this );
163 dc
.DrawBitmap( m_bitmap
, 0, 0, TRUE
/* use mask */ );
166 void OnSave(wxMouseEvent
& WXUNUSED(event
))
168 wxImage image
= m_bitmap
.ConvertToImage();
170 int bppselection
= wxGetSingleChoiceIndex(_T("Set BMP BPP"),
175 if ( bppselection
== -1 )
181 image
.SetOption(wxIMAGE_OPTION_BMP_FORMAT
, bppvalues
[bppselection
]);
183 wxString deffilename
= bppchoices
[bppselection
];
184 deffilename
.Replace(wxT(" "), wxT("_"));
185 deffilename
+= wxT(".bmp");
186 wxString savefilename
= wxFileSelector( wxT("Save Image"),
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|")
195 wxT("PCX files (*.pcx)|*.pcx|")
196 wxT("ICO files (*.ico)|*.ico|")
197 wxT("CUR files (*.cur)|*.cur"),
200 if ( savefilename
.empty() )
203 if ( image
.GetOptionInt(wxIMAGE_OPTION_BMP_FORMAT
) == wxBMP_8BPP_PALETTE
)
205 unsigned char *cmap
= new unsigned char [256];
206 for ( int i
= 0; i
< 256; i
++ )
208 image
.SetPalette(wxPalette(256, cmap
, cmap
, cmap
));
214 wxString extension
= savefilename
.AfterLast('.').Lower();
216 if (extension
== _T("cur"))
218 image
.Rescale(32,32);
219 image
.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_X
, 0);
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
);
227 // This one guesses image format from filename extension
228 // (it may fail if the extension is not recognized):
229 loaded
= image
.SaveFile(savefilename
);
233 wxMessageBox(_T("No handler for this file type."),
234 _T("File was not saved"),
235 wxOK
|wxCENTRE
, this);
241 DECLARE_EVENT_TABLE()
244 #ifdef wxHAVE_RAW_BITMAP
246 #include "wx/rawbmp.h"
248 class MyRawBitmapFrame
: public wxFrame
255 REAL_SIZE
= SIZE
- 2*BORDER
258 MyRawBitmapFrame(wxFrame
*parent
)
259 : wxFrame(parent
, -1, _T("Raw bitmaps (how exciting)")),
260 m_bitmap(SIZE
, SIZE
, 32)
262 SetClientSize(SIZE
, SIZE
);
264 wxAlphaPixelData
data(m_bitmap
,
265 wxPoint(BORDER
, BORDER
),
266 wxSize(REAL_SIZE
, REAL_SIZE
));
269 wxLogError(_T("Failed to gain raw access to bitmap data"));
275 wxAlphaPixelData::Iterator
p(data
);
277 for ( int y
= 0; y
< REAL_SIZE
; ++y
)
279 wxAlphaPixelData::Iterator rowStart
= p
;
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;
285 for ( int x
= 0; x
< REAL_SIZE
; ++x
)
291 (wxAlphaPixelFormat::ChannelType
)((x
*255.)/REAL_SIZE
);
293 ++p
; // same as p.OffsetX(1)
301 void OnPaint(wxPaintEvent
& WXUNUSED(event
))
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 */ );
313 DECLARE_EVENT_TABLE()
316 #endif // wxHAVE_RAW_BITMAP
320 class MyApp
: public wxApp
323 virtual bool OnInit();
332 IMPLEMENT_DYNAMIC_CLASS(MyCanvas
, wxScrolledWindow
)
334 BEGIN_EVENT_TABLE(MyImageFrame
, wxFrame
)
335 EVT_ERASE_BACKGROUND(MyImageFrame::OnEraseBackground
)
336 EVT_PAINT(MyImageFrame::OnPaint
)
337 EVT_LEFT_DCLICK(MyImageFrame::OnSave
)
340 #ifdef wxHAVE_RAW_BITMAP
342 BEGIN_EVENT_TABLE(MyRawBitmapFrame
, wxFrame
)
343 EVT_PAINT(MyRawBitmapFrame::OnPaint
)
346 #endif // wxHAVE_RAW_BITMAP
348 BEGIN_EVENT_TABLE(MyCanvas
, wxScrolledWindow
)
349 EVT_PAINT(MyCanvas::OnPaint
)
352 MyCanvas::MyCanvas( wxWindow
*parent
, wxWindowID id
,
353 const wxPoint
&pos
, const wxSize
&size
)
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
)
360 my_horse_png
= (wxBitmap
*) NULL
;
361 my_horse_jpeg
= (wxBitmap
*) NULL
;
362 my_horse_gif
= (wxBitmap
*) NULL
;
363 my_horse_bmp
= (wxBitmap
*) NULL
;
364 my_horse_bmp2
= (wxBitmap
*) NULL
;
365 my_horse_pcx
= (wxBitmap
*) NULL
;
366 my_horse_pnm
= (wxBitmap
*) NULL
;
367 my_horse_tiff
= (wxBitmap
*) NULL
;
368 my_horse_xpm
= (wxBitmap
*) NULL
;
369 my_horse_ico32
= (wxBitmap
*) NULL
;
370 my_horse_ico16
= (wxBitmap
*) NULL
;
371 my_horse_ico
= (wxBitmap
*) NULL
;
372 my_horse_cur
= (wxBitmap
*) NULL
;
373 my_horse_ani
= (wxBitmap
*) NULL
;
375 my_smile_xbm
= (wxBitmap
*) NULL
;
376 my_square
= (wxBitmap
*) NULL
;
377 my_anti
= (wxBitmap
*) NULL
;
381 SetBackgroundColour(* wxWHITE
);
383 wxBitmap
bitmap( 100, 100 );
386 dc
.SelectObject( bitmap
);
387 dc
.SetBrush( wxBrush( wxT("orange"), wxSOLID
) );
388 dc
.SetPen( *wxBLACK_PEN
);
389 dc
.DrawRectangle( 0, 0, 100, 100 );
390 dc
.SetBrush( *wxWHITE_BRUSH
);
391 dc
.DrawRectangle( 20, 20, 60, 60 );
392 dc
.SelectObject( wxNullBitmap
);
394 // try to find the directory with our images
396 if ( wxFile::Exists(wxT("./horse.png")) )
398 else if ( wxFile::Exists(wxT("../horse.png")) )
401 wxLogWarning(wxT("Can't find image files in either '.' or '..'!"));
403 wxImage image
= bitmap
.ConvertToImage();
406 if ( !image
.SaveFile( dir
+ _T("test.png"), wxBITMAP_TYPE_PNG
))
407 wxLogError(wxT("Can't save file"));
411 if ( image
.LoadFile( dir
+ _T("test.png") ) )
412 my_square
= new wxBitmap( image
);
416 if ( !image
.LoadFile( dir
+ _T("horse.png")) )
417 wxLogError(wxT("Can't load PNG image"));
419 my_horse_png
= new wxBitmap( image
);
420 #endif // wxUSE_LIBPNG
425 if ( !image
.LoadFile( dir
+ _T("horse.jpg")) )
426 wxLogError(wxT("Can't load JPG image"));
428 my_horse_jpeg
= new wxBitmap( image
);
429 #endif // wxUSE_LIBJPEG
434 if ( !image
.LoadFile( dir
+ _T("horse.gif" )) )
435 wxLogError(wxT("Can't load GIF image"));
437 my_horse_gif
= new wxBitmap( image
);
443 if ( !image
.LoadFile( dir
+ _T("horse.pcx"), wxBITMAP_TYPE_PCX
) )
444 wxLogError(wxT("Can't load PCX image"));
446 my_horse_pcx
= new wxBitmap( image
);
451 if ( !image
.LoadFile( dir
+ _T("horse.bmp"), wxBITMAP_TYPE_BMP
) )
452 wxLogError(wxT("Can't load BMP image"));
454 my_horse_bmp
= new wxBitmap( image
);
459 if ( !image
.LoadFile( dir
+ _T("horse.xpm"), wxBITMAP_TYPE_XPM
) )
460 wxLogError(wxT("Can't load XPM image"));
462 my_horse_xpm
= new wxBitmap( image
);
464 if ( !image
.SaveFile( dir
+ _T("test.xpm"), wxBITMAP_TYPE_XPM
))
465 wxLogError(wxT("Can't save file"));
471 if ( !image
.LoadFile( dir
+ _T("horse.pnm"), wxBITMAP_TYPE_PNM
) )
472 wxLogError(wxT("Can't load PNM image"));
474 my_horse_pnm
= new wxBitmap( image
);
480 if ( !image
.LoadFile( dir
+ _T("horse.tif"), wxBITMAP_TYPE_TIF
) )
481 wxLogError(wxT("Can't load TIFF image"));
483 my_horse_tiff
= new wxBitmap( image
);
486 CreateAntiAliasedBitmap();
488 my_smile_xbm
= new wxBitmap( (const char*)smile_bits
, smile_width
,
491 #if !defined(__WINDOWS__) || wxUSE_XPM_IN_MSW
492 // demonstrates XPM automatically using the mask when saving
493 if ( m_bmpSmileXpm
.Ok() )
494 m_bmpSmileXpm
.SaveFile(_T("saved.xpm"), wxBITMAP_TYPE_XPM
);
500 if ( !image
.LoadFile( dir
+ _T("horse.ico"), wxBITMAP_TYPE_ICO
, 0 ) )
501 wxLogError(wxT("Can't load first ICO image"));
503 my_horse_ico32
= new wxBitmap( image
);
507 if ( !image
.LoadFile( dir
+ _T("horse.ico"), wxBITMAP_TYPE_ICO
, 1 ) )
508 wxLogError(wxT("Can't load second ICO image"));
510 my_horse_ico16
= new wxBitmap( image
);
514 if ( !image
.LoadFile( dir
+ _T("horse.ico") ) )
515 wxLogError(wxT("Can't load best ICO image"));
517 my_horse_ico
= new wxBitmap( image
);
521 if ( !image
.LoadFile( dir
+ _T("horse.cur"), wxBITMAP_TYPE_CUR
) )
522 wxLogError(wxT("Can't load best ICO image"));
525 my_horse_cur
= new wxBitmap( image
);
526 xH
= 30 + image
.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X
) ;
527 yH
= 2420 + image
.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y
) ;
530 m_ani_images
= wxImage::GetImageCount ( dir
+ _T("horse3.ani"), wxBITMAP_TYPE_ANI
);
532 wxLogError(wxT("No ANI-format images found"));
534 my_horse_ani
= new wxBitmap
[m_ani_images
];
536 for (i
=0; i
< m_ani_images
; i
++)
539 if (!image
.LoadFile( dir
+ _T("horse3.ani"), wxBITMAP_TYPE_ANI
, i
))
541 wxString tmp
= wxT("Can't load image number ");
546 my_horse_ani
[i
] = wxBitmap( image
);
548 #endif // wxUSE_ICO_CUR
552 // test image loading from stream
553 wxFile
file(dir
+ _T("horse.bmp"));
554 if ( file
.IsOpened() )
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"));
562 wxMemoryInputStream
mis(data
, len
);
563 if ( !image
.LoadFile(mis
) )
564 wxLogError(wxT("Can't load BMP image from stream"));
566 my_horse_bmp2
= new wxBitmap( image
);
573 MyCanvas::~MyCanvas()
577 delete my_horse_jpeg
;
580 delete my_horse_bmp2
;
582 delete my_horse_tiff
;
584 delete my_horse_ico32
;
585 delete my_horse_ico16
;
588 delete [] my_horse_ani
;
594 void MyCanvas::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
596 wxPaintDC
dc( this );
599 dc
.DrawText( _T("Loaded image"), 30, 10 );
600 if (my_square
&& my_square
->Ok()) dc
.DrawBitmap( *my_square
, 30, 30 );
602 dc
.DrawText( _T("Drawn directly"), 150, 10 );
603 dc
.SetBrush( wxBrush( wxT("orange"), wxSOLID
) );
604 dc
.SetPen( *wxBLACK_PEN
);
605 dc
.DrawRectangle( 150, 30, 100, 100 );
606 dc
.SetBrush( *wxWHITE_BRUSH
);
607 dc
.DrawRectangle( 170, 50, 60, 60 );
609 if (my_anti
&& my_anti
->Ok())
610 dc
.DrawBitmap( *my_anti
, 280, 30 );
612 dc
.DrawText( _T("PNG handler"), 30, 135 );
613 if (my_horse_png
&& my_horse_png
->Ok())
615 dc
.DrawBitmap( *my_horse_png
, 30, 150 );
616 wxRect
rect(0,0,100,100);
617 wxBitmap
sub( my_horse_png
->GetSubBitmap(rect
) );
618 dc
.DrawText( _T("GetSubBitmap()"), 280, 190 );
619 dc
.DrawBitmap( sub
, 280, 210 );
622 dc
.DrawText( _T("JPEG handler"), 30, 365 );
623 if (my_horse_jpeg
&& my_horse_jpeg
->Ok())
624 dc
.DrawBitmap( *my_horse_jpeg
, 30, 380 );
626 dc
.DrawText( _T("GIF handler"), 30, 595 );
627 if (my_horse_gif
&& my_horse_gif
->Ok())
628 dc
.DrawBitmap( *my_horse_gif
, 30, 610 );
630 dc
.DrawText( _T("PCX handler"), 30, 825 );
631 if (my_horse_pcx
&& my_horse_pcx
->Ok())
632 dc
.DrawBitmap( *my_horse_pcx
, 30, 840 );
634 dc
.DrawText( _T("BMP handler"), 30, 1055 );
635 if (my_horse_bmp
&& my_horse_bmp
->Ok())
636 dc
.DrawBitmap( *my_horse_bmp
, 30, 1070 );
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 );
642 dc
.DrawText( _T("PNM handler"), 30, 1285 );
643 if (my_horse_pnm
&& my_horse_pnm
->Ok())
644 dc
.DrawBitmap( *my_horse_pnm
, 30, 1300 );
646 dc
.DrawText( _T("TIFF handler"), 30, 1515 );
647 if (my_horse_tiff
&& my_horse_tiff
->Ok())
648 dc
.DrawBitmap( *my_horse_tiff
, 30, 1530 );
650 dc
.DrawText( _T("XPM handler"), 30, 1745 );
651 if (my_horse_xpm
&& my_horse_xpm
->Ok())
652 dc
.DrawBitmap( *my_horse_xpm
, 30, 1760 );
655 if (my_smile_xbm
&& my_smile_xbm
->Ok())
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") );
661 dc
.DrawBitmap( *my_smile_xbm
, 30, 2010 );
663 dc
.SetTextForeground( wxT("BLACK") );
664 dc
.DrawText( _T("After wxImage conversion"), 150, 1975 );
665 dc
.DrawText( _T("(red on white)"), 150, 1990 );
666 dc
.SetTextForeground( wxT("RED") );
667 wxImage i
= my_smile_xbm
->ConvertToImage();
668 i
.SetMaskColour( 255, 255, 255 );
670 wxRED_PEN
->GetColour().Red(),
671 wxRED_PEN
->GetColour().Green(),
672 wxRED_PEN
->GetColour().Blue() );
673 dc
.DrawBitmap( wxBitmap(i
), 150, 2010, TRUE
);
674 dc
.SetTextForeground( wxT("BLACK") );
678 wxBitmap
mono( 60,50,1 );
680 memdc
.SelectObject( mono
);
681 memdc
.SetPen( *wxBLACK_PEN
);
682 memdc
.SetBrush( *wxWHITE_BRUSH
);
683 memdc
.DrawRectangle( 0,0,60,50 );
684 memdc
.SetTextForeground( *wxBLACK
);
685 memdc
.DrawText( _T("Hi!"), 5, 5 );
686 memdc
.SetBrush( *wxBLACK_BRUSH
);
687 memdc
.DrawRectangle( 33,5,20,20 );
688 memdc
.SetPen( *wxRED_PEN
);
689 memdc
.DrawLine( 5, 42, 50, 42 );
690 memdc
.SelectObject( wxNullBitmap
);
694 dc
.DrawText( _T("Mono bitmap"), 30, 2095 );
695 dc
.DrawText( _T("(red on green)"), 30, 2110 );
696 dc
.SetTextForeground( wxT("RED") );
697 dc
.SetTextBackground( wxT("GREEN") );
698 dc
.DrawBitmap( mono
, 30, 2130 );
700 dc
.SetTextForeground( wxT("BLACK") );
701 dc
.DrawText( _T("After wxImage conversion"), 150, 2095 );
702 dc
.DrawText( _T("(red on white)"), 150, 2110 );
703 dc
.SetTextForeground( wxT("RED") );
704 wxImage i
= mono
.ConvertToImage();
705 i
.SetMaskColour( 255,255,255 );
707 wxRED_PEN
->GetColour().Red(),
708 wxRED_PEN
->GetColour().Green(),
709 wxRED_PEN
->GetColour().Blue() );
710 dc
.DrawBitmap( wxBitmap(i
), 150, 2130, TRUE
);
711 dc
.SetTextForeground( wxT("BLACK") );
714 dc
.DrawText(_T("XPM bitmap"), 30, 2230);
715 if ( m_bmpSmileXpm
.Ok() )
717 dc
.DrawBitmap(m_bmpSmileXpm
, 30, 2250, TRUE
);
720 dc
.DrawText(_T("XPM icon"), 150, 2230);
721 if ( m_iconSmileXpm
.Ok() )
723 dc
.DrawIcon(m_iconSmileXpm
, 150, 2250);
726 dc
.DrawText( _T("ICO handler (1st image)"), 30, 2290 );
727 if (my_horse_ico32
&& my_horse_ico32
->Ok())
728 dc
.DrawBitmap( *my_horse_ico32
, 30, 2330, TRUE
);
730 dc
.DrawText( _T("ICO handler (2nd image)"), 230, 2290 );
731 if (my_horse_ico16
&& my_horse_ico16
->Ok())
732 dc
.DrawBitmap( *my_horse_ico16
, 230, 2330, TRUE
);
734 dc
.DrawText( _T("ICO handler (best image)"), 430, 2290 );
735 if (my_horse_ico
&& my_horse_ico
->Ok())
736 dc
.DrawBitmap( *my_horse_ico
, 430, 2330, TRUE
);
738 dc
.DrawText( _T("CUR handler"), 30, 2390 );
739 if (my_horse_cur
&& my_horse_cur
->Ok())
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);
746 dc
.DrawText( _T("ANI handler"), 230, 2390 );
748 for (i
=0; i
< m_ani_images
; i
++)
749 if (my_horse_ani
[i
].Ok())
751 dc
.DrawBitmap( my_horse_ani
[i
], 230 + i
* 2 * my_horse_ani
[i
].GetWidth() , 2420, TRUE
);
755 void MyCanvas::CreateAntiAliasedBitmap()
757 wxBitmap
bitmap( 300, 300 );
761 dc
.SelectObject( bitmap
);
765 dc
.SetFont( wxFont( 24, wxDECORATIVE
, wxNORMAL
, wxNORMAL
) );
766 dc
.SetTextForeground( wxT("RED") );
767 dc
.DrawText( _T("This is anti-aliased Text."), 20, 20 );
768 dc
.DrawText( _T("And a Rectangle."), 20, 60 );
770 dc
.SetBrush( *wxRED_BRUSH
);
771 dc
.SetPen( *wxTRANSPARENT_PEN
);
772 dc
.DrawRoundedRectangle( 20, 100, 200, 180, 20 );
774 wxImage original
= bitmap
.ConvertToImage();
775 wxImage
anti( 150, 150 );
777 /* This is quite slow, but safe. Use wxImage::GetData() for speed instead. */
779 for (int y
= 1; y
< 149; y
++)
780 for (int x
= 1; x
< 149; x
++)
782 int red
= original
.GetRed( x
*2, y
*2 ) +
783 original
.GetRed( x
*2-1, y
*2 ) +
784 original
.GetRed( x
*2, y
*2+1 ) +
785 original
.GetRed( x
*2+1, y
*2+1 );
788 int green
= original
.GetGreen( x
*2, y
*2 ) +
789 original
.GetGreen( x
*2-1, y
*2 ) +
790 original
.GetGreen( x
*2, y
*2+1 ) +
791 original
.GetGreen( x
*2+1, y
*2+1 );
794 int blue
= original
.GetBlue( x
*2, y
*2 ) +
795 original
.GetBlue( x
*2-1, y
*2 ) +
796 original
.GetBlue( x
*2, y
*2+1 ) +
797 original
.GetBlue( x
*2+1, y
*2+1 );
799 anti
.SetRGB( x
, y
, red
, green
, blue
);
801 my_anti
= new wxBitmap(anti
);
814 IMPLEMENT_DYNAMIC_CLASS( MyFrame
, wxFrame
)
816 BEGIN_EVENT_TABLE(MyFrame
,wxFrame
)
817 EVT_MENU (ID_ABOUT
, MyFrame::OnAbout
)
818 EVT_MENU (ID_QUIT
, MyFrame::OnQuit
)
819 EVT_MENU (ID_NEW
, MyFrame::OnNewFrame
)
820 #ifdef wxHAVE_RAW_BITMAP
821 EVT_MENU (ID_SHOWRAW
, MyFrame::OnTestRawBitmap
)
825 EVT_MENU(wxID_COPY
, MyFrame::OnCopy
)
826 EVT_MENU(wxID_PASTE
, MyFrame::OnPaste
)
827 #endif // wxUSE_CLIPBOARD
831 : wxFrame( (wxFrame
*)NULL
, -1, _T("wxImage sample"),
832 wxPoint(20,20), wxSize(470,360) )
834 wxMenuBar
*menu_bar
= new wxMenuBar();
836 wxMenu
*menuImage
= new wxMenu
;
837 menuImage
->Append( ID_NEW
, _T("&Show any image...\tCtrl-O"));
839 #ifdef wxHAVE_RAW_BITMAP
840 menuImage
->Append( ID_SHOWRAW
, _T("Test &raw bitmap...\tCtrl-R"));
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"));
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
855 SetMenuBar( menu_bar
);
858 int widths
[] = { -1, 100 };
859 SetStatusWidths( 2, widths
);
861 m_canvas
= new MyCanvas( this, -1, wxPoint(0,0), wxSize(10,10) );
863 // 500 width * 2500 height
864 m_canvas
->SetScrollbars( 10, 10, 50, 250 );
867 void MyFrame::OnQuit( wxCommandEvent
&WXUNUSED(event
) )
872 void MyFrame::OnAbout( wxCommandEvent
&WXUNUSED(event
) )
874 (void)wxMessageBox( _T("wxImage demo\n")
875 _T("Robert Roebling (c) 1998,2000"),
876 _T("About wxImage Demo"), wxICON_INFORMATION
| wxOK
);
879 void MyFrame::OnNewFrame( wxCommandEvent
&WXUNUSED(event
) )
881 wxString filename
= wxFileSelector(_T("Select image file"));
886 if ( !image
.LoadFile(filename
) )
888 wxLogError(_T("Couldn't load image from '%s'."), filename
.c_str());
893 (new MyImageFrame(this, wxBitmap(image
)))->Show();
896 #ifdef wxHAVE_RAW_BITMAP
898 void MyFrame::OnTestRawBitmap( wxCommandEvent
&event
)
900 (new MyRawBitmapFrame(this))->Show();
903 #endif // wxHAVE_RAW_BITMAP
907 void MyFrame::OnCopy(wxCommandEvent
& WXUNUSED(event
))
909 wxBitmapDataObject
*dobjBmp
= new wxBitmapDataObject
;
910 dobjBmp
->SetBitmap(*m_canvas
->my_horse_png
);
912 wxTheClipboard
->Open();
914 if ( !wxTheClipboard
->SetData(dobjBmp
) )
916 wxLogError(_T("Failed to copy bitmap to clipboard"));
919 wxTheClipboard
->Close();
922 void MyFrame::OnPaste(wxCommandEvent
& WXUNUSED(event
))
924 wxBitmapDataObject dobjBmp
;
926 wxTheClipboard
->Open();
927 if ( !wxTheClipboard
->GetData(dobjBmp
) )
929 wxLogMessage(_T("No bitmap data in the clipboard"));
933 (new MyImageFrame(this, dobjBmp
.GetBitmap()))->Show();
935 wxTheClipboard
->Close();
938 #endif // wxUSE_CLIPBOARD
940 //-----------------------------------------------------------------------------
942 //-----------------------------------------------------------------------------
947 wxImage::AddHandler( new wxPNGHandler
);
951 wxImage::AddHandler( new wxJPEGHandler
);
955 wxImage::AddHandler( new wxTIFFHandler
);
959 wxImage::AddHandler( new wxGIFHandler
);
963 wxImage::AddHandler( new wxPCXHandler
);
967 wxImage::AddHandler( new wxPNMHandler
);
971 wxImage::AddHandler( new wxXPMHandler
);
975 wxImage::AddHandler( new wxICOHandler
);
976 wxImage::AddHandler( new wxCURHandler
);
977 wxImage::AddHandler( new wxANIHandler
);
980 wxFrame
*frame
= new MyFrame();