Git Product home page Git Product logo

Comments (5)

bpampuch avatar bpampuch commented on September 12, 2024

Could you include a sample doc definition which is troublesome? I'm not able to reproduce this

from pdfmake.

mwillma avatar mwillma commented on September 12, 2024

I'm not sure what are you asking for.
I've created new, clean GWT project with just above methods in the main class.
The only code I use is in the provided example.

GWT is in version 2.6
I'm using (latest) full version of pdfmake (minified version still generates an error)

What else should i provide ?

from pdfmake.

bpampuch avatar bpampuch commented on September 12, 2024

I'd like to see the troublesome doc definition which you say does not get split into pages. Just send a stringified version of json with whole stack. As you've written - this looks kinda strange

from pdfmake.

palavrov avatar palavrov commented on September 12, 2024

Got the same problem

[48268:1209/172822:INFO:CONSOLE(66)] "Uncaught Unrecognized document structure: ["First paragraph","Another paragraph, this time a little bit longer to make sure, this line will be divided into at least two lines"]", source: /Users/palavrov/codigi/ttk/fg-sys/app/node_modules/pdfmake/src/docMeasure.js (66)

Here is my code:

    $scope.exportPDF = function() {
        $scope.pdfExportDialog.getFilePath(function(err, path) {
            if(err)
                return;

            var pdfMake = require("pdfmake");

            var fonts = { 
                Roboto: {
                    normal: 'Roboto-Regular.ttf',
                    bold: 'Roboto-Medium.ttf',
                    italics: 'Roboto-Italic.ttf',
                    bolditalics: 'Roboto-Italic.ttf'
                }   
            };  

            var pdfMaker = new pdfMake(fonts);

            var fs = require("fs");

            var docDefinition = { 
                content: [
                    "First paragraph",
                    "Another paragraph, this time a little bit longer to make sure, this line will be divided into at least two lines"
                ]   
            };  

            var pdfDoc = pdfMaker.createPdfKitDocument(docDefinition);
            pdfDoc.pipe(fs.createWriteStream(path));
            pdfDoc.end();

        }.bind(this));
    }.bind(this);

for some reasons this check doesn't work in my angular node-webkit app

DocMeasure.prototype.measureNode = function(node) {                       
    // expand shortcuts                                                   
    if (node instanceof Array) {                                          
        node = { stack: node };                                           
    } else if (typeof node == 'string' || node instanceof String) {       
        node = { text: node };                                            
    }                                                                     

from pdfmake.

palavrov avatar palavrov commented on September 12, 2024

Catch it. It is because node-webkit executes javascript in different contexts causing weird behaviour of "instanceof" operator. Patching pdfmake to be compatible with nw weirdness seems too much. Better way is to rearrange my code so execution context is the same i.e. instead of "npm install pdfmake" and "require('pdfmake')" to use "bower install pdfmake" and then to include the script into the html page.
See this nw issue for reference:
nwjs/nw.js#890

from pdfmake.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.