EscherSpgrRecordpublic class EscherSpgrRecord extends EscherRecord The spgr record defines information about a shape group. Groups in escher
are simply another form of shape that you can't physically see. |
Fields Summary |
---|
public static final short | RECORD_ID | public static final String | RECORD_DESCRIPTION | private int | field_1_rectX1 | private int | field_2_rectY1 | private int | field_3_rectX2 | private int | field_4_rectY2 |
Methods Summary |
---|
public int | fillFields(byte[] data, int offset, org.apache.poi.ddf.EscherRecordFactory recordFactory)This method deserializes the record from a byte array.
int bytesRemaining = readHeader( data, offset );
int pos = offset + 8;
int size = 0;
field_1_rectX1 = LittleEndian.getInt( data, pos + size );size+=4;
field_2_rectY1 = LittleEndian.getInt( data, pos + size );size+=4;
field_3_rectX2 = LittleEndian.getInt( data, pos + size );size+=4;
field_4_rectY2 = LittleEndian.getInt( data, pos + size );size+=4;
bytesRemaining -= size;
if (bytesRemaining != 0) throw new RecordFormatException("Expected no remaining bytes but got " + bytesRemaining);
// remainingData = new byte[bytesRemaining];
// System.arraycopy( data, pos + size, remainingData, 0, bytesRemaining );
return 8 + size + bytesRemaining;
| public short | getRecordId()The 16 bit identifier of this shape group record.
return RECORD_ID;
| public java.lang.String | getRecordName()The short name for this record
return "Spgr";
| public int | getRecordSize()Returns the number of bytes that are required to serialize this record.
return 8 + 16;
| public int | getRectX1()The starting top-left coordinate of child records.
return field_1_rectX1;
| public int | getRectX2()The starting bottom-right coordinate of child records.
return field_3_rectX2;
| public int | getRectY1()The starting top-left coordinate of child records.
return field_2_rectY1;
| public int | getRectY2()The starting bottom-right coordinate of child records.
return field_4_rectY2;
| public int | serialize(int offset, byte[] data, org.apache.poi.ddf.EscherSerializationListener listener)This method serializes this escher record into a byte array.
listener.beforeRecordSerialize( offset, getRecordId(), this );
LittleEndian.putShort( data, offset, getOptions() );
LittleEndian.putShort( data, offset + 2, getRecordId() );
int remainingBytes = 16;
LittleEndian.putInt( data, offset + 4, remainingBytes );
LittleEndian.putInt( data, offset + 8, field_1_rectX1 );
LittleEndian.putInt( data, offset + 12, field_2_rectY1 );
LittleEndian.putInt( data, offset + 16, field_3_rectX2 );
LittleEndian.putInt( data, offset + 20, field_4_rectY2 );
// System.arraycopy( remainingData, 0, data, offset + 26, remainingData.length );
// int pos = offset + 8 + 18 + remainingData.length;
listener.afterRecordSerialize( offset + getRecordSize(), getRecordId(), offset + getRecordSize(), this );
return 8 + 16;
| public void | setRectX1(int x1)The starting top-left coordinate of child records.
this.field_1_rectX1 = x1;
| public void | setRectX2(int x2)The starting bottom-right coordinate of child records.
this.field_3_rectX2 = x2;
| public void | setRectY1(int y1)The starting top-left coordinate of child records.
this.field_2_rectY1 = y1;
| public void | setRectY2(int field_4_rectY2)The starting bottom-right coordinate of child records.
this.field_4_rectY2 = field_4_rectY2;
| public java.lang.String | toString()
String nl = System.getProperty("line.separator");
// String extraData;
// ByteArrayOutputStream b = new ByteArrayOutputStream();
// try
// {
// HexDump.dump(this.remainingData, 0, b, 0);
// extraData = b.toString();
// }
// catch ( Exception e )
// {
// extraData = "error";
// }
return getClass().getName() + ":" + nl +
" RecordId: 0x" + HexDump.toHex(RECORD_ID) + nl +
" Options: 0x" + HexDump.toHex(getOptions()) + nl +
" RectX: " + field_1_rectX1 + nl +
" RectY: " + field_2_rectY1 + nl +
" RectWidth: " + field_3_rectX2 + nl +
" RectHeight: " + field_4_rectY2 + nl;
|
|