0

我正在使用 Qoppa pdf Toolkit for android 平板电脑应用程序将图像转换为 pdf 文档。我想在不连接到网络的情况下进行转换,即离线。有没有可能离线将图像转换为 pdf 文档?

4

2 回答 2

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();
于 2016-04-15T18:23:08.970 回答
-1

尝试使用扫描仪。您也可以在 PDF 扫描仪上查看。

于 2015-07-14T22:07:59.927 回答