samt / barcode

barcode generation for nodejs
MIT License
69 stars 59 forks source link

Converting circular structure to JSON #7

Open remotevision opened 9 years ago

remotevision commented 9 years ago

have you seen this error while trying to create a Code39 barcode?

error: uncaughtException: Converting circular structure to JSON

Here is my code, I just wanted to see if i could get it writing to the filesystem first:

    server.get(version+'/tickets/:id/barcode', function(req, res) {
        var code39 = barcode('code39', {
            data: "it works",
            width: 400,
            height: 100,
            type: 'PNG'
        });

        var outfile = path.join(__dirname, 'imgs', 'mycode.png')
        code39.saveImage(outfile, function (err) {
            console.log('File has been written!');
        });

    });
samt commented 9 years ago

Do you know at which point in the code you posted is causing this?

samt commented 9 years ago

I caught wind of someone experiencing something similar via email and I am going to work on reproducing this.