我正在使用Qoppa pdf Toolkit for Android平板电脑应用程序将图像转换为pdf文档。我想转换它而不连接到网络,即离线。有没有可能将图像转换为pdf文档离线?
答案 0 :(得分:0)
Qoppa qPDF Toolkit在设备上运行。它不需要联系任何服务器,因此不需要互联网连接。
以下是提取PDF文档第一页图像的示例代码:
//this static allows the sdk to access font assets,
//it must be set prior to utilizing libraries
StandardFontTF.mAssetMgr = getAssets();
// Load a PDF document and get the first page
PDFDocument pdf = new PDFDocument("/sdcard/input.pdf", null);
PDFPage page = pdf.getPage(0);
// Render the page at a default 72DPI
Bitmap bm= page.getBitmap();
// Save the bitmap
OutputStream outStream = new FileOutputStream("/sdcard/output.jpg");
bm.compress(CompressFormat.JPEG, 80, outStream);
outStream.close();