| java.lang.Object org.apache.poi.ddf.EscherRecord org.apache.poi.ddf.EscherBlipRecord org.apache.poi.ddf.EscherMetafileBlip
EscherMetafileBlip | public class EscherMetafileBlip extends EscherBlipRecord (Code) | | author: Daniel Noll version: $Id$ |
RECORD_ID_EMF | final public static short RECORD_ID_EMF(Code) | | |
RECORD_ID_PICT | final public static short RECORD_ID_PICT(Code) | | |
RECORD_ID_WMF | final public static short RECORD_ID_WMF(Code) | | |
fillFields | public int fillFields(byte[] data, int offset, EscherRecordFactory recordFactory)(Code) | | This method deserializes the record from a byte array.
Parameters: data - The byte array containing the escher record information Parameters: offset - The starting offset into data . Parameters: recordFactory - May be null since this is not a container record. The number of bytes read from the byte array. |
getCompressedSize | public int getCompressedSize()(Code) | | |
getRecordSize | public int getRecordSize()(Code) | | Returns the number of bytes that are required to serialize this record.
Number of bytes |
getUID | public byte[] getUID()(Code) | | |
getUncompressedSize | public int getUncompressedSize()(Code) | | |
isCompressed | public boolean isCompressed()(Code) | | |
serialize | public int serialize(int offset, byte[] data, EscherSerializationListener listener)(Code) | | Serializes the record to an existing byte array.
Parameters: offset - the offset within the byte array Parameters: data - the data array to serialize to Parameters: listener - a listener for begin and end serialization events. Thisis useful because the serialization ishierarchical/recursive and sometimes you need to be ablebreak into that. the number of bytes written. |
setCompressed | public void setCompressed(boolean compressed)(Code) | | |
setCompressedSize | public void setCompressedSize(int compressedSize)(Code) | | |
setUID | public void setUID(byte[] field_1_UID)(Code) | | |
setUncompressedSize | public void setUncompressedSize(int uncompressedSize)(Code) | | |
|
|