Hi I'm using this code to save the image of a canvas.
It works well but I need to be in JPG format, how I can get it?
Thank you
Dim out As OutputStream = File.OpenOutput(rutaDestio, fichero, False)
c.Snapshot.WriteToStream(out)
out.Close
It works well but I need to be in JPG format, how I can get it?
Thank you