Hi,
I am using following code to convert rtf to pdf. It works fine is Windows but not in unix. I tried some options given by aspose, but did not work. Someone please suggest what will be the changes to following code to work in unix…
byte[] inputData = (byte[]) fileData;
InputStream ins = new ByteArrayInputStream(inputData);
Documen doc = new Document(ins);
ByteArrayOutputStream out = new ByteArrayOutputStream();
doc.save(out, SaveFormat.PDF);
inputData = out.toByteArray();
Thanks,
Sunam