com.esri.arcgis.system
Interface IZlibCompression

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

public interface IZlibCompression
extends java.io.Serializable

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

Description: 'Provides access to compress and uncompress texture data.' 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 IIDfee4d81c_25d9_4389_a20c_16821ec90719
           
static int xxDummy
          Deprecated. Internal use only
 
Method Summary
 void compress(int inSize, byte[] pInBuff, int[] pOutSize, byte[] pOutBuff)
          Compress the current the input buffer.
 void compressByLevel(int inSize, byte[] pInBuff, int level, int[] pOutSize, byte[] pOutBuff)
          Compress the current the input buffer by level.
 int getBufferSize(int size)
          Estimated buffer size of compress/uncompress texture data.
 void unCompress(int inSize, byte[] pInBuff, int[] pOutSize, byte[] pOutBuff)
          UnCompress the current the input buffer.
 

Field Detail

IIDfee4d81c_25d9_4389_a20c_16821ec90719

static final int IIDfee4d81c_25d9_4389_a20c_16821ec90719
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

getBufferSize

int getBufferSize(int size)
                  throws java.io.IOException,
                         AutomationException
Estimated buffer size of compress/uncompress texture data.

Parameters:
size - The size (in)
Returns:
The pSize
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

compress

void compress(int inSize,
              byte[] pInBuff,
              int[] pOutSize,
              byte[] pOutBuff)
              throws java.io.IOException,
                     AutomationException
Compress the current the input buffer. Uses best compression.

Parameters:
inSize - The inSize (in)
pInBuff - An unsigned byte (in)
pOutSize - The pOutSize (in/out: use single element array)
pOutBuff - An unsigned byte (in/out: use single element array)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

compressByLevel

void compressByLevel(int inSize,
                     byte[] pInBuff,
                     int level,
                     int[] pOutSize,
                     byte[] pOutBuff)
                     throws java.io.IOException,
                            AutomationException
Compress the current the input buffer by level. If level less than 0, use default, if greater than best use best.

Parameters:
inSize - The inSize (in)
pInBuff - An unsigned byte (in)
level - The level (in)
pOutSize - The pOutSize (in/out: use single element array)
pOutBuff - An unsigned byte (in/out: use single element array)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

unCompress

void unCompress(int inSize,
                byte[] pInBuff,
                int[] pOutSize,
                byte[] pOutBuff)
                throws java.io.IOException,
                       AutomationException
UnCompress the current the input buffer.

Parameters:
inSize - The inSize (in)
pInBuff - An unsigned byte (in)
pOutSize - The pOutSize (in/out: use single element array)
pOutBuff - An unsigned byte (in/out: use single element array)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.