Modifier and Type | Field and Description |
---|---|
static int |
APPLICATION_AUTHENTICATION_CODE_SIZE
Specifies the application authentication code size.
|
static int |
APPLICATION_IDENTIFIER_SIZE
Specifies the application identifier size.
|
static int |
BLOCK_HEADER_SIZE
Specifies the block header size.
|
static byte |
BLOCK_SIZE
Extension name + version block size
|
static byte |
EXTENSION_LABEL
Extension label.
|
EXTENSION_INTRODUCER
Constructor and Description |
---|
GifApplicationExtensionBlock()
Initializes a new instance of the
GifApplicationExtensionBlock class. |
GifApplicationExtensionBlock(String applicationIdentifier,
byte[] applicationAuthenticationCode,
byte[] applicationData)
Initializes a new instance of the
GifApplicationExtensionBlock class. |
Modifier and Type | Method and Description |
---|---|
byte[] |
getApplicationAuthenticationCode()
Gets or sets the application authentication code.
|
byte[] |
getApplicationData()
Gets or sets the application data.
|
String |
getApplicationIdentifier()
Gets or sets the application identifier.
|
void |
setApplicationAuthenticationCode(byte[] value)
Gets or sets the application authentication code.
|
void |
setApplicationData(byte[] value)
Gets or sets the application data.
|
void |
setApplicationIdentifier(String value)
Gets or sets the application identifier.
|
isChanged, save, setChanged
public static final int BLOCK_HEADER_SIZE
Specifies the block header size.
public static final byte EXTENSION_LABEL
Extension label.
public static final byte BLOCK_SIZE
Extension name + version block size
public static final int APPLICATION_IDENTIFIER_SIZE
Specifies the application identifier size.
public static final int APPLICATION_AUTHENTICATION_CODE_SIZE
Specifies the application authentication code size.
public GifApplicationExtensionBlock()
Initializes a new instance of the GifApplicationExtensionBlock
class.
public GifApplicationExtensionBlock(String applicationIdentifier, byte[] applicationAuthenticationCode, byte[] applicationData)
Initializes a new instance of the GifApplicationExtensionBlock
class.
applicationIdentifier
- The application identifier.applicationAuthenticationCode
- The application authentication code.applicationData
- The application data.public byte[] getApplicationAuthenticationCode()
Gets or sets the application authentication code.
Value: The application authentication code.public void setApplicationAuthenticationCode(byte[] value)
Gets or sets the application authentication code.
Value: The application authentication code.public String getApplicationIdentifier()
Gets or sets the application identifier.
Value: The application identifier.public void setApplicationIdentifier(String value)
Gets or sets the application identifier.
Value: The application identifier.public byte[] getApplicationData()
Gets or sets the application data.
Value: The application data.public void setApplicationData(byte[] value)
Gets or sets the application data.
Value: The application data.