-
-
Notifications
You must be signed in to change notification settings - Fork 777
Closed
Labels
bugthere is a bug in the way jimp behavesthere is a bug in the way jimp behaveshelp wantedreleasedThis issue/pull request has been released.This issue/pull request has been released.
Description
Expected Behavior
Console should output:
[252,71]
[252,71]
Current Behavior
Tried this on multiple images, error happens in both:
[252,71]
[254,72]
Failure Information (for bugs)
Steps to Reproduce
let jimp = require('jimp');
let x = jimp.read('myImage.png').then(
image => {
console.log([image.bitmap.width, image.bitmap.height]);
image.rotate(0);
console.log([image.bitmap.width, image.bitmap.height]);
}
)
Context
- Jimp Version: 0.16.1
- Operating System: macOS Mojave Version 10.14.1
- Node version: 14.12.0
Failure Logs
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugthere is a bug in the way jimp behavesthere is a bug in the way jimp behaveshelp wantedreleasedThis issue/pull request has been released.This issue/pull request has been released.