public interface IZlibCompression
extends java.io.Serializable
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 =
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
IID
Deprecated.
Internal use only
|
static int |
IIDfee4d81c_25d9_4389_a20c_16821ec90719 |
static int |
xxDummy
Deprecated.
Internal use only
|
Modifier and Type | Method and Description |
---|---|
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.
|
static final int IIDfee4d81c_25d9_4389_a20c_16821ec90719
static final int xxDummy
static final java.lang.String IID
int getBufferSize(int size) throws java.io.IOException, AutomationException
size
- The size (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void compress(int inSize, byte[] pInBuff, int[] pOutSize, byte[] pOutBuff) throws java.io.IOException, AutomationException
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)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void compressByLevel(int inSize, byte[] pInBuff, int level, int[] pOutSize, byte[] pOutBuff) throws java.io.IOException, AutomationException
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)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void unCompress(int inSize, byte[] pInBuff, int[] pOutSize, byte[] pOutBuff) throws java.io.IOException, AutomationException
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)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.