New Post: How to reduce time while converting j2k image to bitmap using...
Press the 'DOWNLOADS' button in the menu to get the latest version. I will try if I can reproduce your problem with the latest version during my lunch break.
View ArticleNew Post: How to reduce time while converting j2k image to bitmap using...
Thank you. Magick.NET-6.8.8.201-Q16-x64-net40-client. is this a latest version? I have downloaded this but error is coming "Could not load file.." But my pc configuration is 32 bit. So only x86 version...
View ArticleNew Post: How to reduce time while converting j2k image to bitmap using...
You are now using the latest version. The problem seems to be that ToBitmap now uses ImageFormat.Png to create the bitmap. When you use ToBitmap(ImageFormat.Bmp) the bitmap will be created much faster....
View ArticleNew Post: How to reduce time while converting j2k image to bitmap using...
I have checked that by using ToBitmap(ImageFormat.Bmp).It gives me error for some images, i.e. "MagicK: unable to decode image file".
View ArticleNew Post: How to reduce time while converting j2k image to bitmap using...
That error message is from reading an incorrect j2k file. Changing ToBitmap() to ToBitmap(ImageFormat.Bmp) should not not affect this.
View ArticleNew Post: is it possible to create a PDF from an image ?
Hi, I found today Magick.net. In vb.net, I create, with GDI+, bills with texts, graphics and a background image. The results are in an image list (emf format) that I send first on the screen and after...
View ArticleNew Post: is it possible to create a PDF from an image ?
You can use Magick.NET to create a PDF file from an image. You also need to install Ghostscript for this to work. It is as simple as this:using (MagickImage image = new MagickImage("Bill.jpg")) {...
View ArticleNew Post: Running Magick.net with only gsdll32.dll
Greetings! I was wondering if there is a way to use Magick.Net without having to also install Ghostscript. I would like to be able to use Magick.Net (which by the way is an awesome tool! Thank you!) to...
View ArticleNew Post: Running Magick.net with only gsdll32.dll
Can you be provide me with a stacktrace or a crashdump (contact me through CodePlex to get my e-mail address). I would really like to fix this but I am unable to reproduce the StackOverflowException...
View ArticleNew Post: Running Magick.net with only gsdll32.dll
This discussion has been copied to a work item. Click here to go to the work item and continue the discussion.
View ArticleNew Post: Running Magick.net with only gsdll32.dll
Hey there! I'm pulling down your code and will get it setup so that I can debug into it and get a proper stack trace for you. I did a little experimenting installing and uninstalling gs9.10. It is...
View ArticleNew Post: .ps to image
Hi all, is possible to convert .ps files into image file ? Thanks. Alessandro
View ArticleNew Post: .ps to image
You can just read a .ps file and then write it to another format. All you need to do is this:using (MagickImage image = new MagickImage("alessandro.ps")) { image.Write("hotzambo.png"); }You do need to...
View ArticleNew Post: .ps to image
Thanks, now work. Is possible to set the resolution ? Alessandro
View ArticleNew Post: .ps to image
You can specify the resolution (Density) like this: MagickReadSettings settings = new MagickReadSettings(); settings.Density = new MagickGeometry(300, 300); using (MagickImage image = new...
View ArticleNew Post: DPI
I am having the exact same issue. Has anyone found a resolution to this? I'm using MagickNet -x64 installed from the nuget package. Thanks, Tim
View Article