New Post: Append Images
Hi, I want to display a pdf document on web browser. I have converted each page of the pdf to jpeg image, now I want to append these images to display on the browser. How can I append these images?? I...
View ArticleNew Post: Append Images
What do you mean by append? You want to output the pages of the pdf into one image?
View ArticleNew Post: Append Images
I posted an example here: https://magick.codeplex.com/wikipage?title=Convert%20PDF&referringTitle=Documentation
View ArticleNew Post: PDF->PNG conversion failing
Thanks for reminding me to post something that about the GhostScript issues. I added a wiki page that explains which version of GhostScript you should install and how you can convert a PDF to an image...
View ArticleNew Post: Image conversion in web app
There is no easy way to do this with the examples you provided. You will have to write some code that calculates the edges of the image. My example shows how you can access the individual pixels of an...
View ArticleNew Post: GUI for Magick.NET
I mean freehand editing operations like underlining or encircling some part of the document. Like the one available in Adobe Acrobat reader, i.e. a pen like tool to be controlled by mouse.
View ArticleNew Post: Append Images
AppendVertically() is not recognized by the compiler, is there any other reference to made to use this function. I have already installed 32 bit GhostScript.
View ArticleNew Post: Append Images
I forgot to mention that you need to download the latest release.
View ArticleNew Post: PDF->PNG conversion failing
@petersunde - Thanks for the pointer and @dlemestra for the wiki page. Spot on, the problem was a 64 bit version of GhostScript.
View ArticleNew Post: Append Images
Thanks for the help, well I got it working by displaying all the individual images.
View ArticleNew Post: How to generate images with formatted text
Dim img As ImageMagick.MagickImage = New MagickImage(path) img.Draw(New DrawableFont("Comic Sans MS", FontStyleType.Italic, FontWeight.Weight400, FontStretch.Normal)) img.Draw(New DrawableFillColor(New...
View ArticleNew Post: How to generate images with formatted text
If you want to do multiple draw operations you should use the overload of Draw that accepts an IEnumerable<DrawableBase>. Below is an example in C#.using (MagickImage img = new MagickImage(path))...
View ArticleNew Post: How to generate images with formatted text
Hi dlemstra, Thanks for your quick reply. Your reply helped me greatly. Thanks again for your support. By the way - you puzzled me by referring the font "Comic Sans" as Evil. :)
View ArticleNew Post: Web Application Difficulties
Thanks for your reply dlemstra. I have tried many things to get the deployed web application working. I have disabled 32-bit mode web applications and replaced the DLLs with the x64 DLLs directly from...
View ArticleNew Post: Web Application Difficulties
What is the complete name of the zipfile you downloaded?
View ArticleNew Post: Web Application Difficulties
I downloaded Magick.NET-6.8.5.402-Q8-x64-net40-client.zip and Magick.NET.Web-6.8.5.402-x64-net40.zip. I am more comfortable with Mono+Apache.. so this might sound like an odd question. Is there any...
View ArticleNew Post: Web Application Difficulties
I used dumpbin to verify that all the dll's in the zip files you downloaded are x64. Did you install the x64 version of Visual C++ Redistributable for Visual Studio 2012? Which version of IIS are you...
View ArticleNew Post: Web Application Difficulties
I have the x64 version of the Visual C++ Redistributable installed. I am using IIS 7.5 on Windows 7 x64. Here is the load trace:Assembly manager loaded from:...
View Article