這個星期我教授的營銷課程,正好涉及企業老闆兼任旗下品牌代言人這題目,香港惹人爭議的例子當然首推白花油王子顏福偉,你試試用Google圖片搜尋「白花油」,顏公子的肖像多得滿瀉,你就知道他對白花油的影響力有多大。
事
|
| From for blog |
這個星期我教授的營銷課程,正好涉及企業老闆兼任旗下品牌代言人這題目,香港惹人爭議的例子當然首推白花油王子顏福偉,你試試用Google圖片搜尋「白花油」,顏公子的肖像多得滿瀉,你就知道他對白花油的影響力有多大。
事

import java.awt.image.BufferedImage;import java.awt.Graphics2D;import java.awt.geom.Ellipse2D;
public static BufferedImage combineEllipse(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
Since purchasing the iPad, I've constantly been amazed by how fast everything works—switching between large apps is no longer a game of roulette, and browsing the web is a breeze.
I ran some tests on Safari on my iPad, just to see how things compare to my MacBook Pro...
Here's the screenshot from my iPad (14068.6ms):

And from my Mac (406.8ms):
import java.awt.image.BufferedImage;import java.awt.Graphics2D;import java.awt.Color;import java.awt.Polygon;import java.awt.Rectangle;import java.awt.geom.Ellipse2D;
public static BufferedImage cutEllipse(BufferedImage source, int x, int y, int width, int height, int cx, int cy, Color color){ BufferedImage out = new BufferedImage(width, height, source.getType()); Graphics2D