Saves the bitmap into specified file.
Namespace:
Aurigma.GraphicsMill
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
Public Sub Save ( _ fileName As String, _ options As IEncoderOptions _ )
public void Save( string fileName, IEncoderOptions options )
Type: System.String
The name of the target file.This method determines from encoder options (regardless to the file extension).
Using this method is the same as creating appropriate writer derived from FormatWriter and running it in synchronous mode.
bitmap.Save("c:\result.jpg", New Aurigma.GraphicsMill.Codecs.JpegEncoderOptions(70, True))
bitmap.Save(@"c:\result.jpg", new Aurigma.GraphicsMill.Codecs.JpegEncoderOptions(70, true));