Can any body tell me is there any API in Java (1.5) which converts a Microsoft SNP file to PDF format please?
I found a command line tool (Snp2Pdf.exe) to convert SNP docs to PDF format. Where in we can invoke the same using Process and run the program.
Related
Is there a Java library that can read XCF image format (GIMP native file format), i.e. into BufferedImage?
I know there is a linux script xcf2png or xcf2jpg. Is it possible to read directly from Java?
There is no available library that can read or parse XCF file. If you don't want to convert it in the first place, you should be implementing your own parser, using https://gitlab.gnome.org/GNOME/gimp/blob/master/devel-docs/xcf.txt
I have an requirement where pdf files comes as an input and I have to read it and based some rules, I have to split each page of pdf. Rules will be drive based on data which will gets extracted from the given pdf.
I gone through with Apache Tika Toolkit which suppose to be build for such requirement, I believe. The data is getting extracted using this tool but in text format. I want the output back in pdf format. I am not sure whether its possible to not. Please suggest.
Thanks.
Manish.
Currently, Adobe doesn't offer PostScript drivers for Solaris OS. I need to print a PDF file using Java Program. I use the PDFBox 1.8.0. I think if I convert PDF to PS using java, I can print the file without any problem. Any of you know, How to convert PDF to PS using Java?
Could you please help me to find a way to convert the PDF file to XPS file with java programmable? Is it possible to do that as freeware library??
Its not the best solution but according to this thread you can use ghostscript (invoking command line command) to convert the PDF to Images, from those images then create an XPS document:
gswin32c.exe -Z, -sDEVICE=png16m-sOutputFile="%04do.png" "temp.pdf"
Currently we are developing a Java application to grab documents (all types can be stored on filenet) from Filenet and displaying it in pdf format, the issue is that I need a tool for converting all MS doc types (doc, docx, ppt, pptx,...) to pdf. I've tried Apache POI and iText but they just convert the Office 2007 formats and it just gets a plain text without any formatting and without images.
Second in image documents I already converted the images to pdf but I need to get the annotations made by IBM applet image viewer printed on the image. How can I get that?
I need to an opensource/free solution, any not-free solution (like Snowbound, adptel) will be rejected by the customer.
Any support will be appreciated
Check out docx4java, http://www.docx4java.org/trac/docx4j
Can handle .docx and .pptx exports and the documentation gives some info on how to handle older .doc files.