BackgroundColorResource.Color
BackgroundColorResource.Color property
पृष्ठभूमि का रंग प्राप्त या सेट करता है।
public Color Color { get; set; }
उदाहरण
निम्न उदाहरण पृष्ठभूमिरंग संसाधन संसाधन के समर्थन को प्रदर्शित करता है।
[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.Color = Color.DarkRed;
image.Save(outputFilePath);
}
यह सभी देखें
- struct Color
- class BackgroundColorResource
- नाम स्थान Aspose.PSD.FileFormats.Psd.Resources
- सभा Aspose.PSD