jimp icon indicating copy to clipboard operation
jimp copied to clipboard

An image processing library written entirely in JavaScript for Node, with zero external or native dependencies.

Results 185 jimp issues
Sort by recently updated
recently updated
newest added

fix(jimp.d.ts): fix getBase64 and getBase64Async function arguments types add type AUTO since getBase64 and getBase64Async support Jimp.AUTO. fix #878 # What's Changing and Why ## What else might be affected...

# Expected Behavior I used setPixelColor to operate the color of each pixels. I used this to save the jpg file: ```javascript picture.quality(100).writeAsync(path); ``` I wish that Jimp can write...

help wanted
bug

# Expected Behavior ```js Jimp.read(v) .then(lenna => lenna.resize(2000, Jimp.AUTO).getBufferAsync(`png`)) .catch(e => { console.log(`type of e`, typeof e); throw e; }) ``` Should log `object` # Current Behavior logs `string` #...

# Expected Behavior How to use convolution function optional parameters like edgeHandling. # Current Behavior No clear or working example. # Failure Information (for bugs) TypeScript interface seems to need...

There seems to be a flood of unmerged PRs, no action on behalf of the owner for over a year, and the last release was two years ago. Is there...

Is SVG support planned or was it left out on purpose? Just wondering as I'm looking into dropping `node-gm` in favour of a library that does not depend on external...

# Add support of ICO format Only encode is implemented. ## What else might be affected ## Tasks - [x] Add tests - [ ] Update Documentation - [ ]...

Go to website https://ttf2fnt.com/ Upload your font in ttf format Choose color, size, ... and click convert You will get fnt format which works is bitmap format It works !!!

Jimp can modify an image in a lot of ways, but the documentation doesn't explain how a person can access the image's current properties. Like reading its _current_ width or...