I have the problem that when I open the psd file in photoshop it tells me that “some textlayers need to be updated”. The only thing I do is add a textlayer with a text, and a rectangle
imagen.png (28.0 KB)
Code:
string sourceFile = "C:\\Ethofy\\TestPSDPrueba2.psd";
string outputFile = "C:\\Ethofy\\3_Output_Test_PSD_2daPruebas_Punto_3.psd";
// Add a text layer
TextLayer textLayer = img.AddTextLayer("Lorem ipsum dolor sit amet", new Rectangle(99, 47, 99, 47));
textLayer.TextData.UpdateLayerData();
img.Save(outputFile);