We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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!'); }); });
The text was updated successfully, but these errors were encountered:
Do you know at which point in the code you posted is causing this?
Sorry, something went wrong.
I caught wind of someone experiencing something similar via email and I am going to work on reproducing this.
No branches or pull requests
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:
The text was updated successfully, but these errors were encountered: