Hello,
I saw the suggestions in the ticket #57
How about the conversion from Vips to System.Windows.Media.Imaging.BitmapImage?
Currently I am doing:
var bmImage = new BitmapImage();
bmImage.BeginInit();
bmImage.StreamSource = vipsImage.WriteToStream(".tiff");
bmImage.EndInit();
Is there a better way?