I'm porting an C# .NET application to Mono .NET for executing in OSX. Part of the application involves printing an image. Fairly easy in .NET and boils down to primarily
e.Graphics.DrawImage(img, new Rectangle(x, y, printSize.Width, printSize.Height));
in the PrintDocument's PrintPage event. Mono does not have a full implementation of System.Drawing.Printing so it seems that the best way to go about doing this is using GtkSharp. I've found some examples online as to how to print text using a Gtk.PrintOperation. PrintOperation has an event DrawPage which should be similar to PrintPage, however I could only find how to use PangoSharp to print text in this event.
Enough explaining what I do know, I think the question is fairly straight forward. I hope somebody can be of help as GtkSharp's printing is not well documented. If there is a better way to do this outside GtkSharp, I am all ears.
Many thanks.
EDIT
So I've managed to get something printing, however, it is always a blank page. Here is the code:
var print = new PrintOperation();
print.BeginPrint += (obj, args) => { print.NPages = 1; };
print.DrawPage += (obj, args) => {
PrintContext context = args.Context;
Cairo.Context cr = context.CairoContext;
var imageSurface = new Cairo.ImageSurface(printImage.FileName);
cr.MaskSurface(imageSurface, 0, 0);
};
print.EndPrint += (obj, args) => { };
print.Run(PrintOperationAction.Print, null);