Render text with different colors in Text Layer
Contents
[
Hide
]
Render text with different colors in Text Layer
Aspose.PSD supports converting PSD files to images. There may be cases when the text in the PSD file contains different colors. Aspose.PSD supports converting such PSD files to images.
The following code snippet demonstrates converting a PSD file with different colors in the TextLayer to PNG
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
// For complete examples and data files, please go to https://github.com/aspose-psd/Aspose.PSD-for-.NET | |
string destName = OutputDir + @"RenderTextWithDifferentColorsInTextLayer_out.png"; | |
// Load the noisy image | |
using (var psdImage = (PsdImage)Image.Load(sourceFile)) | |
{ | |
var txtLayer = (TextLayer)psdImage.Layers[1]; | |
txtLayer.TextData.UpdateLayerData(); | |
PngOptions pngOptions = new PngOptions(); | |
pngOptions.ColorType = PngColorType.TruecolorWithAlpha; | |
psdImage.Save(destName, pngOptions); | |
} |