Tumblr, RMagick and a Photo Frame! - igvita.comどっちかって言うと、書いてる理由が面白い。要は「Tumblrの引用は面白いけど一々見に行くのめんどいよね!ならって事でデジタルフォトスタンドを使っちゃおうと思った」て感じかな。
Over the course of the past year or so, I got myself into a habit of using Tumblr for storing insightful snippets and quotes from my daily endeavours on the internet. Usually, this entails saving a paragraph (too long for tweet, and not enough for del.icio.us) so I can revisit it later.
However, having Tumblr to save the quotes is nice, but I rarely (if ever) went back to read them. Pondering this dilemma, I spotted my Phillips digital photo frame, and a quick weekend project was born: Tumblr API, RMagick to render the images, and an SD card full of wisdom and quotes for easy consumption!
動かすにはrubyのImageMagick拡張rmagickが必要。
私はPhillips digital photo frameは持ってないけど、chumbyとか使うと良く似た事出来るのかな?
ソースはそのまま使えました。日本語はImageMagickがghostscriptを使ってるのでTrueTypeフォント直接指定すれば動きます。
--- render-tumblr.rb.orig Sat Jun 07 19:32:46 2008
+++ render-tumblr.rb Thu Jun 19 12:02:57 2008
@@ -62,7 +62,7 @@
img.background_color = "transparent"
img.pointsize = 23
img.antialias = true
- img.font = "Helvetica"
+ img.font = "c:\\windows\\fonts\\meiryo.ttc"
end
quote.write "text.png"
@@ -72,12 +72,12 @@
img.background_color = "transparent"
img.pointsize = 18
img.antialias = true
- img.font = "Helvetica"
+ img.font = "c:\\windows\\fonts\\meiryo.ttc"
end
source.write "source.png"
end
-doc = Hpricot.XML(open("http://igrigorik.tumblr.com/api/read?type=quote&num=5"))
+doc = Hpricot.XML(open("http://mattn.tumblr.com/api/read?type=quote&num=5"))
(doc/'post').each do |post|
text = CGI::unescapeHTML((post/'quote-text').inner_html).gsub(/&[^;]*;?/,'')
source = CGI::unescapeHTML((post/'quote-source').inner_html).gsub(/\<.*?\>/, '').gsub(/&[^;]*;?/,'').strip
実行するとquotesディレクトリに以下の様なファイルが出来上がりました。
面白いですね。あとは何とかしてこれをchumbyとかで動かせればいいのですが、いかんせんchumby持ってない!chumbyでrubyが動くかどうかも知らない。
って事で誰か後はよろしく。