Saves this image to the specified filename.

Namespace: ImageSense
Assembly: ImageSense (in ImageSense.dll) Version: 1.0.0.0 (1.0.0.0)

Collapse imageSyntax

C#
public static void SaveImage(
	this Image image,
	string filename
)
Visual Basic
<ExtensionAttribute> _
Public Shared Sub SaveImage ( _
	image As Image, _
	filename As String _
)
Visual C++
[ExtensionAttribute]
public:
static void SaveImage(
	Image^ image, 
	String^ filename
)

Parameters

image
Type: System.Drawing..::..Image
The image to save.
filename
Type: System..::..String
The file where the image will be saved.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Image. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .

Collapse imageSee Also