com.esri.arcgis.carto
Interface ITileImageInfo

All Superinterfaces:
Serializable
All Known Subinterfaces:
ITileImageInfo2
All Known Implementing Classes:
TileImageInfo

public interface ITileImageInfo
extends Serializable

Provides access to more members that provide the map cache info.

Superseded By

ITileImageInfo2

Description

This interface is new at ArcGIS 9.3.

Remarks

Format can have values (PNG8, PNG24, PNG32 and JPEG). If the selected format is JPEG, then the compression quality can have a value from 0 to 100. The value of format must be used in constructing the url to the tile.

Product Availability

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


Method Summary
 int getCompressionQuality()
          The cache tile image compression quality.
 String getFormat()
          The cache tile format.
 void setCompressionQuality(int pQuality)
          The cache tile image compression quality.
 void setFormat(String pFormat)
          The cache tile format.
 

Method Detail

getFormat

String getFormat()
                 throws IOException,
                        AutomationException
The cache tile format.

Product Availability

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

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

setFormat

void setFormat(String pFormat)
               throws IOException,
                      AutomationException
The cache tile format.

Product Availability

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

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

getCompressionQuality

int getCompressionQuality()
                          throws IOException,
                                 AutomationException
The cache tile image compression quality.

Product Availability

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

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

setCompressionQuality

void setCompressionQuality(int pQuality)
                           throws IOException,
                                  AutomationException
The cache tile image compression quality.

Product Availability

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

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