Search found 8 matches

by hscho
2015-10-28T01:40:06-07:00
Forum: Users
Topic: Crosscompiling and Library error
Replies: 0
Views: 11730

Crosscompiling and Library error

I successfully cross compiled the whole ImageMagick for an ARM processor with my Linaro GCC Toolchain. Now I'm trying to compile the wand.c code from the /api_examples but I couldn't get the linker to work... arm-linux-gnueabihf-gcc -Wall -I./ -LMagickCore/.libs -LMagickWand/.libs -lMagickWand ...
by hscho
2015-10-28T01:11:49-07:00
Forum: Users
Topic: Library function to draw text on image
Replies: 3
Views: 2420

Re: Library function to draw text on image

ok, but is there an example for the draw text part I want to use?
by hscho
2015-10-27T05:46:45-07:00
Forum: Users
Topic: Library function to draw text on image
Replies: 3
Views: 2420

Library function to draw text on image

Currently I'm working on a C application which makes an *.jpg file from a pixelarray. This has nothing to do with ImageMagick. After the *.jpg file is created I start a Bash script which uses the "convert" from ImageMagick to draw a text on that image. Is it possible to include a ImageMagick Library ...
by hscho
2015-10-15T07:16:40-07:00
Forum: Users
Topic: Draw text on jpg without auto-correction
Replies: 6
Views: 4063

Re: Draw text on jpg without auto-correction

yes, thank you!
by hscho
2015-10-15T05:51:05-07:00
Forum: Users
Topic: Draw text on jpg without auto-correction
Replies: 6
Views: 4063

Re: Draw text on jpg without auto-correction

Image: C_9.bmp Format: BMP (Microsoft Windows bitmap image) Class: DirectClass Geometry: 736x480+0+0 Resolution: 28.34x28.34 Print size: 25.9704x16.9372 Units: PixelsPerCentimeter Type: TrueColorAlpha Endianess: Undefined Colorspace: sRGB Depth: 8-bit Channel depth: red: 8-bit green: 8-bit blue: 8 ...
by hscho
2015-10-15T05:49:29-07:00
Forum: Users
Topic: Draw text on jpg without auto-correction
Replies: 6
Views: 4063

Re: Draw text on jpg without auto-correction

Image: 00025950_0000.jpg Format: JPEG (Joint Photographic Experts Group JFIF format) Class: PseudoClass Geometry: 736x480+0+0 Resolution: 72x72 Print size: 10.2222x6.66667 Units: Undefined Type: Grayscale Base type: Grayscale Endianess: Undefined Colorspace: Gray Depth: 8-bit Channel depth: gray: 8 ...
by hscho
2015-10-15T05:42:03-07:00
Forum: Users
Topic: Draw text on jpg without auto-correction
Replies: 6
Views: 4063

Re: Draw text on jpg without auto-correction

Version: ImageMagick 6.7.7-10 2014-03-06 Q16 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2012 ImageMagick Studio LLC
Features: OpenMP
Ubuntu

Image
Image
by hscho
2015-10-14T00:30:21-07:00
Forum: Users
Topic: Draw text on jpg without auto-correction
Replies: 6
Views: 4063

Draw text on jpg without auto-correction

To display an orange text on a grayscale JPG image I use the following command in a bash script: convert -font Ubuntu-Mono-Regular -quality 100% -pointsize 20 -fill DarkOrange1 \ -draw "text 7,22 \"$position\"" \ -draw "text 7,472 \"BGS\"" \ $filename "converted/$filename" But the converted image is ...