| Package | com.esri.ags.layers.supportClasses |
| Class | public class ImageServiceParameters |
| Inheritance | ImageServiceParameters Object |
See also
| Property | Defined By | ||
|---|---|---|---|
| bandIds : Array
If there are multiple bands, you can either specify a single band to export, or you can change the
band combination (red, green, blue) by specifying the band number, for example, [2, 1, 3]. | ImageServiceParameters | ||
| compressionQuality : Number
Controls how much loss the image will be subjected to by the compression algorithm. | ImageServiceParameters | ||
| extent : Extent
Extent of image to be exported. | ImageServiceParameters | ||
| format : String
Image format. | ImageServiceParameters | ||
| height : Number
Requested image height in pixels. | ImageServiceParameters | ||
| imageSpatialReference : SpatialReference
Spatial reference of exported map. | ImageServiceParameters | ||
| interpolation : String
The resampling process of extrapolating the pixel values while transforming the raster dataset when it undergoes warping or when it changes coordinate space. | ImageServiceParameters | ||
| mosaicRule : MosaicRule
Specifies the mosaic rule when defining how individual images should be mosaicked. | ImageServiceParameters | ||
| noData : Number
The pixel value representing no information. | ImageServiceParameters | ||
| renderingRule : RasterFunction
Specifies the rendering rule for how the requested image should be rendered. | ImageServiceParameters | ||
| timeExtent : TimeExtent
The time instant or the time extent to export. | ImageServiceParameters | ||
| width : Number
Requested image width in pixels. | ImageServiceParameters | ||
| Constant | Defined By | ||
|---|---|---|---|
| INTERPOLATION_BILINEAR : String = RSP_BilinearInterpolation [static]
Resamples pixel by bilinear interpolation. | ImageServiceParameters | ||
| INTERPOLATION_CUBICCONVOLUTION : String = RSP_CubicConvolution [static]
Resamples pixel by cubic convolution. | ImageServiceParameters | ||
| INTERPOLATION_MAJORITY : String = RSP_Majority [static]
Resamples pixel by majority value. | ImageServiceParameters | ||
| INTERPOLATION_NEARESTNEIGHBOR : String = RSP_NearestNeighbor [static]
Resamples pixel by nearest neighbor. | ImageServiceParameters | ||
| bandIds | property |
public var bandIds:ArrayIf there are multiple bands, you can either specify a single band to export, or you can change the band combination (red, green, blue) by specifying the band number, for example, [2, 1, 3].
| compressionQuality | property |
public var compressionQuality:NumberControls how much loss the image will be subjected to by the compression algorithm. Valid value ranges of compression quality are from 0 to 100.
| extent | property |
public var extent:ExtentExtent of image to be exported.
| format | property |
public var format:StringImage format. Can be set to any of the following image types: jpgpng | png8 | png24 | png32 | jpg | bmp | gif. Note that support for the jpgpng format was added with ArcGIS Server 10.0. This format returns a JPG if there are no transparent pixels in the requested extent, otherwise it returns a PNG.
| height | property |
public var height:NumberRequested image height in pixels.
| imageSpatialReference | property |
public var imageSpatialReference:SpatialReferenceSpatial reference of exported map.
| interpolation | property |
public var interpolation:StringThe resampling process of extrapolating the pixel values while transforming the raster dataset when it undergoes warping or when it changes coordinate space. Valid values are: RSP_BilinearInterpolation | RSP_CubicConvolution | RSP_Majority | RSP_NearestNeighbor
| mosaicRule | property |
public var mosaicRule:MosaicRuleSpecifies the mosaic rule when defining how individual images should be mosaicked.
| noData | property |
public var noData:NumberThe pixel value representing no information.
| renderingRule | property |
public var renderingRule:RasterFunctionSpecifies the rendering rule for how the requested image should be rendered.
| timeExtent | property |
public var timeExtent:TimeExtentThe time instant or the time extent to export. Set the TimeExtent's startTime and endTime to the same time to define a time instant.
| width | property |
public var width:NumberRequested image width in pixels.
| INTERPOLATION_BILINEAR | Constant |
public static const INTERPOLATION_BILINEAR:String = RSP_BilinearInterpolationResamples pixel by bilinear interpolation.
| INTERPOLATION_CUBICCONVOLUTION | Constant |
public static const INTERPOLATION_CUBICCONVOLUTION:String = RSP_CubicConvolutionResamples pixel by cubic convolution.
| INTERPOLATION_MAJORITY | Constant |
public static const INTERPOLATION_MAJORITY:String = RSP_MajorityResamples pixel by majority value.
| INTERPOLATION_NEARESTNEIGHBOR | Constant |
public static const INTERPOLATION_NEARESTNEIGHBOR:String = RSP_NearestNeighborResamples pixel by nearest neighbor.