-
-
Notifications
You must be signed in to change notification settings - Fork 444
Open
Milestone
Description
Magick.NET version
MagicK.NET-Q16-AnyCPU v14.10.3
Environment (Operating system, version and so on)
Windows 11
Description
I try to convert a DCX page 0, to a PNG image. The converted PNG shows bad color.
Steps to Reproduce
using ImageMagick;
namespace DcxToPng
{
internal class Program
{
static void Main(string[] args)
{
var inputFilePath = @"C:\Temp\Input\DCX1.DCX";
var outputFilePath = @"C:\Temp\Output\DCX1.png";
using MagickImageCollection collection = new(inputFilePath);
collection[0].Write(outputFilePath, MagickFormat.Png);
}
}
}
Run the above console application, using the following DCX1.DCX from zip file.
Images
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels

