FillLayer.ReplaceNonTransparentColors

FillLayer.ReplaceNonTransparentColors method

すべての不透明な色を新しい色に置き換え、元のアルファ値を維持して滑らかなエッジを保存します。

public override void ReplaceNonTransparentColors(int newColorArgb)
パラメータタイプ説明
newColorArgbInt32透明でない色を置き換える新しい色の ARGB 値。

次のコードは、CMYK ColorMode 16 ビットのサポートと、Aspose.PSD.Graphics クラスを使用した描画機能を示しています。

[C#]

using (PsdImage image = (PsdImage)Image.Load("cub16bit_cmyk.psd"))
{
    RasterCachedImage raster = image.Layers[0];
    Aspose.PSD.Graphics graphics = new Graphics(raster);
    int width = raster.Width;
    int height = raster.Height;
    Rectangle rect = new Rectangle(width / 3, height / 3, width - (2 * (width / 3)) - 1, height - (2 * (height / 3)) - 1);
    graphics.DrawRectangle(new Aspose.PSD.Pen(Color.DarkGray, 1), rect);
    image.Save("output.psd");
    image.Save("output.png", new PngOptions());
}

関連項目