Code Monkey home page Code Monkey logo

Comments (4)

joshmarinacci avatar joshmarinacci commented on May 29, 2024

The library doesn't use anything Node specific, so I think it would run in a web worker. I've never tried. However, it is significantly slower than real canvas, so I'm not sure it would work for your use case. What are you trying to accomplish by using a web worker?

from node-pureimage.

volodalexey avatar volodalexey commented on May 29, 2024

Inside web worker I will need such functions:

    ctx.beginPath();
    ctx.strokeStyle = 'rgb(0,0,255)';
    ctx.moveTo(x1,y1);
    ctx.lineTo(x2, y2);
    ctx.stroke();

And as a result:
canvas.toDataURL();
or
ctx.getImageData();

Looks like your library does not have such functions, does it?

from node-pureimage.

joshmarinacci avatar joshmarinacci commented on May 29, 2024

No, my library does not have such functions, but I think it would be easy to add. The data is stored in an internal bitmap array. It wouldn’t be hard to expose that as the ImageData object that ctx.getImageData() returns. Probably easier than implementing toDataURL();

-j

On Aug 7, 2016, at 1:35 AM, Alexey [email protected] wrote:

Inside web worker I will need such functions:

ctx.beginPath();
ctx.strokeStyle = 'rgb(0,0,255)';
ctx.moveTo(x1,y1);
ctx.lineTo(x2, y2);
ctx.stroke();

And as a result:
canvas.toDataURL();
or
ctx.getImageData();

Looks like your library does not have such functions, does it?


You are receiving this because you commented.
Reply to this email directly, view it on GitHub #6 (comment), or mute the thread https://github.com/notifications/unsubscribe-auth/AAQ5ypqtIwzjScxR0n6K_GQAu18tBjn9ks5qdZjugaJpZM4JeTAW.

from node-pureimage.

joshmarinacci avatar joshmarinacci commented on May 29, 2024

getImageData has been implemented

from node-pureimage.

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.