New Post: Resizing image without keeping aspet ratio
Thanks for the information :) But in the project, i have to do this before for different reasons, but maybe in this case i shouldn't use the result and use the height = 0. Anyway i finally found a...
View ArticleNew Post: Can we Bin Deploy the library without installing anything on server?
Is there a way to upload only the dll to web server without installing any exe?
View ArticleNew Post: Can we Bin Deploy the library without installing anything on server?
You need to install Visual C++ Redistributable for Visual Studio 2012 (x86 or x64) on your webserver. And if you want to read pdf/eps you also need to install GhostScript.
View ArticleNew Post: Can we Bin Deploy the library without installing anything on server?
Is you have any working sample image re-sizing in ASP.NET 4.0 or 4.5. I have installed C++ Redistributable for Visual Studio 2012 (x86 or x64) and then installed...
View ArticleNew Post: Can we Bin Deploy the library without installing anything on server?
It looks like ImageMagick cannot find the directory that contains the ImageMagick files. Did you try calling MagickNET.Initialize without any parameters? And can you temporary move the method call to...
View ArticleNew Post: Can we Bin Deploy the library without installing anything on server?
Did you try calling MagickNET.Initialize without any parameters? And can you temporary move the method call to your Page_Load? Still same error. But some time I get M_MOD_RL_tile_.dll is not found...
View ArticleNew Post: Can we Bin Deploy the library without installing anything on server?
Does the file 'IM_MOD_RL_tile_.dll' exist in your ImageMagick folder in your bin directory?
View ArticleNew Post: Can we Bin Deploy the library without installing anything on server?
No, it doesn't. BTW, you are doing good job but I think you need to make sample applications available. Not all users(like me) will try very hard to make a simple thing work. Users will simply switch...
View ArticleNew Post: Can we Bin Deploy the library without installing anything on server?
I have to agree with you that it is not that easy to get this library to work for a novice user. I hope that with a static build using this library will become a lot easier. It is also a good idea to...
View ArticleNew Post: Can we Bin Deploy the library without installing anything on server?
This discussion has been copied to a work item. Click here to go to the work item and continue the discussion.
View ArticleNew Post: Ushort Array Channels from WritablePixelCollection
I fetch the UInt16 array from WritablePixelCollection:WritablePixelCollection pixels = magickImg.GetWritablePixels(); UInt16[] pixelArray = pixels.GetValues(); My image is a 16-bit grayscale so I...
View ArticleNew Post: Ushort Array Channels from WritablePixelCollection
That is how ImageMagick works internally but this will change in ImageMagick 7. In the porting guide (http://www.imagemagick.org/script/porting.php) the following is written: Grayscale images consume...
View ArticleNew Post: Working with channels
The Separate method will return an IEnumerable<MagickImage> in the next release. It no longer modifies the current image.
View ArticleNew Post: Feature request: Histogram Matching
I first use Image Magick to auto-rotate my scanned images, then I realized that I can do much more whit it. I was trying to process Landsat Satellite images and it worked. Basic Landsat 8 Pansharpening...
View ArticleNew Post: Feature request: Histogram Matching
Maybe you should create a MagickScript file for this operation? You can find information about MagickScript here:...
View ArticleNew Post: Feature request: Histogram Matching
I don't realize that it can be done with scripts. I will try it. Thanks!
View Article