Cordova-pdf-Generator Ionic plugin

Asked

Viewed 194 times

1

I use the c plugin in Ionic to generate a pdf type file, but notice in the example below the writing is html. Does it have a way to instead I generate the pdf generate an html file?

import { Component } from '@angular/core';
 
import { NavController } from 'ionic-angular';
 
declare var cordova:any;    //global;
 
@Component({
  selector: 'page-home',
  templateUrl: 'home.html'
})
export class HomePage {
 
  constructor(public navCtrl: NavController) {
      const before = Date.now();
 
            document.addEventListener('deviceready', () => {
                console.log('DEVICE READY FIRED AFTER', (Date.now() - before), 'ms');
 
                //generate the pdf.
                cordova.plugins.pdf.fromData( '<html> <h1>  Hello World  </h1> </html>', options )
                .then(()=>'ok')
                .catch((err)=>console.err(err))
  }
 
}

  • does anyone know if this plugin when turning html into pdf has file size limit passed as html?

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.