forked from aheckmann/gm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautoOrient.js
36 lines (26 loc) · 1.01 KB
/
autoOrient.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// gm - Copyright Aaron Heckmann <[email protected]> (MIT Licensed)
var assert = require('assert')
module.exports = function (_, dir, finish, gm) {
if (!gm.integration)
return finish();
var filename = dir + '/autoOrient.jpg';
gm(dir + '/originalSideways.jpg').orientation(function (err, o) {
if (err) return finish(err);
assert.equal('RightTop', o);
assert.ok(!! this.data['Profile-EXIF'], 'No Profile-EXIF data found');
// this image is sideways, but may be auto-oriented by modern OS's
// try opening it in a browser to see its true orientation
gm(dir + '/originalSideways.jpg')
.autoOrient()
.stream(function (err, stream) {
if (err) return finish(err);
gm(stream).identify(function (err, data) {
if (err) return finish(err);
assert.equal('Unknown', data.Orientation);
assert.ok(! this.data['Profile-EXIF'], 'Profile-EXIF still exists');
assert.equal('460x155', data.Geometry);
finish(err);
})
})
});
}