PdfiumAndroid
PdfiumAndroid copied to clipboard
pdfium for android( >= API 9 ) binding
My requirement is to get a InputStream of a password protected PDF and print the PDF using the InputStream . I can pass password protected PDF filepath and password. In...
JNI_FUNC(jstring, PdfiumCore, textGetText)(JNI_ARGS, jint textpage, jint nStart, jint nCount){ ``` FPDF_TEXTPAGE pTextPage = reinterpret_cast(textpage); FPDF_WCHAR* pBuff = new FPDF_WCHAR[nCount+1]; int ret = FPDFText_GetText(pTextPage, nStart, nCount, pBuff); if(ret == 0){ LOGE("FPDFText_GetText:...
09-13 16:08:00.816 19943-19943/com.shockwave.pdfiumtest E/com.shockwave.pdfium.PdfiumCore: Native libraries failed to load - java.lang.UnsatisfiedLinkError: dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/com.shockwave.pdfiumtest-2/base.apk"],nativeLibraryDirectories=[/data/app/com.shockwave.pdfiumtest-2/lib/arm64, /system/lib64, /vendor/lib64]]] couldn't find "libc++_shared.so" 09-13 16:08:00.816 19943-19943/com.shockwave.pdfiumtest D/com.shockwave.pdfium.PdfiumCore: Starting PdfiumAndroid 1.9.0 09-13 16:08:00.821 19943-19943/com.shockwave.pdfiumtest E/art:...
Activity which use this library finishing without Exceptions after paging heavy pdf-document (magazine) for many times (about 80 pages). Here is Log: 11-03 13:15:09.302 909-1240/system_process E/InputDispatcher﹕ channel '2c1798f6 com.shockwave.pdfiumtest/com.shockwave.pdfiumtest.PdfActivity (server)'...
It would be awesome if the project had documentation for building the shared objects again from source, and where the source code that produced them lives, and also what specific...
Am getting an exception while reading a pdf which is in phone internal memory. I have given the permission to read in the manifest file. But am getting an exception...
I think it will be useful to add some details in the README.md.
Hi, I just want to ask if you plan to add text search and selection features soon? That would be really nice! Thanks a lot!