Pdf Image Converter Plugin
This plugin allows you to convert image to a pdf and a pdf to an image
Platforms:
this plugin works on android and iOSFunctions:
pdfImageConverter.toImage(pdfFile, pageNum, imagePath)
--convert pdf to imagepdfFile(string)(required), path to import pdf file via pathForFile
pageNum(number) page number to render (deafult is 0)
imagePath(string)(required), path to export image file via pathForFile
pdfImageConverter.getPageTotal(pdfFile)
-- returns pdf page total (number)pdfFile(string)(required), path to pdf file via pathForFile
pdfImageConverter.toPdf(imagePath, pdfFile)
-- image to pdfimagePath(string)(required), path to import image file via pathForFile
pdfFile(string)(required), path to export pdf file via pathForFile
pdfImageConverter.combinePdf(pdf1, pdf2, outputPDF)
-- combines 2 pdfspdf1(string)(required), path to combine first pdf file via pathForFile
pdf2(string)(required), path to combine secord pdf file via pathForFile
outputPDF(string)(required), path to export pdf file via pathForFile