使用Apache-POI,我试图在Excel工作表中插入一个图像,左上角有一个大字体(Calibri-32)。
使用众所周知的公式,我发现dy1
中的XSSFClientAnchor
值应该是260,000左右。
但是,打开Excel文件时,我收到一条错误消息,说明内容不合格
接受警告后,无论如何都会正确显示图像。
经过一些测试后,我发现dy的最大值没有从Excel中得到错误,似乎是190,500
。
我使用的字体,行高为55像素
因此,行的中途是0.5*55*Units.EMU_PER_PIXEL=261,938
。
使用较小的字体但使图像在行的末尾附近开始时会出现同样的问题
在所有情况下,如果dy1
的值大于190500,我会收到错误。
有没有人有线索?
更新:
我从xlsx文件中提取了xml
,我发现某处有一个负cy
值。我对xlsx的内容并不熟悉,但我希望它对某些人有用:
<xdr:wsDr xmlns:xdr="http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships">
<xdr:twoCellAnchor editAs="oneCell">
<xdr:from>
<xdr:col>2</xdr:col>
<xdr:colOff>147637</xdr:colOff>
<xdr:row>0</xdr:row>
<xdr:rowOff>261937</xdr:rowOff>
</xdr:from>
<xdr:to>
<xdr:col>5</xdr:col>
<xdr:colOff>2309812</xdr:colOff>
<xdr:row>13</xdr:row>
<xdr:rowOff>14287</xdr:rowOff>
</xdr:to>
<xdr:pic>
<xdr:nvPicPr>
<xdr:cNvPr id="1" name="Picture 1" descr="Picture"/>
<xdr:cNvPicPr>
<a:picLocks noChangeAspect="true"/>
</xdr:cNvPicPr>
</xdr:nvPicPr>
<xdr:blipFill>
<a:blip r:embed="rId1"/>
<a:stretch>
<a:fillRect/>
</a:stretch>
</xdr:blipFill>
<xdr:spPr>
<a:xfrm>
<a:off x="147637" y="261937"/>
<a:ext cx="195263" cy="-71437"/>
</a:xfrm>
<a:prstGeom prst="rect">
<a:avLst/>
</a:prstGeom>
</xdr:spPr>
</xdr:pic>
<xdr:clientData/>
</xdr:twoCellAnchor>
</xdr:wsDr>
更新2:
以下代码显示错误。如果dy1大于190500并且row2等于row1 + 1
/**********************************************************************************************************************
* Package specification
*********************************************************************************************************************/
package test;
/**********************************************************************************************************************
* Import definitions
*********************************************************************************************************************/
import java.awt.Desktop;
import java.io.*;
import org.apache.poi.ss.usermodel.*;
import org.apache.poi.util.*;
import org.apache.poi.xssf.streaming.*;
import org.apache.poi.xssf.usermodel.*;
/**********************************************************************************************************************
* This class implements a Minimal, Complete and Verifiable example for the problem of the maximum dy value for the
* {@link XSSFClientAnchor}.
*********************************************************************************************************************/
public class TestPictureOffset
{
/********************************************************************************************************************
* This constants represents the name of the file with the picture to import within the sheet.
*******************************************************************************************************************/
private static final String FILENAME_PICTURE = "./excel.png";
/********************************************************************************************************************
* These constants represents the width and height of the big cell within the sheet.
*******************************************************************************************************************/
private static final short BIG_CELL_COLUMN_WIDTH_IN_PIXELS = 317;
private static final short BIG_CELL_ROW_HEIGHT_IN_PIXELS = 56;
/********************************************************************************************************************
* This constants represents the default height of a cell within the sheet.
*******************************************************************************************************************/
private static final short DEFAULT_ROW_HEIGHT_IN_PIXELS = 20;
/********************************************************************************************************************
* This method places the specified picture on the sheet.
*******************************************************************************************************************/
private static void setPicture(int picture_index,
SXSSFSheet sheet)
{
// -----------------
// Initialize anchor
// -----------------
XSSFClientAnchor anchor;
anchor = (XSSFClientAnchor)sheet.getWorkbook().getCreationHelper().createClientAnchor();
anchor.setAnchorType(XSSFClientAnchor.AnchorType.MOVE_AND_RESIZE);
// -----------------------------
// Set position
// THIS IS WHERE THE FUN HAPPENS
// -----------------------------
anchor.setCol1(1);
anchor.setRow1(0);
anchor.setDx1((int)(0.5 * BIG_CELL_COLUMN_WIDTH_IN_PIXELS * Units.EMU_PER_PIXEL));
anchor.setDy1((int)(0.4 * BIG_CELL_ROW_HEIGHT_IN_PIXELS * Units.EMU_PER_PIXEL));
anchor.setCol2(anchor.getCol1() + 1);
anchor.setRow2(anchor.getRow1() + 1); // Fails if dy1 > 190500
//anchor.setRow2(anchor.getRow1() + 2); // OK independently from dy1
anchor.setDx2(0);
anchor.setDy2(0);
// ----------------------
// Show some measurements
// ----------------------
System.out.println("Got dy1: " + anchor.getDy1());
System.out.println("Maximum dy in default cell: " + (DEFAULT_ROW_HEIGHT_IN_PIXELS * Units.EMU_PER_PIXEL));
// ----------------
// Draw the picture
// ----------------
sheet.createDrawingPatriarch().createPicture(anchor, picture_index);
} // setPicture
/********************************************************************************************************************
* This method runs the application.
*******************************************************************************************************************/
private static void run()
throws Exception
{
// ---------------
// Create workbook
// ---------------
SXSSFWorkbook workbook;
workbook = new SXSSFWorkbook();
workbook.setCompressTempFiles(true);
// ------------
// Create sheet
// ------------
SXSSFSheet sheet;
sheet = workbook.createSheet("TestSheet");
sheet.trackAllColumnsForAutoSizing();
// --------------------------
// Create style with big font
// --------------------------
Font font;
XSSFCellStyle style;
font = workbook.createFont();
font.setFontHeightInPoints((short)32);
style = (XSSFCellStyle)workbook.createCellStyle();
style.setFont(font);
// -------------------
// Write something big
// -------------------
SXSSFRow row;
SXSSFCell cell;
row = sheet.createRow(0);
cell = row.createCell(1);
cell.setCellStyle(style);
cell.setCellValue("Hello everybody");
// -----------------------
// Auto resize this column
// -----------------------
sheet.autoSizeColumn(1);
// ------------
// Load picture
// ------------
InputStream input_stream;
byte[] bytes;
input_stream = new FileInputStream(FILENAME_PICTURE);
bytes = IOUtils.toByteArray(input_stream);
input_stream.close();
// ---------------
// Add to workbook
// ---------------
int picture_index;
picture_index = workbook.addPicture(bytes, SXSSFWorkbook.PICTURE_TYPE_PNG);
// -------------------------
// Position picture in sheet
// -------------------------
setPicture(picture_index, sheet);
// -------------
// Save workbook
// -------------
File output_file;
FileOutputStream output_stream;
output_file = new File("testxls.xlsx");
output_stream = new FileOutputStream(output_file);
workbook.write(output_stream);
output_stream.close();
workbook.close();
// -------
// Open it
// -------
Desktop.getDesktop().open(output_file);
} // run
/********************************************************************************************************************
* M A I N
*******************************************************************************************************************/
public static void main(String[] args)
{
try
{
run();
}
catch (Exception exception)
{
exception.printStackTrace();
}
} // main
} // class TestPictureOffset
答案 0 :(得分:1)
因此,我们需要确定负cy
可能来自何处。
首先:您不应该将常量用于BIG_CELL_COLUMN_WIDTH_IN_PIXELS和BIG_CELL_ROW_HEIGHT_IN_PIXELS。而是与apache poi相同,并使用sheet.getColumnWidthInPixels
和ImageUtils.getRowHeightInPixels来计算宽度和高度。
您需要根据字体高度设置行高。否则行保持默认高度,直到Excel
在工作表中呈现工作表。在默认行高中,如果大于190500,则dy1
在行外。因此,对于此行,它不是有效的dy1
。
XSSFDrawing.java
中有private CTTransform2D createXfrm(XSSFClientAnchor anchor),用于计算包含xfrm
的{{1}}。在那里,您可以看到,只有cy
低于cy
才会出现否定height + anchor.getDy2()
。
使用anchor.getDy1()
这就足够了。但是使用XSSF
使用SXSSF
计算private CTTransform2D createXfrm(XSSFClientAnchor anchor)
中的行高似乎是错误的。我怀疑这是因为由于流式传输方式,工作表中已经不知道行高。所以我们需要一个解决方法。设置大字体所需的默认行高,然后设置图片并在此之后重置默认行高。
以下适用于我:
ImageUtils.getRowHeightInPixels(sheet, row)