https://issues.apache.org/bugzilla/show_bug.cgi?id=53227
Priority: P2
Bug ID: 53227
Assignee: [email protected]
Summary: Scaled image not visible in SXSSFWorkbook
Severity: major
Classification: Unclassified
Reporter: [email protected]
Hardware: PC
Status: NEW
Version: 3.8
Component: SXSSF
Product: POI
Created attachment 28774
--> https://issues.apache.org/bugzilla/attachment.cgi?id=28774&action=edit
not working XSL
After replacing org.apache.poi.hssf.usermodel.HSSFWorkbook by its streaming
equivalent org.apache.poi.xssf.streaming.SXSSFWorkbook in
the AddDimensionedImage.java sample:
package org.apache.poi.ss.examples;
public class AddDimensionedImage {
public static void main(String[] args) {
Workbook workbook = null;
//...
//workbook = new HSSFWorkbook();
workbook=new SXSSFWorkbook(100);
//...
}
}
the image supplied as command parameter is no longer rendered at all, i.e. the
cell is resized correctly but the image is not visible.
The used POI version is the latest stable one (3.8-20120326).
--
You are receiving this mail because:
You are the assignee for the bug.