Converter Utility ("jpeg","jpg","gif","tif","png","doc","docx","xls","xlsx","ppt","pptx") format to PDF document.
-
Java 1.7 or higher version and Maven installed system
-
Checkout project from https://github.com/ramesh-iyer/PDFConverterUtility.git
-
Unzip into any drive
-
RUN command: "mvn clean install"
-
A JAR file is created under Project/target location
-
Can test standalone by executing "java -jar pdf-converter-utility-1.0.0 inFilePath, outFileDir
Example- inFilePath = "C:\Users\USER\Desktop\resources\resume.jpg" outFileDir = "C:\Users\USER\Desktop\resources"
-
Can include the created JAR file with any Java application and invoke as below-
PdfConverter converter = new PdfConverter(); converter.convertToPdf(inFilePath, outFileDir);
---------------------------------------