SaveJpg(Stream,Int64,Boolean) Method

Example 

Stream to save the image to
Compression quality setting (0-100)
Save original/user-defined resolution
Save image to stream in JPG-format

Syntax

'Declaration
 
Public Overloads Sub SaveJpg( _
   ByVal stream As Stream, _
   ByVal quality As Long, _
   ByVal saveResolution As Boolean _
) 
public void SaveJpg( 
   Stream stream,
   long quality,
   bool saveResolution
)

Parameters

stream
Stream to save the image to
quality
Compression quality setting (0-100)
saveResolution
Save original/user-defined resolution

Example

// Save image to stream in jpg format with quality setting 90
MemoryStream memoryStream = new MemoryStream();
image.SaveJpg(memoryStream, 90, true);

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

This documentation was created using Document! X from Innovasys