神戸電子専門学校ライブペイント

4月21日 (土) 神戸電子専門学校 15:30-
一般参加あり。詳細・申し込み >
有田 満弘氏によるデジタルライブペインティング

状況により制限が掛かることが予想されますが、サインのご要望があれば可能な範囲で対応させていただきます。サインやコミッション(有料でのスケッチ)のみが目的の方は、BRAVE&BOLDなど学校以外でのイベント参加をご検討ください。

ヒューマンアカデミー広島校ライブペイント

3月21日 (水・祝日) ヒューマンアカデミー広島校
一般参加あり。詳細・申し込み >

サインのご要望があれば可能な範囲で対応させていただきます。
※当日制限が掛かる場合もあります。ご了承ください。
サインやコミッション(有料でのスケッチ)のみが目的の方は、Japan Comic Artist Expo など学校以外でのイベント参加をご検討ください。

代々木アニメーション学院ライブペイント

2月3日 (土)東京校 (終了)
2月18日(日)金沢校 (終了)
3月3日 (土)仙台校 (終了)
3月17日(土)福岡校 (終了)
3月18日(日)広島校 (終了)

一般参加あり。詳細・お申し込み > 【YOANI×Wacom】有名イラストレーターによる 全国YOANIツアーの開催!

状況により制限が掛かることが予想されますが、サインのご要望があれば可能な範囲で対応させていただきます。サインやコミッション(有料でのスケッチ)のみが目的の方は、BRAVE&BOLDなど学校以外でのイベント参加をご検討ください。

 

Pokémon Regional Championships in Dallas, TX

January 26th-28th 2018
Hyatt Regency DFW, Dallas, TX [located at Terminal C of DFW Airport]
Pokémon Regional Championships

Signing and Commission on Saturday,27  & Sunday, 28 January 2018
There isn’t any charge to come to me.
About the Commission,  I can’t draw Pokemon but anything others. Please bring the reference image. It depends on how long the line but I only will do face or bast sketch at the event.

Talk Panel
I’ll do four talk panels from 10 am and 7 pm on Saturday and Sunday.
I’m planning to show my artworks on the screen using the projector and talk about them. I also plan to draw something with Digital Media.

The Hyatt Regency will discount your stay if you booking from here.

[Photoshop Script] アクティブドキュメントをTIFF(ZIP圧縮)で保存

サイズの大きいPSDや、スキャナでスキャンした無圧縮TIFFをZIP圧縮のTIFFで保存するスクリプト。操作を記録して作るアクションではファイル名が決め打ちになってしまい役に立たないので仕方なく書いてみた。
※元がTIFFファイルの場合は上書き保存になります。

// SaveAsTiffZip.js アクティブドキュメントを TIFF(ZIP圧縮)で保存
// 2017.12.31 Mitsuhiro Arita

file_name = master_file_path = app.activeDocument.fullName.fsName.toString();

var file_obj = new File( file_name );
var tif_opt = new TiffSaveOptions();
fileObj = new File( file_name );
tif_opt = new TiffSaveOptions();
tif_opt.alphaChannels = true;
tif_opt.annotations = true;
tif_opt.byteOrder = ByteOrder.IBM;
tif_opt.embedColorProfile = true;
tif_opt.imageCompression = TIFFEncoding.TIFFZIP;
tif_opt.layerCompression = LayerCompression.ZIP;
tif_opt.layers = true;
tif_opt.saveImagePyramid = false;
tif_opt.spotColors = false;
tif_opt.transparency = true;
activeDocument.saveAs(file_obj, tif_opt, true, Extension.LOWERCASE);

var message = "";
message = message + "[" + file_name + "]をTIFFZIPで保存しました\n";

// 確認メッセージ
alert(message);