-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
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
Play nice with Jimp #112
Comments
I've never heard of JIMP. Could you put in a link explaining what it is? |
Hi @joshmarinacci - sure, no problem. Jimp is a pure JS image processing library. Been around for many years, has over 10000 github stars - quite a big deal.
I feel these two libs could really compliment each other. Jimp has loads of image loading & processing functionality however lacks many of the drawing bits that this lib provides. |
That sounds like a good idea. What would it take? Providing a raw buffer in a particular format that JIMP understands? |
this looks good: You can also initialize a new Jimp image with a raw image buffer: new Jimp({ data: buffer, width: 1280, height: 768 }, (err, image) => { |
I think we just need to add an example of how to make this work. |
Hi, this is less of an issue and more of a request.
Is there any thoughts to integrating/interoperable with JIMP?
Perhaps it is already possible however I see no references or remarks as to how I could use a JIMP image object with this library.
I feel closer integration with JIMP would be a WIN WIN for both this lib and for JIMP.
Please feel free to correct me / close this if this is something already implemented or simple to do.
The text was updated successfully, but these errors were encountered: