public interface ITextureCompression
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 |
IIDb5f3860a_fce1_4e71_8f12_bc5c6bb0f280 |
static int |
xxDummy
Deprecated.
Internal use only
|
Modifier and Type | Method and Description |
---|---|
void |
compressTexture(int type,
int width,
int height,
int channels,
byte[] pInData,
int[] pByteCount,
byte[] ppOutBuff)
Compress the current the input buffer.
|
void |
freeCompressData(byte[] pInData)
Free the Compression buffer created in Compress texture.
|
int |
getCompressionQuality()
Compression quality of texture data.
|
boolean |
isBSQ()
Indicates output should be packed in BSQ pixel interleave format.
|
void |
setBSQ(boolean pBSQ)
Indicates output should be packed in BSQ pixel interleave format.
|
void |
setCompressionQuality(int quality)
Compression quality of texture data.
|
void |
unCompressTexture(int type,
int width,
int height,
int channels,
int size,
byte[] pInData,
byte[] pOutBuff)
UnCompress the current the input buffer.
|
static final int IIDb5f3860a_fce1_4e71_8f12_bc5c6bb0f280
static final int xxDummy
static final java.lang.String IID
void compressTexture(int type, int width, int height, int channels, byte[] pInData, int[] pByteCount, byte[] ppOutBuff) throws java.io.IOException, AutomationException
type
- A com.esri.arcgis.system.esriTextureCompressionType constant (in)width
- The width (in)height
- The height (in)channels
- The channels (in)pInData
- An unsigned byte (in)pByteCount
- The pByteCount (out: use single element array)ppOutBuff
- An unsigned byte (out: use single element array)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void unCompressTexture(int type, int width, int height, int channels, int size, byte[] pInData, byte[] pOutBuff) throws java.io.IOException, AutomationException
type
- A com.esri.arcgis.system.esriTextureCompressionType constant (in)width
- The width (in)height
- The height (in)channels
- The channels (in)size
- The size (in)pInData
- An unsigned byte (in)pOutBuff
- An unsigned byte (out: use single element array)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void setCompressionQuality(int quality) throws java.io.IOException, AutomationException
quality
- The quality (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.int getCompressionQuality() throws java.io.IOException, AutomationException
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void freeCompressData(byte[] pInData) throws java.io.IOException, AutomationException
pInData
- An unsigned byte (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.boolean isBSQ() throws java.io.IOException, AutomationException
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void setBSQ(boolean pBSQ) throws java.io.IOException, AutomationException
pBSQ
- The pBSQ (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.