Search found 718 matches

by GeeMack
2015-12-22T09:51:10-07:00
Forum: Users
Topic: Text of differing sizes in separate lines
Replies: 18
Views: 21049

Re: Text of differing sizes in separate lines

I need two sizes of text in the image file I'm aiming to create: the first line should be really large text, with subsequent lines being smaller--maybe half as large as the main, title text. Using information I found at the page reference above, I was able to create a couple of image files that can...
by GeeMack
2015-12-22T08:04:48-07:00
Forum: Users
Topic: Remove ASCII BGRs from BMP
Replies: 4
Views: 7563

Re: Remove ASCII BGRs from BMP

Could you please let me know how I can achieve my goal? IM should be able to convert your PNG to a few slightly different BMP formats. I'm using IM7 which can convert to BMP, BMP2, and BMP3. When I save a BMP with MS Paint and check it with IM's "identify"... identify qrcode.bmp ...it sho...
by GeeMack
2015-12-19T20:10:48-07:00
Forum: Bugs
Topic: Problem with -fx in IM7?
Replies: 9
Views: 11090

Re: Problem with -fx in IM7?

dlemstra wrote:I just pushed a patch to our GIT repository to fix this issue. This should be available in the next beta this weekend.
This issue appears to be resolved in version "ImageMagick-7.0.0-0~beta20151219-Q16-HDRI-x64-static". Thanks!
by GeeMack
2015-12-19T14:03:50-07:00
Forum: Users
Topic: mpr
Replies: 5
Views: 8099

Re: mpr

Looks like you're trying to access the "mpr:section" from a new "convert" command. I'm not on a *nix to test it now, but maybe try a "-delete 0--1" after the first "mpr:section" and get rid of the second "convert" command. It might squawk at the end ...
by GeeMack
2015-12-17T21:21:33-07:00
Forum: Users
Topic: How to save to multiple copy but changing font each time?
Replies: 7
Views: 9002

Re: How to save to multiple copy but changing font each time?

ImageMagick will list all the fonts it sees currently installed on your Windows system with this command... convert -list font A very small batch file run from a Windows cmd.exe prompt can parse that list, use just the font names, and make a set of small JPG files, each with your word in white on bl...
by GeeMack
2015-12-14T13:45:21-07:00
Forum: Bugs
Topic: Problem with -fx in IM7?
Replies: 9
Views: 11090

Re: Problem with -fx in IM7?

Thank you, fmw42, for taking the time to help work out some options. does this work magick sample1.png sample2.png -fx "u + 0.5 - v" converted.png Yes, that seems to duplicate the results I was getting with IM6, pretty fast, and it doesn't crash IM7. or magick sample1.png sample2.png +swap...
by GeeMack
2015-12-14T08:53:41-07:00
Forum: Bugs
Topic: Problem with -fx in IM7?
Replies: 9
Views: 11090

Re: Problem with -fx in IM7?

Your command returns expected results for ImageMagick 7.0.0-0 under Linux. We will investigate why it fails for you under Windows. Thanks for your time and attention. I've tried working the -fx operator with color names or designations, "blue" or "#0000FF" or "rgb(0,0,255)&...
by GeeMack
2015-12-14T08:47:52-07:00
Forum: Bugs
Topic: Problem with -fx in IM7?
Replies: 9
Views: 11090

Re: Problem with -fx in IM7?

Try the following on all your systems. It should do the same thing, but be faster. convert sample1.png ^ ( -clone 0 -fill "#808080" -colorize 100 ) ^ -compose plus -composite ^ sample2.png ^ +swap -compose minus -composite ^ converted.png Thanks. To approximate my previous results it requ...
by GeeMack
2015-12-13T20:38:30-07:00
Forum: Bugs
Topic: Problem with -fx in IM7?
Replies: 9
Views: 11090

Problem with -fx in IM7?

I use ImageMagick to process and analyze several types of scientific data including solar images from NASA. One of my scripts does a difference comparison between two images taken a various time intervals. I run the IM commands from batch files on Windows 7 Pro 64. The line from the script that does...
by GeeMack
2015-12-12T16:46:07-07:00
Forum: Users
Topic: Annotate Image Ontop Of Other Images (with text effects)
Replies: 4
Views: 7167

Re: Annotate Image Ontop Of Other Images (with text effects)

If you put a black stroke around the first "annotate" before the "blur", the shadow effect will be more pronounced. convert 01_original.png ^ ^( -size 400x100 xc:none -gravity south ^ -font Candice -pointsize 72 -strokewidth 6 ^ -fill black -stroke black ^ -annotate +0+12 "C...
by GeeMack
2015-12-06T05:50:08-07:00
Forum: Bugs
Topic: -annotate rotating text (IM 7.0.0-0)
Replies: 7
Views: 8840

Re: -annotate rotating text (IM 7.0.0-0)

The source patch will be available tomorrow @ http://www.imagemagick.org/ImageMagick-7.0.0/download/beta/. The Windows 7.0.0-0 binaries will be available late this weekend. I just installed "ImageMagick-7.0.0-0~beta20151205-Q16-HDRI-x64-static.exe" on the same Windows 7 Pro 64 machine, an...
by GeeMack
2015-12-02T07:47:13-07:00
Forum: Bugs
Topic: -annotate rotating text (IM 7.0.0-0)
Replies: 7
Views: 8840

Re: -annotate rotating text (IM 7.0.0-0)

Are you using the default Q16 HDRI compile of IM or without HDRI? I occasionally update my installation of IM7 using files from this URL... http://www.imagemagick.org/ImageMagick-7.0.0/download/beta/ ... and I don't use the HDRI issue. I download and install the one that looks like this... ImageMag...
by GeeMack
2015-12-01T22:52:31-07:00
Forum: Bugs
Topic: -annotate rotating text (IM 7.0.0-0)
Replies: 7
Views: 8840

-annotate rotating text (IM 7.0.0-0)

I've been using ImageMagick for several years now, and I'm migrating all my scripts to work with IM7. I installed the "ImageMagick 7.0.0-0 Q16 x64 2015-11-22" on "Windows 7 Pro 64bit" and run all my commands as command line or batch scripts in a cmd.exe window. I've noticed a cha...