public class XSSFPictureData extends POIXMLDocumentPart implements PictureData
POIXMLDocumentPart.RelationPart| Modifier and Type | Field and Description |
|---|---|
protected static POIXMLRelation[] |
RELATIONS
Relationships for each known picture type
|
| Modifier | Constructor and Description |
|---|---|
protected |
XSSFPictureData()
Create a new XSSFPictureData node
|
protected |
XSSFPictureData(PackagePart part)
Construct XSSFPictureData from a package part
|
| Modifier and Type | Method and Description |
|---|---|
byte[] |
getData()
Gets the picture data as a byte array.
|
static int |
getMaxImageSize() |
String |
getMimeType() |
int |
getPictureType() |
protected void |
prepareForCommit()
*PictureData objects store the actual content in the part directly without keeping a
copy like all others therefore we need to handle them differently.
|
static void |
setMaxImageSize(int length) |
String |
suggestFileExtension() |
_invokeOnDocumentRead, addRelation, commit, createRelationship, createRelationship, createRelationship, getNextPartNumber, getPackagePart, getParent, getRelationById, getRelationId, getRelationPartById, getRelationParts, getRelations, getTargetPart, isCommitted, onDocumentCreate, onDocumentRead, onDocumentRemove, onSave, read, rebase, removeRelation, removeRelation, removeRelation, setCommitted, toStringprotected static final POIXMLRelation[] RELATIONS
protected XSSFPictureData()
XSSFWorkbook.addPicture(byte[], int)protected XSSFPictureData(PackagePart part)
part - the package part holding the drawing data,public static void setMaxImageSize(int length)
length - the max image size allowed for XSSF picturespublic static int getMaxImageSize()
public byte[] getData()
Note, that this call might be expensive since all the picture data is copied into a temporary byte array.
You can grab the picture data directly from the underlying package part as follows:
InputStream is = getPackagePart().getInputStream();
getData in interface PictureDatapublic String suggestFileExtension()
suggestFileExtension in interface PictureDatapublic int getPictureType()
getPictureType in interface PictureDatapublic String getMimeType()
getMimeType in interface PictureDataprotected void prepareForCommit()
prepareForCommit in class POIXMLDocumentPart