Advertisement
Guest User

Untitled

a guest
Feb 10th, 2025
7
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | Photo | 0 0
  1. #target photoshop
  2.  
  3. // 設定
  4. var docWidth = 1920;
  5. var docHeight = 1080;
  6. var resolution = 72;
  7. var colorMode = NewDocumentMode.RGB;
  8. var bitDepth = BitsPerChannelType.EIGHT;
  9.  
  10. // 新規ドキュメント
  11. var docRef = app.documents.add(
  12. docWidth, // 幅
  13. docHeight, // 高さ
  14. resolution, // 解像度
  15. "New Document", // ドキュメント名
  16. colorMode, // カラーモード
  17. DocumentFill.WHITE, // 背景の塗りつぶし
  18. 1, // ピクセル縦横比
  19. bitDepth, // ビット数
  20. "px" // 単位
  21. );
  22.  
  23. docRef.colorProfileType = ColorProfile.NONE;
  24.  
  25. // レイヤー作成
  26. // var newLayer = docRef.artLayers.add();
  27. // newLayer.name = "新規レイヤー";
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement