New Post: Precisely placing multiple overlapping images
How do I precisely place multiple overlapping images? Below is the code I have so far. It overlaps the images at their top left corner. See example below.string[] files = Directory.GetFiles(".",...
View ArticleNew Post: Precisely placing multiple overlapping images
You can do this with the Composite method of MagickImage. Below is a simple example:using (MagickImage canvas = new MagickImage("xc:none", 100, 100)) { using (MagickImage red = new...
View ArticleNew Post: Failed to load embedded assembly: The type initializer for...
Hi, I am facing an issue with Magick.Net x64 dll not getting loaded when accessing from IIS. Here are the details: Machine Details: Windows 7 SP1 (x64)Installables.png - The Installables have both x86...
View ArticleNew Post: Failed to load embedded assembly: The type initializer for...
When are you setting the cache directory? You should set this before you use any of the other Magick.NET classes.
View ArticleNew Post: Failed to load embedded assembly: The type initializer for...
Yes, that is what we tried before the statement gets executed we tried to set the cache directory. It didn't work so. Can you please suggest anything else that we are missing?
View ArticleNew Post: Failed to load embedded assembly: The type initializer for...
Can you upgrade to the latest version of Magick.NET and try again?
View ArticleNew Post: SetDefine Options for the JP2000 encoder not works
Thanks, this works... I have found the options on this url, http://webapp5.rrz.uni-hamburg.de/RRZ/ImageMagick/www/jp2.html. I have just googled it, and not checked the url..... i think i found another...
View ArticleNew Post: Failed to load embedded assembly: The type initializer for...
No, we cannot upgrade because we are working on a hotfix pack for our customers. It might not be advisable to do so. Also; just so that you know; every other machine in our network is able to load the...
View ArticleNew Post: Failed to load embedded assembly: The type initializer for...
Can you get more information from the InnerException of 'FailToLoadAssembly.jpg'?
View ArticleNew Post: Failed to load embedded assembly: The type initializer for...
Here's the link for the inner exception that I uploaded to onedrive - http://1drv.ms/13VOv2r I also observed this is similar to the thread https://magick.codeplex.com/discussions/553305 ; in which one...
View ArticleNew Post: Failed to load embedded assembly: The type initializer for...
I am not sure if this is available in your version of Magick.NET but can you also do the following at the start of your application: MagickNET.SetOpenCLCacheDirectory(@"C:\Windows\Temp");or you could...
View ArticleNew Post: Failed to load embedded assembly: The type initializer for...
Hi, Thanks for the information; I tried that earlier per one of the older threads. I tried it once again but it seems it is not able to refer the MagickNET class at all and so accessing this property...
View ArticleNew Post: Precisely placing multiple overlapping images
That worked! Thanks! BTW, I compiled your code and discovered one error in the last Composite() call. This line, yellowcanvas.Composite(yellow, new MagickGeometry(x, y, purple.Width, purple.Height),...
View ArticleNew Post: Precisely placing multiple overlapping images
Sorry about the typo :) That will teach me to change code in this editor instead of Visual Studio. I have fixed the example. And here is an answer to your questions:There is already a lot of...
View ArticleNew Post: Failed to load embedded assembly: The type initializer for...
I checked the history and the feature to set the OpenCL cache directory was added after that release. So you need to upgrade or make sure that your application has write access in %LOCALAPPDATA%.
View ArticleNew Post: JPEG 2000 Encoder very slow in multithread setup
I use Imagemagick.net for converting pictures in TIFs and perform the color space of them. At the moment i only use imagemagick.net for the color transform and save the pictures to TIF files, than i...
View ArticleNew Post: JPEG 2000 Encoder very slow in multithread setup
The jp2 coder that uses the OpenJPEG library in ImageMagick does not seem to have support for reading/writing multiple images at the same time. This restriction was probably put there a while ago. I...
View ArticleNew Post: Failed to load embedded assembly: The type initializer for...
Okay Thanks a lot for your help! We'll try to make it in the next hotfix pack / release versions. Appreciate your help once again.
View ArticleNew Post: Using Magick.NET without installing VS 2012 C++ Redistributable EXE
Did you manage to get this working?
View ArticleNew Post: Using Magick.NET without installing VS 2012 C++ Redistributable EXE
No. Not yet. still not resolved. Its working in my system. Hosted the website in IIS and tried. But not working when hosted the site in GODADDY . Go daddy support team is not able to help in this as...
View Article