Replies: 1 comment 2 replies
-
Updating the text of a PSD file is not possible. The ImageMagick library will create an image from the PSD file and that means all vector information is gone. I have no idea which library is capable of doing this. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi @ALL,
I have a requirement to generate a batch of .png files from a single .PSD template file by replacing the new image and background.
1./ Now based on what I researching about MagickImage I can load .PSD file into MagickImageCollection which contains one of my layers with the label is "PTS1" for example (that is SmartObjectLayer with containing is a picture). So my concern is how to update/replace contain the picture on that layer with another content then export the final .PSD into PNG.?
2/ The same question but for the "SolidLayer" which is fillup the color background of my PSD file. I want to change from color A to B then export PSD to PNG?
Sample data: sample PSD file.zip
Here my code but the result is not as expected:
`public static void processPSD(string psdFile, string newImagePath)
{
Thanks for any support.
Beta Was this translation helpful? Give feedback.
All reactions