New Post: Web Application Difficulties
Does your AssetTracker dll target AnyCPU or x64? Maybe you have to empty the directory 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Temporary ASP.NET Files'? You could also use the program Process...
View ArticleNew Post: Web Application Difficulties
My application targets AnyCPU, but I changed it to target x64 (which makes sense) and it still does not work. I purged that directory and ran into the same problem. I'll try out process monitor to see...
View ArticleNew Post: Web Application Difficulties
Resolved! I managed to resolve the issue. I put ildasm onto AssetTracker.dll and noticed 32BITREQUIRED in the manifest. I am using Visual Studio 2012 Web Express and I thought I was targeting x64, but...
View ArticleNew Post: How to combine multiple images into one
I want to create an image, which will be a mixture of multiple images places in different angles and positions, and overlapped partially. I wonder, would it be possible to do with MagickImage? I tried...
View ArticleNew Post: How to combine multiple images into one
You should use the MagickImageCollection class. Here is an example:using (MagickImageCollection images = new MagickImageCollection()) { MagickImage first = new MagickImage("first.png");...
View ArticleNew Post: Converting .txt file to jpg Image
There is no way to write the convert a text file to a jpg. You have to draw the content of the text file in an image. An example of how drawing works can be found here:...
View ArticleNew Post: Open raw images
I'm trying to open a CR2 raw image from a Canon camera but I get the exception UnableToOpenBlob `C:/.../AppData/Local/Temp/magick-1096qq7lCu64cJT6.ppm': No such file or directory @...
View ArticleNew Post: Open raw images
Can you provide me with a link to one of your images? That makes it easier for me to determine the problem. And which version of Magick.NET are you using?
View ArticleNew Post: Open raw images
Here is a link to the image http://audaxperginebasket.it/media/images/image.CR2 I tried with the dcraw.exe in the dll's directory but the result is the same: exception UnableToOpenBlob when I try to...
View ArticleNew Post: Open raw images
I am unable to download your file, it stops at 2.6mb. I used another CR2 image I found online and I got it to work. Did you place the dcraw.exe in the directory that contains delegates.xml and...
View ArticleNew Post: Open raw images
I placed the dcraw.exe in the directory as you suggested but it doesn't work. I tried with these images https://code.google.com/p/rawtohdri/downloads/detail?name=Canon_CR2_2.zip&can=2&q= as...
View ArticleNew Post: Open raw images
I will put this information somewhere in the documentation so other people won't run into the same problem.
View ArticleNew Post: How to implement "best-fit" supplied text in a given region in image
Say, I want a 100 x 100 pixel image generated, and the argument is string of dynamic length. Now, the result image should have the supplied text in best-fit size in 100 x 100 area. It should be...
View ArticleNew Post: How to implement "best-fit" supplied text in a given region in image
You could use the FontTypeMetrics method of MagickImage to calculate the size of text you are drawing. Below is a simple example for when you are trying to write a single word:string word = "Word!";...
View ArticleNew Post: Exif data
At this moment you need to parse the exif data yourself. I created an issue to add a class that can be used to retrieve the exif data. I will try to include it in the next release.
View ArticleNew Post: Convert gray PNG to black and white TIF produces garbage output.
I am new to ImageMagick (been using FreeImage) and I am trying to convert a bunch of grayscale PNG files to black and white (bi-tonal) tiffs. The code I have runs but produces tiffs that I can not open...
View ArticleNew Post: Convert gray PNG to black and white TIF produces garbage output.
I think you should use the extension 'tiff' instead of 'tif'.
View Article