forked from aheckmann/gm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path68.js
47 lines (40 loc) · 1.37 KB
/
68.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
37
38
39
40
41
42
43
44
45
46
47
// gm - Copyright Aaron Heckmann <[email protected]> (MIT Licensed)
var assert = require('assert')
var url = require('url')
var http = require('http')
module.exports = function (_, dir, finish, gm) {
return finish();
// use this test when gm is not installed.
// it demonstrates that err is often passed as null (timing)
// to detect the stream error that the gm command is not installed,
// you must test the stderr output manually for "execvp(): No such file or directory"
function done (err){
if (err) return finish(done.ran = err);
if (done.ran) return;
finish();
}
http.get(url.parse('http://www.google.com/images/srpr/logo3w.png'), function (resp) {
gm(resp, 'logo3w.png').stream(function (err, stdout, stderr) {
return finish();
if (err) {
console.error('Error processing image', err)
} else {
stdout.on('data', function (chunk) {
console.log('Chunk recieved', chunk.toString())
})
stdout.on('end', function () {
console.log('Stream ended')
})
stderr.on('data', function (chunk) {
console.log('err Chunk recieved', chunk.toString())
})
stderr.on('end', function () {
console.log('err Stream ended')
})
}
})
})
.on('error', function (err) {
console.error('Error fetching image', err)
})
}