生成的图像在Linux服务器上显示为##############的大数值

时间:2017-08-31 15:40:34

标签: linux aspose

我正在尝试从Excel工作表中生成图像,而excel工作表包含非常大的数据。但是一旦生成了图像,它就会在linux上显示哈希值而不是数值,但在窗口中它的数值正确显示

 ImageOrPrintOptions imgOptions = new ImageOrPrintOptions();
                    imgOptions.setImageFormat(ImageFormat.getPng());
                    imgOptions.setOnePagePerSheet(true);
                    imgOptions.setCellAutoFit(tue);
                    imgOptions.setQuality(20);
                    SheetRender sr = new SheetRender(sheet, imgOptions);
                    System.out.println("Page Count = " + sr.getPageCount());
                    File outputFile = new File(imgFile);
                    FileOutputStream fos = new FileOutputStream(outputFile);
                    sr.toImage(0, fos);

0 个答案:

没有答案