下午試了一下,使用php 在圖檔上作標記的過程並不困難。
php, GD library (>2.0 better) ,
//首先取得欲存取圖檔
$imgname = 'tt.jpg';
$im = @ImageCreateFromJPEG ($imgname);
//欲加上圖形的區塊
$bgc = ImageColorAllocate ($im, 0, 0, 0);
ImageFilledRectangle ($im, 0, $bty, $imgx, $imgy, $bgc);
$bty: 起算的座標
$imgx : image 的x 軸 (就是寬度)
$imgy : image 的y 軸 (就是高度)
//在加上字
$tc = ImageColorAllocate ($im, 255, 255, 255);
ImageString ($im, 5, 5 , $bty + 20, 100*$rate."% black border" , $tc);
//還有 要送出header 補充mime type
Header("Content-type: image/jpeg");
imagejpeg($im);
搞定!
就是那麼輕鬆!
===
找資料的時候,參考到一篇用bit map方法繪圖的技術文(from Exceed PHP)
星期五, 4月 07, 2006
星期二, 4月 04, 2006
[movie] In her shoes movie review

去看了「In her shoes」: 偷穿高跟鞋 (台譯)電影。
卡麥戎狄亞(Cameron Diaz)=> 飾演 妹妹 :Maggie
Toni Collette=>飾演 律師姊姊:Rose
以為是那種穿了對方鞋子後,角色互換的搞笑片。但其實不然。
本片引用知名詩人的作品,包括:
- Elizabeth Bishop 「one art」全文 (poets.org)
The art of losing isn't hard to master;
so many things seem filled with the intent
to be lost that their loss is no disaster.
I Carry Your Heart With Me quote:
I carry your heart with me (I carry it in my heart)
I`m never without it (anywhere I go you go, my dear; and whatever is done
by only me is your doing, my darling)
不過,我最喜歡的還是片尾那段script
"Here's the deepest secret no one knows.很棒 .....
"Here is the root of the root...
"and the bud of the bud...
and the sky of the sky
of a tree called life."
"Which grows
higher than the soul can hope...
"or mind can hide.
"It is the wonder
that's keeping the stars apart.
"I carry your heart.
I carry it in my heart." script
訂閱:
文章 (Atom)