Package org.apache.poi.xwpf.usermodel
Class XWPFPicture
- java.lang.Object
-
- org.apache.poi.xwpf.usermodel.XWPFPicture
-
public class XWPFPicture extends Object
-
-
Constructor Summary
Constructors Constructor Description XWPFPicture(org.openxmlformats.schemas.drawingml.x2006.picture.CTPicture ctPic, XWPFRun run)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.openxmlformats.schemas.drawingml.x2006.picture.CTPicturegetCTPicture()Return the underlying CTPicture bean that holds all properties for this picturedoublegetDepth()Returns the depth of the picture (in points).StringgetDescription()XWPFPictureDatagetPictureData()Get the PictureData of the Picture, if present.doublegetWidth()Returns the width of the picture (in points).voidsetPictureReference(PackageRelationship rel)Link Picture with PictureData
-
-
-
Constructor Detail
-
XWPFPicture
public XWPFPicture(org.openxmlformats.schemas.drawingml.x2006.picture.CTPicture ctPic, XWPFRun run)
-
-
Method Detail
-
setPictureReference
public void setPictureReference(PackageRelationship rel)
Link Picture with PictureData
-
getCTPicture
public org.openxmlformats.schemas.drawingml.x2006.picture.CTPicture getCTPicture()
Return the underlying CTPicture bean that holds all properties for this picture- Returns:
- the underlying CTPicture bean
-
getPictureData
public XWPFPictureData getPictureData()
Get the PictureData of the Picture, if present. Note - not all kinds of picture have data
-
getWidth
public double getWidth()
Returns the width of the picture (in points).- Since:
- POI 4.1.1
-
getDepth
public double getDepth()
Returns the depth of the picture (in points).- Since:
- POI 4.1.1
-
getDescription
public String getDescription()
-
-