Search found 36 matches

by him21sri
2017-04-10T05:03:33-07:00
Forum: Users
Topic: Not able to draw text on image
Replies: 5
Views: 4350

Re: Not able to draw text on image

Thank you, Installed a fresh ImageMagick and all delegates were present. I am able to draw text over an image now. I have another problem, I want to add padding to the image on the sides, for this I am using MagickExtentImage API where I will provide the offset where the image will be placed and on ...
by him21sri
2017-04-07T05:52:08-07:00
Forum: Users
Topic: Not able to draw text on image
Replies: 5
Views: 4350

Re: Not able to draw text on image

yes my imageMagick do not have freetype convert --version Version: ImageMagick 6.8.9-10 Q16 x86_64 2017-04-07 http://www.imagemagick.org Copyright: Copyright (C) 1999-2014 ImageMagick Studio LLC Features: DPC OpenMP Delegates: bzlib jng jpeg png zlib Can you please point me to the link from where I ...
by him21sri
2017-04-07T04:06:43-07:00
Forum: Users
Topic: Not able to draw text on image
Replies: 5
Views: 4350

Not able to draw text on image

I want to draw some text over an image and I am trying to that in the below manner : DrawAnnotation(d_wand,10,10,"Magick"); MagickDrawImage(wand,d_wand); But I am getting below error : delegate library support not built-in `none' (Freetype) @ warning/annotate.c/RenderFreetype/1533. delegat...
by him21sri
2016-05-19T06:35:36-07:00
Forum: Users
Topic: Resize an Image using ImageMagick C API
Replies: 4
Views: 4057

Re: Resize an Image using ImageMagick C API

Thanks for the help :)

Really Appreciate :)
by him21sri
2016-05-19T06:15:45-07:00
Forum: Users
Topic: Resize an Image using ImageMagick C API
Replies: 4
Views: 4057

Re: Resize an Image using ImageMagick C API

How do you calculate the new number of columns and rows for the above mentioned methods. Say, for example I have an image with 1080x1440 dimension and I wanna resize it to 1200x627. So what should be the number of rows and columns that I need to pass to the above methods, so that I get a proper Imag...
by him21sri
2016-05-19T05:36:44-07:00
Forum: Users
Topic: Resize an Image using ImageMagick C API
Replies: 4
Views: 4057

Resize an Image using ImageMagick C API

My ultimate target is to resize many images maintaining their aspect ratio as well, and if required fill the extra space(padding) with white color. Please suggest some C API to achieve this. I tried using MagickResizeImage and MagickScaleImage but both are resulting in blurry images. When I use &quo...