Giter Site home page Giter Site logo

Comments (3)

joelabair avatar joelabair commented on June 30, 2024

bash >node
var fs = require('fs');
var webshot = require('webshot');
var htmlString = fs.readFileSync('../../public_html/phantom-test.html');
webshot(htmlString, './test.png', {siteType:'html'}, function(err) {
if(err) throw err;
console.log('done');
});

events.js:72
throw er; // Unhandled 'error' event
^
Error: spawn Unknown system errno 7
at errnoException (child_process.js:975:11)
at Process.ChildProcess._handle.onexit (child_process.js:766:34)

from node-webshot.

brenden avatar brenden commented on June 30, 2024

Hi, sorry for the late response.

There's an OS size limit on arguments passed to spawned processes, and it looks like htmlString is over the limit. You could still pass the filepath to phantom-test.html:

webshot('file://' + __dirname + '/phantom-test.html', './test.png', function(err) {
  if(err) throw err;
  console.log('done');
});

from node-webshot.

joelabair avatar joelabair commented on June 30, 2024

Thanks for following up. That makes sense, if you're not using a unix pipe for the htmlString, and i'm not sure that named pipes are yet supported in node's process.child. It's worth noting the max length for htmlString in the docs. I did revert my code to use an http resource. I tried file:// first - and found http:// was more flexible for my situation.

Again, thanks for following up with the explanation.

from node-webshot.

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.