New Post: PCD support?
Does Imagemagick support PCD files? I tried to convert it to JPG using Magick.NET and it throws a missing delegate error. Irfanview says it's a PCD, so I can provide the image if it's worth the time to...
View ArticleNew Post: MagickImage adds black line at top of image during svg to png/pdf...
I cannot reproduce your issue with the latest version of Magick.NET. Can you upgrade to 7.0.0.0022 and try it again? You will need to install the Visual C++ Redistributable for Visual Studio 2015 for...
View ArticleNew Post: PCD support?
PCD is supported and should work. Can you post a link to your file so I can run some test with it? Feel free to contact me through CodePlex if you don't want to share it publicly
View ArticleNew Post: Merging Text On An Input Image To Produce a Final Image With Text
Thanks for the reply. I tried this already using the watermark approach described at [Watermark approach(https://magick.codeplex.com/wikipage?title=Watermark&referringTitle=Documentation) Problem...
View ArticleNew Post: can not read Group 3 TIFF Image
ImproperImageHeader error/tiff.c/ReadTIFFImage/1215 MagickReadSettings settings = new MagickReadSettings() {Format = MagickFormat.Fax }; using (MemoryStream stream = new MemoryStream()) {using...
View ArticleNew Post: can not read Group 3 TIFF Image
Your tiff file is missing a mandatory TIFF tag called PhotometricInterpretation (http://www.awaresystems.be/imaging/tiff/tifftags/photometricinterpretation.html) There is no default for...
View ArticleNew Post: can not read Group 3 TIFF Image
Thanks for reply dlemstra Is there a way to skip this situation ? Because of that, I do not have hard copy these images i just need this images convert to pdf files
View ArticleNew Post: can not read Group 3 TIFF Image
What do you mean by skip this situation? Your image is invalid and cannot be converted to a PDF file.
View ArticleNew Post: rotate top left
Anyone can help ? I've tried various distort params with no luck.
View ArticleNew Post: can not read Group 3 TIFF Image
Ok. i see now is not possible Thanks for help dlemstra
View ArticleNew Post: Maby problem with Composite
Hi all, It's my first post because it's my first project. I must change color for image on one website. I user .NET c#. I want convert this command : convert 'test.jpg' \( -clone 0 -fill 'red'...
View ArticleNew Post: PCD support?
It seems your file is not an PCD file. I get the following output on my linux machine:media@singlemalt:~/files$ file 1e0dc24441bc414e8bc12e8b99a5f710.pcd 1e0dc24441bc414e8bc12e8b99a5f710.pcd: AIX core...
View ArticleNew Post: PCD support?
Ah, ok. My version of Irfanview was about three minor versions back. When I open it with the latest, it doesn't give the popup about it being "a PCD file with jpg extension" - although it does open it...
View ArticleNew Post: rotate top left
You could use Composite. But you will need some math to calculate the x and y position.using (MagickImage logo = new MagickImage("logo:")) { using (MagickImage overlay = new MagickImage("xc:fuchsia",...
View ArticleNew Post: Maby problem with Composite
Your output is probably from an ImageMagick 6 version of convert. Magick.NET uses ImageMagick 7 and it seems that this is bugged in IM7. I am getting a 'reddish' image with ImageMagick 7. We will have...
View ArticleNew Post: Maby problem with Composite
Hi, +1 for you. Exactly, I use convert >version 6.7.3-4 and Magick.Net is version 7.0 I wait the correction. Thanks you very much
View Article