New Post: .ps to image
If the download name contains -x86- it is a 32 bit version. If you want the 64 version look for -x64- in the download name.
View ArticleNew Post: DPI
For the code, the line I'm using is: testImage.Density = new MagickGeometry(72); testImage.Write(filedestination); As for the image, I'm not sure how to attach it to this reply. It's about 50 mg,...
View ArticleNew Post: .ps to image
Forgive my question. I had downloaded from the main page, not from the download tab.
View ArticleNew Post: DPI
ImageMagick does not update the density in the profiles. When you view it in Windows explorer it can still be using the value in the profiles. Can you try adding testImage.Strip() before you do...
View ArticleNew Post: DPI
Can you post your image on DropBox or a public image sharing service? Feel free to contact me through CodePlex if you don't want to share it publicly. I would like to investigate if I can update the...
View ArticleNew Post: DPI
https://www.dropbox.com/s/zp6124vntklj8p0/JLU_alt.eps Let me know if you can't download it.
View ArticleNew Post: DPI
Also, there does appear to be some images that imagemagick just will not convert to a desired dpi. For instance,https://www.dropbox.com/s/l6aanp6n3gjzs5q/11267DVDLEF.eps will not convert to .jpg at 72...
View ArticleNew Post: DPI
The problem with your images seems to be the 8BIM profile. When you remove this profile file explorer will show the correct value. Your second image does not show the correct DPI because the...
View ArticleNew Post: DPI
Thanks. That fixed me. As you can probably tell, I'm a little light with my knowledge of images. Thanks for your help.
View ArticleNew Post: Load image in Image control
Can you please help me with basic code to show image from drive in image control?
View ArticleNew Post: DPI
I just modified ImageMagick to update the 8BIM profile when an image is written. The next release of Magick.NET will include this fix. This means you no longer need to strip the 8BIM profile. I will...
View ArticleNew Post: Load image in Image control
Do you want to use Magick.NET to load an image into an image control in a WPF application? I will see if I can add a ToBitmapSource method to the MagickImage class for the .NET 4.0 release of Magick.NET.
View ArticleNew Post: DPI
Sweet. Thanks. Thanks for the effort. I do have one final question. All of my image conversions are working very well except for one. It's fairly large, about 700mb. I do not get an error. My code acts...
View ArticleNew Post: DPI
It seems the XMP profile in your file is very large. Under windows this generates a JPEG file that cannot be opened with the default image viewer of Windows. I will have to investigate if we can fix...
View ArticleNew Post: Magick: Postscript delegate failed...No such file or directory
I'm running 64-bit Windows. I have Ghostscript (v. 9.09 installed). And this is a small windows app. IIS is not involved at the moment. I'm running the same code that converts all of my other image...
View ArticleNew Post: Load image in Image control
Yes please! That would be very useful, thank you very much!
View ArticleNew Post: Magick: Postscript delegate failed...No such file or directory
new MagickImage("testfile.ai") will start the conversion because you are telling it to load "testfile.ai'. You only need to install Ghostscript. Can you post a link to your image so I can see if I can...
View ArticleNew Post: Magick: Postscript delegate failed...No such file or directory
Here's the link to the image.https://www.dropbox.com/s/ue9mq5n0nnsuzzc/PreviewforAI.ai
View Article