BackgroundColorResource.Color
BackgroundColorResource.Color property
Arka plan rengini alır veya ayarlar.
public Color Color { get; set; }
Örnekler
Aşağıdaki örnek, BackgroundColorResource kaynağının desteğini göstermektedir.
[C#]
string sourceFilePath = "input.psd";
string outputFilePath = "output.psd";
using (var image = (PsdImage)Image.Load(sourceFilePath))
{
ResourceBlock[] imageResources = image.ImageResources;
BackgroundColorResource backgroundColorResource = null;
foreach (var imageResource in imageResources)
{
if (imageResource is BackgroundColorResource)
{
backgroundColorResource = (BackgroundColorResource)imageResource;
break;
}
}
// BackgroundColorResource'u güncelle
backgroundColorResource.Color = Color.DarkRed;
image.Save(outputFilePath);
}
Ayrıca bakınız
- struct Color
- class BackgroundColorResource
- ad alanı Aspose.PSD.FileFormats.Psd.Resources
- toplantı Aspose.PSD