相信感覺 相信簡單 — 又一篇舊文

** 那天為了鼓勵你,我找來這篇舊文章,看完  <<功夫熊貓 >>後寫的,慶幸自己寫過這樣的文字,好奇怪,重看時,覺得怎可能出自我的手筆 ?


人生音像城

相信感覺  相信簡單

這夜,位於石硤尾的工作室特別寧靜,同伴都離開


舊文一篇 : 自娛自樂

**在網上發現了自己一篇舊文,文中所說的,今天我仍然相信–雖然我是一個經常不相信自己曾經相信的東西的人。

Thursday, August 25, 2005

自娛自樂

看罷《自娛自樂》,竟有點感觸,腦海浮現一個問題:拍電影是為了甚麼?


iPad Dock Cable to VGA Adapter - A Big "Meh." [UPDATED]

[ UPDATE : It looks like there's a nice app available to jailbroken iPads via Cydia called 'Display Out' that will allow you to use the iPad with any external display, the way it was meant to be! Also, some other interesting comments down below...]

iPad VGA Adapter to Dock Connector
I bought the iPad VGA cable at the store today, hoping to be able to browse the web via Safari, show presentations using Keynote, and view slideshows on my monitor and on the projector, using the cable. A couple

自拔

「不能自拔」是一種很難形容的經驗,你明明知道自己不應再做下去,明明心裏有個響亮而確實的聲音在呼叫:「停止吧!快些停止啊!」,可是,你偏偏就是不停止,偏偏就是繼續做下去。那個叫你停止的聲音,你一方面知道

庶民情懷《淺草之燈》(The Light of Asakusa)


看島津保次郎的《淺草之燈》, 不難看到有點小津安二郎或清水宏早期電影的味道. 應該反過來說, 他們的電影都各自互相影響. 《淺草之燈》 寫實地描寫了戰前淺草藝人的生活, 不忘反映現實. 調子輕快, 看得舒服.

島津保次
Continue reading...

利用 Java 旋轉圖片 (Use Java to rotate an image)

import java.awt.image.BufferedImage;import java.awt.Graphics2D;import java.awt.Color;import java.awt.geom.AffineTransform;

public static BufferedImage rotate(BufferedImage source, double degrees, int x, int y, Color color, boolean resizable){    double radians = Math.toRadians((degrees % 360.0 + 360.0) % 360.0);    int width = source.getWidth();    int height =
apple.jpg
Continue reading...

利用 Java 將圖像合併 (Use Java to combine 2 images)

import java.awt.image.BufferedImage;import java.awt.Graphics2D;

public static BufferedImage combine(BufferedImage source, BufferedImage other, int x, int y, int ox, int oy, int owidth, int oheight, int cx, int cy){    BufferedImage out = new BufferedImage(source.getWidth(), source.getHeight(), source.getType());    Graphics2D g2d = out.createGraphics();    g2d.drawImage(source,
apple.jpg
Continue reading...

利用 Java 將圖像轉換成負片效果 (Use Java to edit an image to negative)

import java.awt.image.BufferedImage;import java.awt.Graphics2D;

public static BufferedImage negative(BufferedImage source){    BufferedImage out = new BufferedImage(source.getWidth(), source.getHeight(), source.getType());    for (int i = 0; i < out.getWidth(); i++) {        for (int j = 0; j < out.getHeight(); j++) {            out.setRGB(i, j,
apple.jpg
Continue reading...

月滿軒尼詩

很久沒看這種小品劇,很不錯,之前有一套很相似的,月滿抱西環。

兩片都一樣,流露出濃濃的地緣主義的情感。生活和空間的音調,彈奏得鏗鏘入耳。

演員的表達沒什麼好評品,就是那個好字足矣。

岸西的編劇真的就是那一個

Continue reading...

利用 Java 改變圖像畫布的闊及高 (Use Java to edit the canvas of an image)

import java.awt.image.BufferedImage;import java.awt.Graphics2D;import java.awt.Color;

public static BufferedImage canvas(BufferedImage source, int width, int height, int x, int y, int cx, int cy, Color color){    BufferedImage out = new BufferedImage(width, height, source.getType());    Graphics2D g2d = out.createGraphics();    g2d.setColor(color);    g2d.fillRect(
apple.jpg
Continue reading...