+void wxBitmap::Resize( int height, int width )
+{
+ if (!Ok()) return;
+
+ return;
+
+#ifdef USE_GDK_IMLIB
+
+ if (M_BMPDATA->m_bitmap) return; // not supported for bitmaps
+
+ if (!M_BMPDATA->m_image) RecreateImage();
+
+ if (M_BMPDATA->m_pixmap) gdk_imlib_free_pixmap( M_BMPDATA->m_pixmap );
+ if (M_BMPDATA->m_mask) delete M_BMPDATA->m_mask;
+
+ GdkImlibImage* image = gdk_imlib_clone_scaled_image( M_BMPDATA->m_image, height, width );
+ gdk_imlib_destroy_image( M_BMPDATA->m_image );
+ M_BMPDATA->m_image = image;
+ M_BMPDATA->m_height = height;
+ M_BMPDATA->m_width = width;
+
+ Render();
+
+#endif
+};
+
+bool wxBitmap::SaveFile( const wxString &name, int WXUNUSED(type),