New Post: Do we need to install vs 2012 on server to use ImageMagick?
What do you mean by 'cannot save'? What is the error/exception you are receiving?
View ArticleNew Post: Do we need to install vs 2012 on server to use ImageMagick?
I meant that in our local environment, image is saved to folder but on server, image is not saved to the folder. Any guesses, what is the problem? Thank You, Vimal
View ArticleNew Post: Do we need to install vs 2012 on server to use ImageMagick?
I really need more information, what is the error you are receiving? How are you writing the image? Your question is like me asking you why my car won't start. And if you can fix it for me.
View ArticleNew Post: Do we need to install vs 2012 on server to use ImageMagick?
Surprise for me is that, there is no error occurs. Below is my code: if (!Page.IsPostBack) { MagickReadSettings settings = new MagickReadSettings(); settings.Density = new MagickGeometry(300, 300);...
View ArticleNew Post: Do we need to install vs 2012 on server to use ImageMagick?
Maybe your live environment is writing the output somewhere else then you are expecting. Can you search your server for the file 'Snakeware.Page.jpg'? And can you try it without 'Server.MapPath'?...
View ArticleNew Post: 1000+ Single Page JPEG encoded TIFF takes lot of memory and throws...
Have you tried my code?
View ArticleNew Post: Do we need to install vs 2012 on server to use ImageMagick?
Thanks for your reply. I have already tried search with the file name 'Snakeware.Page.jpg' in whole drive in server but I could not find it. I think that imagemagick is not converted pdf to images in...
View ArticleNew Post: Do we need to install vs 2012 on server to use ImageMagick?
Did you install Ghostscript on your server?
View ArticleNew Post: Do we need to install vs 2012 on server to use ImageMagick?
Yes, I have installed Ghostscript on server 32 and 64 bit but in control panel only shows me one Ghostscript is installed.
View ArticleNew Post: 1000+ Single Page JPEG encoded TIFF takes lot of memory and throws...
Yes, i have tried out and your code works fine. The Problem lies with the byte array of each file which took memory. After implementing couple of changes in calling method i am now able to upload 1000...
View ArticleNew Post: Do we need to install vs 2012 on server to use ImageMagick?
Can you try to see what happens when you write to a full path, for example: image.Write(@"c:\test\Snakeware.Page.jpg")?
View ArticleNew Post: Do we need to install vs 2012 on server to use ImageMagick?
Thank you for your help. Now it is working fine. Problem was with Ghostscript. Earlier 32 bit exe could not installed but yesterday once I tried and it installed and seems to work fine. Thank You Very...
View ArticleNew Post: Use +opaque option
Hello I would like to know how I can perform this command console magick.net. Example: convert input.tif -fuzz 60% -fill red +opaque black -background black -alpha background output.png I would like to...
View ArticleNew Post: Use +opaque option
Can you post a link to input.tif and output.png in something like dropbox?
View ArticleNew Post: Composite.Blur working
trying to duplicate this example from the imagemagick tutorial site: (http://www.imagemagick.org/Usage/mapping/) convert koala.gif blur_map_bool.gif -compose blur -define compose:args=3 -composite...
View ArticleNew Post: Use +opaque option
The above example was not a real example. What I need is to know if there is any option to change all the pixels that are NOT from one color to another color. For example all the pixels of an image...
View ArticleNew Post: Use +opaque option
It turns out that the +opaque option is not yet available in Magick++. I will have to add this for you and then add it to Magick.NET.
View ArticleNew Post: Use +opaque option
This discussion has been copied to a work item. Click here to go to the work item and continue the discussion.
View ArticleNew Post: Composite.Blur working
This appears to be a bug in Magick.NET. It does however silently raise a warning (mImage.Warning). The bug will be fixed in the next release of Magick.NET.
View Article