Saves this image as a Jpeg to the specified filename with the given quality.

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

Syntax

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

Parameters

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

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 .

See Also