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

New Post: Converting EPS to TIF and preserve Transparency

$
0
0
I'm trying to convert an EPS file to TIF. I need to preserve transparency and CMYK coloring. I am able to do this fine if I use RGB coloring and PNG as a format, but not when I switch to CMYK, or CMYK + TIF.

Here is my code:
string fileNames = "~/../../../files/input/";
                string DestFilesPath = "~/../../../files/output/";
                Console.Write(System.DateTime.Now);
                Console.WriteLine("Conversion started----");

                foreach (string filePath in Directory.GetFiles(fileNames, "*", SearchOption.AllDirectories))
                {
                    MagickReadSettings settings = new MagickReadSettings();
                    settings.ColorSpace = ColorSpace.CMYK;
                    settings.Density = new MagickGeometry(72, 72);

                    string EPSfile = filePath.Substring(filePath.LastIndexOf("/") + 1);
                    string file = EPSfile.Remove(EPSfile.LastIndexOf("."));

                    MagickNET.SetGhostscriptDirectory("~/bin");

                    using (MagickImage image = new MagickImage("~/../../files/input/" + EPSfile, settings))
                    {
                        image.Format = MagickFormat.Tif;
                        byte[] bytes = image.ToByteArray();
                        using (FileStream fs = File.OpenWrite(DestFilesPath + file + ".tif"))
                        {
                            fs.Write(bytes, 0, bytes.Length);
                        }
                        //image.Write(DestFilesPath + file + ".tif");
                    }
                }
                Console.WriteLine("Files are converted successfully");
                Console.WriteLine(System.DateTime.Now);
The conversion works, but the background remains solid white when I want it to be transparent.

Here is an example file to test with.

Viewing all articles
Browse latest Browse all 3693

Trending Articles



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