Team,
We are trying to evaluate group docs conversion product (java) for our org to convert pcl to pdfs.
I get a com.groupdocs.conversion.exceptions.GroupDocsConversionException: Not supported file type error. I tried uploading the same file through your Online PCL to PDF Converter | Free GroupDocs Apps and I get the same error. Do you support pcl? Do i have to anything extra to enable this conversion?
Convert PCL to PDF in Java
I am using 21.4 version of your product
com.groupdocs groupdocs-conversion 21.4–code I am using
InputStream resource = new ClassPathResource(“sample.pcl”).getInputStream();
Converter converter = new Converter(resource);
PdfConvertOptions options = new PdfConvertOptions();
try (FileOutputStream fileOutputStream = new FileOutputStream(“output.pdf”)) {
converter.convert(fileOutputStream, options);
}