Archive for June, 2008

and the heavens shall tremble…

Diablo III unveiled!!

等左好多年了。

暫時公佈左兩個class:
barbarian, witch doctor。

所有class都可以揀男或者女..
睇完個gameplay video之後令人十分期待。

標叔叔退休了

33 年 來 , 微 軟 創 辦 人 蓋 茨 ( Bill Gates ) 每 天 都 走 過 華 盛 頓 州
雷 德 蒙 德 ( Redmond ) 的 總 部 , 但 今 日 ( 周 五 ) 是 他 最 後 一 天
以 執 行 主 席 身 份 上 班 , 之 後 會 淡 出 微 軟 業務 , 專 心 打 理 他 的
慈 善 基 金 。 蓋 茨 不 再 掌 舵 , 不 但 標 誌 微 軟 一 個 時 代 的 終
結 , 更 考驗 新 領 導 班 子 能 否 回 應 Google 和 蘋 果 等 強 敵 的 挑
戰 , 讓 微 軟 繼 續 保 持 美 國 IT 一 哥地 位 。

蓋 茨 今 天 會 辭 去 執 行 主 席 一 職 , 但 52 歲 的 他 並 不 是 完 全 退
休 , 只 是 改 當 非 執 行 主 席, 每 周 僅 上 班 一 天 , 今 後 全 副 精 力
放 在 打 理 他 和 太 太 名 下 的 比 爾 及 梅 琳 達 . 蓋 茨 慈善 基 金 。 微
軟 具 體 業 務 , 會 交 由 行 政 總 裁 巴 爾 默 ( Steve Ballmer ) 、 軟 件
總 工 程師 奧 齊 ( Ray Ozzie ) 和 研 究 及 戰 略 主 管 蒙 ( Craig
Mundie ) 負 責 , 肩 負 帶 領 微 軟 走 出 困 境 的 使 命 。

converting tiff to jpeg - the java way

yes I thought it should be easy, at least typical.
but I was not able to find a clean and easy way to do so.

I started looking into javax.imageio,
realizing that it only support basic formats like gif, jpeg, bmp.
Anything beyond that will need custom plugin.

I searched through forums and heard of stuffs called JAI -
the Java Advanced Imaging library,
however i couldnt find the plugin I needed for tiff.
Screwed up for two hours I finally found out that there is a separate package called JAI-imageio,
which is not included in JAI. Yea…..what a great confusion.

Once I got that all the rest is straight forward.


public static void convertToJpg(String path) throws IOException {
    ImageReader reader = ImageIO.getImageReadersByFormatName("tiff").next();
    ImageInputStream iis = ImageIO.createImageInputStream(new File(path));
    reader.setInput(iis, false);
    ImageWriter writer = ImageIO.getImageWritersByFormatName("jpg").next();
    String filename = path.substring(path.lastIndexOf("\\")+1, path.lastIndexOf("."));
    for (int i=0; i<reader.getNumImages(true);  i++) {
        BufferedImage image = reader.read(i);
        String outputFileName = filename+"_"+(i+1)+".jpg";
        ImageOutputStream ios = ImageIO.createImageOutputStream(new File(outputFileName));
        writer.setOutput(ios);
        writer.write(image); // (*)
    }
}

If you need to have control over the output quality,
you will have to add these line:


ImageWriteParam writeParams = (ImageWriteParam) writer.getDefaultWriteParam();
writeParams.setCompressionMode(ImageWriteParam.MODE_EXPLICIT);
// value ranged from 0.0 to 1.0 for minimum file size, worst quality to maximum file size, best quality
writeParams.setCompressionQuality(0);

and replace the line marked by (*) with :


writer.write(null, new IIOImage(image, null, null), writeParams);

Concerning performance,
it costs about 28s to convert a 7-page tiff (383kb in file size) with dimension 5100 x 6122,
to 7 jpeg files with the same dimension (4.27mb totally(!), with highest compression).
Changing the compression ratio seems to have very little effect on the time.

All other type of conversion can be done in similar way,
as long as you’ve got the required plugin.

文雀 - 杜琪峰的老香港

完場後身邊的人說沒有一貫杜琪峰的感覺。

對,文雀相比以往的黑社會、暗戰、鎗火的剛陽味,
來得有點溫文,但我覺得其實兩者的分別,
是電影本身性質已經有所不同。

把文雀視為一套杜琪峰的自娛作品會更加貼切,
在近年愛上香港的潮流下,
也來紀錄香港一番,
全片大部份取景自充滿老香港氣息的中上環,
懷舊的單車、唐樓和茶餐廳,
鏡頭遊走在舊街老巷,
還特別加插很多有香港特色的黑白照片。
明明每日上班行走的灣仔,
在鏡頭下也忽然變得很有魅力。

看到這裡,即使電影的劇情過份單薄,
林熙蕾談的幾通電話和盧海鵬片尾扮哭等畫蛇添足的地方,
我也沒再在意了。

文字還是有尊嚴的年代

XBox 360 入手

GTA4 作戰開始~
不過一個星期都唔知玩唔玩到幾個鐘。

Let’s spread Firefox!

萬眾期待的Firefox 3 將會於6月17日正式推出,
官方為隆重其事特別舉行了Firefox Download Day 2008
希望於推出當天打破一天內最多下載量的健力史紀錄,
大家現在可以到上述網站登記你的email和地區,
到時就會有reminder提醒你去下載。

目前登記人數已經超過一百萬,
當中人數最多的自然是美國,
其次就是歐美,中國日本等,
而香港也有4千多人。

Firefox是對上網比較有要求的進階用戶才會使用的,
看到這些數據,其實也一定程度地反映出當地的IT水平,
因此歐美中國日本印度等IT產業比較發達的國家的登記人數是較高的,
而非洲和中東大部份國家裡面,
人口過百萬的國家登記人數也相當少。

出乎意料的是,我一直認為IT水平不高的巴西,
也有不少人登記,算百分率比中國還要高。

我登記了,大家會去登記嗎?

GWT-Ext 2.0.4 推出

GWT-Ext 2.0.4 剛在日前推出了。

新特性包括對GWT 1.5 和Firefox 3的支援,
一個新的pagebus組件,
與及大量bugfix。

其中最有趣的莫過於pagebus,
是一個可以讓同一個畫面上不同的ui組件,
透過subscribe/publish的messaging概念去交換資料的內建模組,
可以大大簡化介面層內controller/mediator的logic。

有興趣可以去showcase入面看看Miscellaneous -> Publish Subscribe的例子。

另一個讓人頗為振奮的消息來自GWT-Ext forum內,
GWT-Ext的團隊好像已經重組完畢並承諾在日內公佈發展方向,
看來Sanjiv Jivan (GWT-Ext的前project lead)的離去沒有影響GWT-Ext的發展,
作為GWT界最為成熟的UI framework,
很期待它繼續成長。

Franz Ferdinand is back


Franz Ferdinand 既官方網站經過大半年既暫停,
上星期終於重新開放,同埋換左新既設計。

至於樂隊既第三隻大碟目前仲未有確實既推出日期,
由07年尾傳到08年頭,之後推到08年10月,
甚至而家講到去09年,
距離上一隻碟《You can have it so much better》差唔多三年時間。
但其實樂隊最近既live performance演出既大部份都係新歌,
奇怪點解仲要等咁耐...

新既網站有新歌既試聽同埋一d新相,
而personnel 一頁就大大隻字寫住”Indissoluble Matrimony”,
「不能溶解的婚姻」...莫非係新碟既名?

長假過後

連埋星期二放左日annual,
足足連續放左四日假,
呢幾日係真真正正咁休息,
手頭上既野通通都放低晒,
全無牽掛,就係咁打下機睇下書,
睇下電視睇下碟,好放鬆。

可能亦都因為咁,
今朝返到唻完全冇平時o個d「星期一受難症候群」,
反而仲有d 渴望做野既感覺。
而且各個project都開始返唻,
公司準備緊搬office,
今個星期仲開始見到人唻interview,
所有野都好似上緊軌道,
唔多唔少都有d 期待。

又一次突然間覺得自己真係好幸運,
好滿意現狀。

Next Page »