Quantcast
Channel: magick Discussions Rss Feed
Viewing all articles
Browse latest Browse all 3693

New Post: Defective PSD files from portrait images

$
0
0
I don't own Photoshop so I cannot really test this issue.

What is the exact version of Magick.NET that you are using? And can you open the PSD files that are created with the following code?
using (MagickImage image = new MagickImage("xc:red", 50, 100))
{
  image.Alpha(AlphaOption.Opaque);
  image.Write("test1.psd");
}

using (MagickImageCollection images = new MagickImageCollection())
{
  MagickImage image = new MagickImage("xc:red", 50, 100);
  image.Alpha(AlphaOption.Opaque);
  images.Add(image);
  images.Write("test2.psd");
}
It should create the same file in both situations.

Viewing all articles
Browse latest Browse all 3693

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>