fixed resizing pictures in XSSF, see Bugzilla 51160

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1124163 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yegor Kozlov 2011-05-18 10:07:15 +00:00
parent ae8910ed41
commit 66ae801d20
1 changed files with 2 additions and 2 deletions

View File

@ -239,7 +239,7 @@ public final class XSSFPicture extends XSSFShape implements Picture {
int dy2 = 0;
if(anchor.getDy1() > 0){
h += getRowHeightInPixels(row2) - anchor.getDy1();
h += getRowHeightInPixels(row2) - anchor.getDy1()/EMU_PER_PIXEL;
row2++;
}
@ -250,7 +250,7 @@ public final class XSSFPicture extends XSSFShape implements Picture {
}
if(h > scaledHeight) {
double ch = getRowHeightInPixels(row2 + 1);
double ch = getRowHeightInPixels(row2);
double delta = h - scaledHeight;
dy2 = (int)(EMU_PER_PIXEL*(ch-delta));
}