Closed GhosalkarPratik closed 5 years ago
Images rotating in the anti-clockwise direction
Expected to rotate image clockwise, as per documentation.
But rotated anti-clockwise
Run the following code with image 'download.jpg' attached below in the same folder
'use strict'; var Jimp = require('jimp'); Jimp.read('download.jpg') .then(lenna => { return lenna .rotate(90) .write('lena-small-bw.jpg'); });
Expected behaviour:
Actual behavior:
duplicate of #631
Images rotating in the anti-clockwise direction
Expected Behavior
Expected to rotate image clockwise, as per documentation.
Current Behavior
But rotated anti-clockwise
Steps to Reproduce
Run the following code with image 'download.jpg' attached below in the same folder
Expected behaviour:
Actual behavior:
Context
Failure Logs