com.esri.arcgis.system
Interface IGlobeCompression

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
IGlobeCompressionProxy

public interface IGlobeCompression
extends java.io.Serializable

COM Interface 'IGlobeCompression'. Generated 3/19/2015 1:21:00 PM from 'C:\ArcGIS\COM\esriSystem.olb'

Description: 'Provides access to compress and uncompress JPEG data used by ArcGlobe.' Generator Options: PromptForTypeLibraries = False ClashPrefix = esri_ LowerCaseMemberNames = True IDispatchOnly = False RetryOnReject = False AwtForOcxs = True ArraysAsObjects = False DontRenameSameMethods = False ImplementConflictingInterfaces = True ReuseMethods = True RenameConflictingInterfaceMethods = True GenBeanInfo = True GenerateJavadoc =


Field Summary
static java.lang.String IID
          Deprecated. Internal use only
static int IID650fc137_7869_4414_a511_f7e176d3301e
           
static int xxDummy
          Deprecated. Internal use only
 
Method Summary
 void endGlobeCompression()
          End the compression of Globe JPEG data.
 void globeFromJPEG(int inputSize, byte[] pSrcData, boolean use5551, int[] pOutputSize, byte[] pDestData)
          UnCompress the Globe JPEG format to rgba data.
 void globeToJPEG(int inputSize, byte[] pSrcData, int quality, int[] pOutputSize, byte[] pDestData)
          Compress rgba data to Globe JPEG format.
 void initGlobeCompression()
          Initialize for the compression of Globe JPEG data.
 

Field Detail

IID650fc137_7869_4414_a511_f7e176d3301e

static final int IID650fc137_7869_4414_a511_f7e176d3301e
See Also:
Constant Field Values

xxDummy

static final int xxDummy
Deprecated. Internal use only
See Also:
Constant Field Values

IID

static final java.lang.String IID
Deprecated. Internal use only
See Also:
Constant Field Values
Method Detail

initGlobeCompression

void initGlobeCompression()
                          throws java.io.IOException,
                                 AutomationException
Initialize for the compression of Globe JPEG data.

Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

endGlobeCompression

void endGlobeCompression()
                         throws java.io.IOException,
                                AutomationException
End the compression of Globe JPEG data.

Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

globeToJPEG

void globeToJPEG(int inputSize,
                 byte[] pSrcData,
                 int quality,
                 int[] pOutputSize,
                 byte[] pDestData)
                 throws java.io.IOException,
                        AutomationException
Compress rgba data to Globe JPEG format.

Parameters:
inputSize - The inputSize (in)
pSrcData - An unsigned byte (in)
quality - The quality (in)
pOutputSize - The pOutputSize (out: use single element array)
pDestData - An unsigned byte (out: use single element array)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

globeFromJPEG

void globeFromJPEG(int inputSize,
                   byte[] pSrcData,
                   boolean use5551,
                   int[] pOutputSize,
                   byte[] pDestData)
                   throws java.io.IOException,
                          AutomationException
UnCompress the Globe JPEG format to rgba data.

Parameters:
inputSize - The inputSize (in)
pSrcData - An unsigned byte (in)
use5551 - The use5551 (in)
pOutputSize - The pOutputSize (out: use single element array)
pDestData - An unsigned byte (out: use single element array)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.