cesarvr / pdf-generator

Cordova plugin to generate pdf in the client-side
MIT License
107 stars 61 forks source link

Unable to add local images after upgrading to Android API 30 #141

Open iactiva opened 2 years ago

iactiva commented 2 years ago

Hi there,

There seems API 30 is blocking anyhow embedding local images with pdf-creator. I'm desperate since I've tried everything I could figue as solution.

The PDF file is properly created and it is correctly readable however images (any local content) are not displaying, although remote https images still work. It stopped working after upgrading from Android API 29 to API 30, and API 30 is now mandatory. Are you experiencing the same issue?

Everything I've tried displays the images in html using img [src]=“IMAGE”, but images are no longer displayed in the PDF file.

What I've tried:

  1. Using base64 images: IMAGE = this.sanitizer.bypassSecurityTrustUrl("data:image/jpeg;base64," + b64);

  2. Using local image url:

    
    let url = this.file.dataDirectory + img;
    const win: any = window;
    const fixedURL = win.Ionic.WebView.convertFileSrc(url);
    IMAGE = this.sanitizer.bypassSecurityTrustResourceUrl(fixedURL);
or
`IMAGE = IMAGE['changingThisBreaksApplicationSecurity’]`

3. Using asset relative URL.

4. Using local path:
`IMAGE = this.file.dataDirectory + img`

I'd appreciate any help.

My code:

let htmlSample="<img style='width:150px' src=‘"+IMAGE+"' />"; let options = { documentSize: 'A4', type: 'base64' }

this.pdfGenerator.fromData(htmlSample, options). then((base64) => { var fileName="generated"; this.saveBase64(base64, fileName) .then(obj => { if (obj) { this.showPDF(obj); } }).catch(e => { }); });

showPDF(file) { let filePath = this.file.dataDirectory; let namefile=file; this.fileOpener.open(filePath+namefile, 'application/pdf'); }

saveBase64(base64:string, name:string):Promise{ return new Promise((resolve, reject)=>{ let UUID = name+ (new Date().getTime()).toString(16); let blob=this.b64toBlob(base64, 'application/pdf') this.file.writeFile(this.file.dataDirectory, UUID + '.pdf', blob, {replace: true}) .then(fe => { return resolve( UUID + '.pdf' ); }).catch(err => { reject(err); }) }) }

b64toBlob(b64Data, contentType) { contentType = contentType || ''; var sliceSize = 512; var byteCharacters = atob(b64Data); var byteArrays = []; for (var offset = 0; offset < byteCharacters.length; offset += sliceSize) { var slice = byteCharacters.slice(offset, offset + sliceSize); var byteNumbers = new Array(slice.length); for (var i = 0; i < slice.length; i++) { byteNumbers[i] = slice.charCodeAt(i); } var byteArray = new Uint8Array(byteNumbers); byteArrays.push(byteArray); } var blob = new Blob(byteArrays, {type: contentType}); return blob; }



Conditions:
"@ionic-native/pdf-generator": "^5.36.0”,
Latest cordova-pdf-generator plugin
 "cordova-android": "^10.1.2”,
Angular 8
Ionic 5
Android API 30
pchitrakar-tt commented 2 years ago

I am having the same issue. I cannot get the image into pdf. I like this plugin which is very simple and easy to use and don't really want to switch to other library but I may have to use jspdf or pdfmake for better support. Please fix this bug soon.