New Post: Append multiple rows of images
I'm doing that, but when I append vertically my two lines the text is not centered, this is like:Lorem Ipsum is simply dummy text of the printing Lorem Ipsum has But I'm expecting it to be like:Lorem...
View ArticleNew Post: Append multiple rows of images
You can avoid that if you extent the line image to the desired width first and use image.height for the height.
View ArticleNew Post: Lossless compression
Hi, Along with the code mentioned here for lossless compression http://magick.codeplex.com/wikipage?title=Lossless%20compression&referringTitle=Documentation, is it possible to give in more...
View ArticleNew Post: Lossless compression
Lossless compression means that you compress the image without any loss. You could try to disable lossless on the imageoptimizer to get a better compression. The loss is hardly noticable with jpeg...
View ArticleNew Post: Lossless compression
Yes, its for reducing the file size of some of the images that we have. I'll try by disabling lossless. There is another strange issue. Some of the images seems to be having format issues even though...
View ArticleNew Post: Lossless compression
You could use NagickImageInfo te detect the actual format of the file. This will determine the format without loading the pixels. Are you using the ImageOptimizer class or the JpegOptimizer?
View ArticleNew Post: Lossless compression
Thank you the necessary info could be obtained from your suggested class. The ImageOptimizer is being used, its just that from the exception thrown it displays the JpegOptimzer class name also. There...
View ArticleNew Post: Lossless compression
I am planning to create a demo website application next week. This will demonstrate how you could use it.
View ArticleNew Post: Magick.NET.web
Does this mean that I can save a RAW picture I take with my Canon camera, then when someone wants to look at my pictures, I can generate a lighter weight .jpg on demand? Camera > Folder on server...
View ArticleNew Post: How do I use ImageMagick.Percentage and .TextAlignment?
I can't seem to assign it a percentage. I am trying to create a text watermark over an image. Your code works in a drawing example you have. I would like to make the font opaque so the viewer can still...
View ArticleNew Post: Magick.NET.web
Yes you can use the library to resize a RAW file on demand. But you will need the dcraw executable to read RAW files.I'll add a watermark example in the demo also. And yes you could do this with the...
View ArticleNew Post: How do I use ImageMagick.Percentage and .TextAlignment?
Percentage is a struct that has no implicit cast from a number to percentage so you will need to do it yourself. Either "new Percentage(20)" or "(Percentage) 20". If you want the text on the middle of...
View ArticleNew Post: Converting from PDF to PNG image quality loss.
Using the follow code to convert a PDF in the form of a byte array to a PNG image. It's converting it successfully and the PNG image is the correct size, 4 inches by 6 inches. The problem is the...
View ArticleNew Post: Converting from PDF to PNG image quality loss.
You will need to set the Density in the MagickReadSettings and use that as an argument for the constructor.
View ArticleNew Post: How do I use ImageMagick.Percentage and .TextAlignment?
hmmm. I got it to work with .FillColor("white") and .FillOpacity(New Percentage(50)) did away with the stroke and elipse and adjusted location using .Text(x=somenumber, y=somenumber,"Magick.NET") Works...
View ArticleNew Post: How do I use ImageMagick.Percentage and .TextAlignment?
Not sure what you mean by "I was waiting to see if anyone replied, didn't get an email.". If you want to send me something through paypal please contact me through CodePlex and I will tell you where u...
View ArticleNew Post: How do I use ImageMagick.Percentage and .TextAlignment?
I just donated $30. Well worth it.
View ArticleNew Post: .Resize is not working, not sure why
I want to save the master, then an 600x600, then a 600x600 with Watermark, then a thumbnail of the image object. They are all saved master size. Watermark works. //SAVE UNTOUCHED MASTER...
View ArticleNew Post: How do I use ImageMagick.Percentage and .TextAlignment?
I have not yet shared my PayPal details with you? You gave it to the wrong person?
View ArticleNew Post: .Resize is not working, not sure why
If you want to create a thumbnail of the original image you should create a "Clone" before you resize it.
View Article