/* ==================================================================== Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==================================================================== */ package org.apache.poi.xssf.usermodel; import java.awt.Dimension; import java.io.IOException; import org.apache.poi.openxml4j.opc.PackagePart; import org.apache.poi.openxml4j.opc.PackageRelationship; import org.apache.poi.ss.usermodel.Picture; import org.apache.poi.ss.usermodel.Workbook; import org.apache.poi.ss.util.ImageUtils; import org.apache.poi.util.Internal; import org.apache.poi.util.POILogFactory; import org.apache.poi.util.POILogger; import org.openxmlformats.schemas.drawingml.x2006.main.CTBlipFillProperties; import org.openxmlformats.schemas.drawingml.x2006.main.CTNonVisualDrawingProps; import org.openxmlformats.schemas.drawingml.x2006.main.CTNonVisualPictureProperties; import org.openxmlformats.schemas.drawingml.x2006.main.CTPoint2D; import org.openxmlformats.schemas.drawingml.x2006.main.CTPositiveSize2D; import org.openxmlformats.schemas.drawingml.x2006.main.CTPresetGeometry2D; import org.openxmlformats.schemas.drawingml.x2006.main.CTShapeProperties; import org.openxmlformats.schemas.drawingml.x2006.main.CTTransform2D; import org.openxmlformats.schemas.drawingml.x2006.main.STShapeType; import org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTPicture; import org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTPictureNonVisual; /** * Represents a picture shape in a SpreadsheetML drawing. * * @author Yegor Kozlov */ public final class XSSFPicture extends XSSFShape implements Picture { private static final POILogger logger = POILogFactory.getLogger(XSSFPicture.class); /** * Column width measured as the number of characters of the maximum digit width of the * numbers 0, 1, 2, ..., 9 as rendered in the normal style's font. There are 4 pixels of margin * padding (two on each side), plus 1 pixel padding for the gridlines. * * This value is the same for default font in Office 2007 (Calibry) and Office 2003 and earlier (Arial) */ // private static float DEFAULT_COLUMN_WIDTH = 9.140625f; /** * A default instance of CTShape used for creating new shapes. */ private static CTPicture prototype; /** * This object specifies a picture object and all its properties */ private CTPicture ctPicture; /** * Construct a new XSSFPicture object. This constructor is called from * {@link XSSFDrawing#createPicture(XSSFClientAnchor, int)} * * @param drawing the XSSFDrawing that owns this picture */ protected XSSFPicture(XSSFDrawing drawing, CTPicture ctPicture){ this.drawing = drawing; this.ctPicture = ctPicture; } /** * Returns a prototype that is used to construct new shapes * * @return a prototype that is used to construct new shapes */ protected static CTPicture prototype(){ if(prototype == null) { CTPicture pic = CTPicture.Factory.newInstance(); CTPictureNonVisual nvpr = pic.addNewNvPicPr(); CTNonVisualDrawingProps nvProps = nvpr.addNewCNvPr(); nvProps.setId(1); nvProps.setName("Picture 1"); nvProps.setDescr("Picture"); CTNonVisualPictureProperties nvPicProps = nvpr.addNewCNvPicPr(); nvPicProps.addNewPicLocks().setNoChangeAspect(true); CTBlipFillProperties blip = pic.addNewBlipFill(); blip.addNewBlip().setEmbed(""); blip.addNewStretch().addNewFillRect(); CTShapeProperties sppr = pic.addNewSpPr(); CTTransform2D t2d = sppr.addNewXfrm(); CTPositiveSize2D ext = t2d.addNewExt(); //should be original picture width and height expressed in EMUs ext.setCx(0); ext.setCy(0); CTPoint2D off = t2d.addNewOff(); off.setX(0); off.setY(0); CTPresetGeometry2D prstGeom = sppr.addNewPrstGeom(); prstGeom.setPrst(STShapeType.RECT); prstGeom.addNewAvLst(); prototype = pic; } return prototype; } /** * Link this shape with the picture data * * @param rel relationship referring the picture data */ protected void setPictureReference(PackageRelationship rel){ ctPicture.getBlipFill().getBlip().setEmbed(rel.getId()); } /** * Return the underlying CTPicture bean that holds all properties for this picture * * @return the underlying CTPicture bean */ @Internal public CTPicture getCTPicture(){ return ctPicture; } /** * Reset the image to the dimension of the embedded image * * @see #resize(double, double) */ public void resize(){ resize(Double.MAX_VALUE); } /** * Resize the image proportionally. * * @see #resize(double, double) */ public void resize(double scale) { resize(scale, scale); } /** * Resize the image relatively to its current size. *
* 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(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({@link Double#MAX_VALUE},{@link Double#MAX_VALUE})
resizes to the dimension of the embedded image.
*