New Post: How to set tEXT chunk in PNG files?
Do you want to set the tIME chunk or do you just want to read it? There could be a couple of reasons why Magick.NET is slower then the .NET encoder. Magick.NET will always decode the pixels of an image...
View ArticleNew Post: Strange Problem with FontTypeMetrics
I have very strange problem - I have custom font installed and I am trying to write text with it. I checked that font is properly installed. I see it in "convert -list font" command. I am creating new...
View ArticleNew Post: Strange Problem with FontTypeMetrics
Can you post the font you are using on something like DropBox? Feel free to contact me trough CodePlex if you don't want to publicly share your font file.
View ArticleNew Post: Strange Problem with FontTypeMetrics
After continuing this conversation by e-mail we found a solution for this. Specifying the full path to the font file fixed the problem: image.Font = @"C:\fonts\CustomFont.otf"; image.FontPointsize = 100;
View ArticleNew Post: GoDaddy Host
I'm getting the error: Could not load file or assembly 'Magick.NET-x86.DLL' or one of its dependencies. and it seems that I need to install the Microsoft Visual C++ 2010 Redistributable Package but I'm...
View ArticleNew Post: GoDaddy Host
I have contacted the user from the topic 'https://magick.codeplex.com/discussions/564928' to ask if my suggestion worked. I also suggested the same thing to the user from this topic:...
View ArticleNew Post: Resize EPS
Hey guys, I'm trying to resize an EPS file, and the result EPS has a bigger file size than the original one, so I was wondering if there is some kind of fix for this, thanks in advanced: var epsFile =...
View ArticleNew Post: Resizing an EPS file
An EPS file is a vector image format. The output created by ImageMagick will always be in a raster format. That will always be larger. And there is no real need to resize a vector image. You can...
View ArticleNew Post: Save High Resolution PNG to Disk is very slow
I am really a new user to ImageMagick, please forgive me if a wrote something wrong I wrote a simple code to convert a 40 Megapixel image from JPEG to PNG, here is the code using (MagickImage image =...
View ArticleNew Post: ImageMagick Performance on Very High Resolution Images
I am new to ImageMagick, please accept my apologies if I mention something wrong I am using ImageMagick from a couple of days to achieve the following functions on Ultra High Resolution Images (Around...
View ArticleNew Post: Save High Resolution PNG to Disk is very slow
When I read this on my machine it reads the image in 1 second and takes 22 seconds to write the image. The reason the png writer is taking so long is probably due to the fact that is is compressing the...
View ArticleNew Post: ImageMagick Performance on Very High Resolution Images
As posted in the other topic the performance 'experience' on my machine is different from yours. You might gain an improvement if you change the compression (Quality). Details on what value to use can...
View ArticleNew Post: Resizing an EPS file
Hey I was able to solved the problem using Ghostscript directly:-q -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dNumRenderingThreads=4 -r72 -dDEVICEWIDTH=2700 -dDEVICEHEIGHT=2700 -dEPSFitPage...
View ArticleNew Post: Save High Resolution PNG to Disk is very slow
My machine has Intel Core-i7 processor with 8GB RAM
View ArticleNew Post: Save High Resolution PNG to Disk is very slow
And it takes 2 minutes to read and write the image (40MP.jpg)?
View ArticleNew Post: Save High Resolution PNG to Disk is very slow
The processing time (22 seconds) you shared earlier encourage me to carry some more tests. I had Windows 8.1 installed on my machine. I got a surprising result after testing the same application on...
View ArticleNew Post: Save High Resolution PNG to Disk is very slow
I test out the application with assigning different values to image.Quality and the processing time variation from 25 seconds to 60 seconds image.Quality = 100; What should be the maximum and minumum...
View ArticleNew Post: Save High Resolution PNG to Disk is very slow
If you are writing a PNG file the value of the Quality is not as simple as you might think. I posted a detailed explanation here: https://magick.codeplex.com/discussions/569689#post1314107.
View ArticleNew Post: CMYK to RGB for JPEG
Dirk, I have another question regarding this topic. Please look at this image Cerealhttps://app.box.com/s/qaqn8sue5zdkhz32scso. Is there any hope of converting this to an image in either RGB or CMYK...
View ArticleNew Post: Make white background transparent on existing PNG
Hello, I saw some previous discussions regarding transparency on PNGs, specifically, this threadhttps://magick.codeplex.com/discussions/453564 Given an existing PNG image, I would like to make the...
View Article