New Post: Drawing Italic / Different font text
Thank you for the quick response. However, that still didn't work - see image. It is not using the specified font family and it is not honoring the italics, font weight etc. using (var working = new...
View ArticleNew Post: Drawing Italic / Different font text
Found a workaround. You can't make any arbitrary font bold or italic and you can't use DrawableFont at all. but just using the Font and FontPointsize properties works as long as you format the font...
View ArticleNew Post: Drawing Italic / Different font text
Are you aware of the 'DrawableGravity' class? You can use that to position your text. Then you won't have to do the calculations yourself.
View ArticleNew Post: Quality Resolution - Create a PDF file from two images:
Copied from issue: Hello, you can reduce the quality / resolution of the converted images to PDF? Using this code: Create a PDF file from two images: using (MagickImageCollection collection = new...
View ArticleNew Post: Quality Resolution - Create a PDF file from two images:
You have to set the resolution and the quality on the image. You cannot set it on the whole collection. It should be something like this:using (MagickImageCollection collection = new...
View ArticleNew Post: Drawing Italic / Different font text
I was aware of it, but I didn't know how to handle padding. Now that I've figured that out it does make it significantly easier to place the text. Thank you
View ArticleNew Post: didn't find how to set progressive jpeg or interleace
Congratulations! this .NET project is a wonderful job. It make image handling with magick a lot easier in NET environments. I will appreciate if someone could help to find the right way to save the...
View ArticleNew Post: Old-style JPEG compression
Hello, How to configure Magick.NET to support the old-style jpeg compression? I'm trying to extract a page from a multi-page tiff and save it as a separate single-page tiff file. However this...
View ArticleNew Post: didn't find how to set progressive jpeg or interleace
You can write an progressive image like this:using (MagickImage image = new MagickImage("input.png")) { // Set the format and write to a stream so ImageMagick won't detect the file type. image.Format =...
View ArticleNew Post: didn't find how to set progressive jpeg or interleace
This discussion has been copied to a work item. Click here to go to the work item and continue the discussion.
View ArticleNew Post: didn't find how to set progressive jpeg or interleace
it works !! (just save the file with pjpg extension) Your perfect and quick answer probe that you are working on this project seriously. Thank you very much. Regarding the subsampling option, you are...
View ArticleNew Post: Old-style JPEG compression
You are actually receiving a warning and an error. The message Improper call to JPEG library in state 0 is an error and causes ImageMagick to stop reading the image. I would however expect Magick.NET...
View ArticleNew Post: didn't find how to set progressive jpeg or interleace
With the next release (will be published in a couple of weeks) you will be able to do this: image.SetOption(MagickFormat.Jpeg, "sampling-factor", "4x1,2x1,2x1");
View ArticleNew Post: didn't find how to set progressive jpeg or interleace
It will be wonderful. ImageMagick.net developers will appreciate that. Thank you. Happy to include credits in the final product.
View ArticleNew Post: Convert PDF to a set of PJPEG files
Hi, thank you for such nice library! I've read examples and now trying to convert PDF to a set of progressive JPG files, but i didn't succeed.MagickReadSettings settings = new MagickReadSettings();...
View ArticleNew Post: Convert PDF to a set of PJPEG files
The black pixels are probably transparent pixels. You can give them a color using this method: coverPage.ColorAlpha(new MagickColor("#fff"));
View ArticleNew Post: Convert PDF to a set of PJPEG files
Tried this, no chnages. Here is Sample PDF after converting i've got this Image (no black background, but image not resized) while using resize i have black background:
View ArticleNew Post: Convert PDF to a set of PJPEG files
Solved this via ImageMagick in commandline:convert.exe -colorspace sRGB -interlace line -density 144x144 -quality 100 -resize 500x500 -background white -alpha remove d:\test.pdf d:\test.jpg how can i...
View ArticleNew Post: Convert PDF to a set of PJPEG files
Very interesting, everything okay when i first save PDF page as image, reopen it and perform needed actions:MagickReadSettings settings = new MagickReadSettings(); settings.Density = new...
View Article