-
- wxImage Scale( int width, int height );
-
- // these routines are slow but safe
+
+ // return the new image with size width*height
+ wxImage GetSubImage( const wxRect& ) const;
+
+ // return the new image with size width*height
+ wxImage Scale( int width, int height ) const;
+
+ // rescales the image in place
+ void Rescale( int width, int height ) { *this = Scale(width, height); }
+
+ // these routines are slow but safe