Dear team,
There is an issue with the conversion of some EPS files to PDF. In the case of the attached image, the font is not visible and the colors are different. Here is the code snippet:
PsDocument document = new PsDocument(vectorInputStream);
File file = new File("output.pdf");
try (FileOutputStream outputStream = new FileOutputStream(file)) {
document.save(new PdfDevice(outputStream), new PdfSaveOptions());
}
input_output.zip (765.5 KB)