Hi,
i have found a bug in aspose cells 7.6.0. When I use the following code on a linux machine, all umlauts are overlapped with the following character(s). See attached file. Is there a way to avoid this problem?
Versions:
java version "1.7.0_45"
Java™ SE Runtime Environment (build 1.7.0_45-b18)
Java HotSpot™ 64-Bit Server VM (build 24.45-b08, mixed mode)
Debian 6 x64
import com.aspose.cells.Cell;
import com.aspose.cells.Cells;
import com.aspose.cells.FileFormatType;
import com.aspose.cells.Workbook;
import com.aspose.cells.Worksheet;
import com.aspose.cells.WorksheetCollection;
public class CellsBug
{
public static void main(String[] args) throws Exception
{
Workbook workbook = new Workbook();
WorksheetCollection worksheets = workbook.getWorksheets();
Worksheet worksheet = worksheets.get(0);
Cells cells = worksheet.getCells();
Cell cell = cells.get(“A1”);
cell.setValue(“Der Bär hat größeren Ärger als der Österreicher haben würde”);
workbook.save(“test.pdf”, FileFormatType.PDF);
}
}
Kind regards
Peter
Hi,
Hi,
tried the newer version with no effect. Still the same overlapping lettters.
Kind regards
Peter
Hi,
Thanks a lot. This helped.
Hi,