// キャンバスサイズ
size(200, 200);
PImage img = new PImage(200, 200);
// 金属風の画像生成
BrushedMetalFilter bmf = new BrushedMetalFilter(
0xffb0b0b4, /* 金属の色 */
20, /* 水平方向ぼかしのサイズ */
0.15f, /* ノイズの量 */
false, /* モノクロームの場合true */
0.1f /* 輝きの量 */
);
PImage img2 = new PImage(bmf.filter((java.awt.image.BufferedImage)img.getImage(), null));
image(img2, 0, 0);
// ファイル保存
save("sample1451a.png");
出力画像(sample1451a.png)
ProcessingとJava Image Filtersを使用して作成した金属風画像
〇動作環境
Processing 3.4
〇関連項目
・Processingをインストールした仮想マシンを構築するには、以下のページを参照してください。
https://serverarekore.blogspot.com/search/label/Processing
・Processingに関する他の記事は、こちらを参照してください。
No comments:
Post a Comment