//    *
 //	\brief Save the image from the buffer to a file.
 //	\param filename Name (and path) of the image file where to save the buffer.
 //
 //
 //ORIGINAL LINE: void saveImage(Ogre::String filename) const
 public void saveImage(string filename)
 {
     Mogre.Image image = getImage();
     image.Save(filename);
     image.Dispose();
 }