svn path=/trunk/aspeditor/; revision=60706
This commit is contained in:
Miguel de Icaza 2006-05-15 13:35:37 +00:00
Родитель e1dc9eb52d
Коммит 6cfc0a9394
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -459,7 +459,7 @@ public class PropertyGrid : Gtk.VBox
private Gdk.Pixbuf ImageToPixbuf(System.Drawing.Image image)
{
using (MemoryStream stream = new MemoryStream ()) {
image.Save (stream, System.Drawing.Imaging.ImageFormat.Tiff);
image.Save (stream, System.Drawing.Imaging.ImageFormat.Png);
stream.Position = 0;
return new Gdk.Pixbuf (stream);
}