|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.poi.xssf.streaming.SXSSFPicture
public final class SXSSFPicture
Streaming version of Picture. Most of the code is a copy of the non-streaming XSSFPicture code. This is necessary as a private method getRowHeightInPixels of that class needs to be changed, which is called by a method call chain nested several levels. The main change is to access the rows in the SXSSF sheet, not the always empty rows in the XSSF sheet when checking the row heights.
Method Summary | |
---|---|
XSSFAnchor |
getAnchor()
|
XSSFClientAnchor |
getClientAnchor()
|
org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTPicture |
getCTPicture()
Return the underlying CTPicture bean that holds all properties for this picture |
XSSFDrawing |
getDrawing()
|
java.awt.Dimension |
getImageDimension()
Return the dimension of the embedded image in pixel |
protected static java.awt.Dimension |
getImageDimension(PackagePart part,
int type)
Return the dimension of this image |
Shape |
getParent()
|
XSSFPictureData |
getPictureData()
Return picture data for this shape |
XSSFClientAnchor |
getPreferredSize()
Calculate the preferred size for this picture. |
XSSFClientAnchor |
getPreferredSize(double scale)
Calculate the preferred size for this picture. |
XSSFClientAnchor |
getPreferredSize(double scaleX,
double scaleY)
Calculate the preferred size for this picture. |
java.lang.String |
getShapeName()
|
protected org.openxmlformats.schemas.drawingml.x2006.main.CTShapeProperties |
getShapeProperties()
|
XSSFSheet |
getSheet()
|
boolean |
isNoFill()
Whether this shape is not filled with a color |
void |
resize()
Reset the image to the original size. |
void |
resize(double scale)
Reset the image to the original size. |
void |
resize(double scaleX,
double scaleY)
Resize the image. |
void |
setFillColor(int red,
int green,
int blue)
Sets the color used to fill this shape using the solid fill pattern. |
void |
setLineStyleColor(int red,
int green,
int blue)
The color applied to the lines of this shape. |
void |
setNoFill(boolean noFill)
Sets whether this shape is filled or transparent. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
@Internal public org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTPicture getCTPicture()
public void resize()
Please note, that this method works correctly only for workbooks with the default font size (Calibri 11pt for .xlsx). If the default font is changed the resized image can be streched vertically or horizontally.
resize
in interface Picture
Picture.resize(double, double)
public void resize(double scale)
Please note, that this method works correctly only for workbooks with the default font size (Calibri 11pt for .xlsx). If the default font is changed the resized image can be streched vertically or horizontally.
resize
in interface Picture
scale
- the amount by which image dimensions are multiplied relative to the original size.
resize(1.0)
sets the original size, resize(0.5)
resize to 50% of the original,
resize(2.0)
resizes to 200% of the original.Picture.resize(double, double)
public XSSFClientAnchor getPreferredSize()
getPreferredSize
in interface Picture
public XSSFClientAnchor getPreferredSize(double scale)
scale
- the amount by which image dimensions are multiplied relative to the original size.
protected static java.awt.Dimension getImageDimension(PackagePart part, int type)
part
- the package part holding raw picture datatype
- type of the picture: Workbook.PICTURE_TYPE_JPEG
,
Workbook.PICTURE_TYPE_PNG
or Workbook.PICTURE_TYPE_DIB
public XSSFPictureData getPictureData()
getPictureData
in interface Picture
protected org.openxmlformats.schemas.drawingml.x2006.main.CTShapeProperties getShapeProperties()
public XSSFAnchor getAnchor()
getAnchor
in interface Shape
public void resize(double scaleX, double scaleY)
Picture
Please note, that this method works correctly only for workbooks with the default font size (Arial 10pt for .xls and Calibri 11pt for .xlsx). If the default font is changed the resized image can be streched vertically or horizontally.
resize(1.0,1.0)
keeps the original size,
resize(0.5,0.5)
resize to 50% of the original,
resize(2.0,2.0)
resizes to 200% of the original.
resize(
resizes to the dimension of the embedded image.
Double.MAX_VALUE
,Double.MAX_VALUE
)
resize
in interface Picture
scaleX
- the amount by which the image width is multiplied relative to the original width.scaleY
- the amount by which the image height is multiplied relative to the original height.public XSSFClientAnchor getPreferredSize(double scaleX, double scaleY)
Picture
getPreferredSize
in interface Picture
scaleX
- the amount by which image width is multiplied relative to the original width.scaleY
- the amount by which image height is multiplied relative to the original height.
public java.awt.Dimension getImageDimension()
Picture
getImageDimension
in interface Picture
public XSSFClientAnchor getClientAnchor()
getClientAnchor
in interface Picture
public XSSFDrawing getDrawing()
public XSSFSheet getSheet()
getSheet
in interface Picture
public java.lang.String getShapeName()
getShapeName
in interface Shape
public Shape getParent()
getParent
in interface Shape
public boolean isNoFill()
Shape
isNoFill
in interface Shape
public void setNoFill(boolean noFill)
Shape
setNoFill
in interface Shape
noFill
- if true then no fill will be applied to the shape element.public void setFillColor(int red, int green, int blue)
Shape
setFillColor
in interface Shape
public void setLineStyleColor(int red, int green, int blue)
Shape
setLineStyleColor
in interface Shape
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |