Kaliko.ImageLibrary
SaveImage Method
Image format to save the file in, for example ImageFormat.Tiff
Generic method that will save the image in the specified ImageFormat.
Syntax
'Declaration
Public Sub SaveImage( _ ByVal fileName As System.String, _ ByVal format As System.Drawing.Imaging.ImageFormat _ )
'Usage
Dim instance As KalikoImage Dim fileName As System.String Dim format As System.Drawing.Imaging.ImageFormat instance.SaveImage(fileName, format)
Parameters
- fileName
- format
- Image format to save the file in, for example ImageFormat.Tiff
Example
// Save image to file system in the selected format image.SaveImage(@"C:\MyImages\Output.tif", ImageFormat.Tiff);
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also