Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #target photoshop
- // 設定
- var docWidth = 1920;
- var docHeight = 1080;
- var resolution = 72;
- var colorMode = NewDocumentMode.RGB;
- var bitDepth = BitsPerChannelType.EIGHT;
- // 新規ドキュメント
- var docRef = app.documents.add(
- docWidth, // 幅
- docHeight, // 高さ
- resolution, // 解像度
- "New Document", // ドキュメント名
- colorMode, // カラーモード
- DocumentFill.WHITE, // 背景の塗りつぶし
- 1, // ピクセル縦横比
- bitDepth, // ビット数
- "px" // 単位
- );
- docRef.colorProfileType = ColorProfile.NONE;
- // レイヤー作成
- // var newLayer = docRef.artLayers.add();
- // newLayer.name = "新規レイヤー";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement