com.esri.arcgis.output
Interface IExportJPEG

All Superinterfaces:
Serializable
All Known Implementing Classes:
ExportJPEG

public interface IExportJPEG
extends Serializable

Provides access to members that control the JPEG (Joint Photographic Experts Group) Export.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.


Method Summary
 short getQuality()
          The JPEG compression / image quality.
 boolean isProgressiveMode()
          The progressive JPEG export mode.
 void setProgressiveMode(boolean bprogressive)
          The progressive JPEG export mode.
 void setQuality(short quality)
          The JPEG compression / image quality.
 

Method Detail

setQuality

void setQuality(short quality)
                throws IOException,
                       AutomationException
The JPEG compression / image quality. Range (0..100). Default is 100 (no compression / best quality).

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Supported Platforms

Windows, Solaris, Linux

Parameters:
quality - The quality (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getQuality

short getQuality()
                 throws IOException,
                        AutomationException
The JPEG compression / image quality. Range (0..100). Default is 100 (no compression / best quality).

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Supported Platforms

Windows, Solaris, Linux

Returns:
The quality
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setProgressiveMode

void setProgressiveMode(boolean bprogressive)
                        throws IOException,
                               AutomationException
The progressive JPEG export mode.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Supported Platforms

Windows, Solaris, Linux

Parameters:
bprogressive - The bprogressive (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

isProgressiveMode

boolean isProgressiveMode()
                          throws IOException,
                                 AutomationException
The progressive JPEG export mode.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Supported Platforms

Windows, Solaris, Linux

Returns:
The bprogressive
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.