Package org.apache.poi.hslf.blip
Class PICT
- java.lang.Object
 - 
- org.apache.poi.hslf.usermodel.HSLFPictureData
 - 
- org.apache.poi.hslf.blip.Metafile
 - 
- org.apache.poi.hslf.blip.PICT
 
 
 
 
- 
- All Implemented Interfaces:
 PictureData
public final class PICT extends Metafile
Represents Macintosh PICT picture data. 
- 
- 
Nested Class Summary
- 
Nested classes/interfaces inherited from class org.apache.poi.hslf.blip.Metafile
Metafile.Header 
- 
Nested classes/interfaces inherited from interface org.apache.poi.sl.usermodel.PictureData
PictureData.PictureType 
 - 
 
- 
Constructor Summary
Constructors Constructor Description PICT() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]getData()Returns the binary data of this PictureintgetSignature()PICT signature is0x5420or0x5430PictureData.PictureTypegetType()voidsetData(byte[] data)Sets the binary picture datavoidsetSignature(int signature)Sets the PICT signature - either0x5420or0x5430- 
Methods inherited from class org.apache.poi.hslf.blip.Metafile
getImageDimension 
- 
Methods inherited from class org.apache.poi.hslf.usermodel.HSLFPictureData
create, getChecksum, getChecksum, getContentType, getHeader, getImageDimensionInPixels, getIndex, getOffset, getRawData, getUID, setIndex, setOffset, setRawData, write 
 - 
 
 - 
 
- 
- 
Method Detail
- 
getData
public byte[] getData()
Description copied from interface:PictureDataReturns the binary data of this Picture- Returns:
 - picture data
 
 
- 
setData
public void setData(byte[] data) throws java.io.IOExceptionDescription copied from interface:PictureDataSets the binary picture data- Parameters:
 data- picture data- Throws:
 java.io.IOException
 
- 
getType
public PictureData.PictureType getType()
- Returns:
 - the picture type
 
 
- 
getSignature
public int getSignature()
PICT signature is0x5420or0x5430- Returns:
 - PICT signature (
0x5420or0x5430) 
 
- 
setSignature
public void setSignature(int signature)
Sets the PICT signature - either0x5420or0x5430- Specified by:
 setSignaturein classHSLFPictureData
 
 - 
 
 -