Last active
August 29, 2015 14:12
-
-
Save kureikei/13a311e486ecfb8f1bc7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Photoshop; | |
namespace ConsoleApplication1 | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
var app = new Application(); // Photoshop 起動 | |
var doc = app.Open(@"C:\Users\kureikei\Pictures\xmascard2014.jpg"); // ファイルを開く | |
app.DoAction("セピアトーン (レイヤー)", "初期設定のアクション"); // アクションの実行 | |
var options = new JPEGSaveOptions() { Quality = 10 }; // JPEG 保存オプション (品質 0-12; default: 3) | |
doc.SaveAs(@"C:\Users\kureikei\Pictures\xmascard2014_sepia.jpg", options, true, PsExtensionType.psLowercase); // ファイルへ保存 | |
doc.Close(PsSaveOptions.psDoNotSaveChanges); // ファイルを閉じる | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment