Created
November 16, 2015 00:32
-
-
Save miguelmota/112a9e3cb9acb5c96c9d to your computer and use it in GitHub Desktop.
Generate text overlaying an image with Node.js and imagemagick.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// @credit: from someone on the internet | |
http = require('http') | |
https = require('https') | |
fs = require('fs') | |
url = require('url') | |
req = require('request') | |
server = require('express')(); | |
im = require('imagemagick') | |
function fetch(query,cb){ | |
var google = 'http://ajax.googleapis.com/ajax/services/search/images?v=1.0&rsz=8&q=' + encodeURI(query) | |
req({uri:google}, function (e, resp, body) { | |
result = JSON.parse(body)['responseData']['results'][0] | |
if(result) { | |
console.log(result); | |
cb(result['unescapedUrl']) | |
} | |
else | |
cb("https://img.skitch.com/20110825-ewsegnrsen2ry6nakd7cw2ed1m.png") | |
}); | |
} | |
function download(match, output, addText){ | |
fetch(match, function(file){ | |
var uri = url.parse(file) | |
, host = uri.hostname | |
, path = uri.pathname | |
if(uri.protocol == "https:") | |
var r = https | |
else | |
var r = http | |
request = r.get({host: host, path: path}, function(res){ | |
res.setEncoding('binary') | |
var img = '' | |
res.on('data', function(chunk) { | |
img += chunk | |
}) | |
res.on('end', function(){ | |
fs.writeFile(output, img, 'binary', function (err) { | |
if (err) throw err | |
}) | |
addText() | |
}) | |
}) | |
}) | |
} | |
server.get("/", function(request, response){ | |
response.send(200, 'fuck yeah / by <a href="http://twitter.com/holman">@holman</a>.'+ | |
'<p>api: use <b>fuckyeah.herokuapp.com/[your-query]</b> and shit.</p>' | |
); | |
}) | |
server.get("/favicon.ico", function(request, response){ | |
return "" | |
}) | |
server.get(new RegExp("^/(.*?)(?:.jpg)?$"), function(request, response, match) { | |
var msg = "" | |
, match = escape(request.params[0]) | |
, chars = match.length | |
console.log(request.params) | |
if(chars < 7) | |
msg = 'FUCK YEAH ' + match + '' | |
else | |
msg = 'FUCK YEAH \n' + match + '' | |
var output = "/tmp/fuck-" + Math.floor(Math.random(10000000)*10000000) + '.jpg' | |
download(match, output, function(){ | |
console.log(output) | |
im.identify(output,function(err,features){ | |
console.log(err, features) | |
if (err) | |
return; | |
var h = features.height < 100 ? features.height : 100 | |
, w = features.width < 500 ? features.width : 500 | |
, args = [ | |
'-strokewidth','2', | |
'-stroke','black', | |
'-background','transparent', | |
'-fill','white', | |
'-gravity','center', | |
'-size',w+'x'+h, | |
"caption:"+unescape(msg), | |
output, | |
'+swap', | |
'-gravity','south', | |
'-size',w+'x', | |
'-composite',output | |
]; | |
im.convert(args, function(){ | |
fs.readFile(output, function (err, data) { | |
if (err) throw err; | |
response.writeHead(200, {'Content-Type': 'image/jpeg' }) | |
response.end(data) | |
}); | |
}); | |
}); | |
}) | |
}) | |
server.listen(5050); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment