Search found 6 matches

by magatyb
2016-11-21T07:22:37-07:00
Forum: Bugs
Topic: Identify doesn't work when ran from a BATch or CMD file
Replies: 3
Views: 5798

Re: Identify doesn't work when ran from a BATch or CMD file

Hi. You are right. That fixed it. I am using Version: ImageMagick 7.0.0-0 Q16 x86 2016-03-06 http://www.imagemagick.org
Thank you!
by magatyb
2016-11-21T06:22:00-07:00
Forum: Bugs
Topic: Identify doesn't work when ran from a BATch or CMD file
Replies: 3
Views: 5798

Identify doesn't work when ran from a BATch or CMD file

This command when ran alone in the command console work as intended (for my picture, printed output is 640x480) identify.exe -format "%wx%h" "C:\01.jpg" When the command is placed in a BATch or CMD file there is no output or error. Anyone else experiencing this? I'm on Windows 7 ...
by magatyb
2015-07-01T10:58:43-07:00
Forum: Users
Topic: multiple line autofit text overlay problem
Replies: 7
Views: 5343

Re: multiple line autofit text overlay problem

Using -pointsize won't allow autofit, Pango is also a bit too much, so I guess I'll go look up a more appropriate font.
Thank you all for your help.
by magatyb
2015-07-01T09:33:05-07:00
Forum: Users
Topic: multiple line autofit text overlay problem
Replies: 7
Views: 5343

Re: multiple line autofit text overlay problem

Thank you for your answers. That solved the problem. Now I want to make the text to look a bit 'italic' and did this: convert B.jpg ( -background none -size 1024x768 -fill white -font Calibri -gravity center -annotate 0x20+50+50 label:"this is line1\n this is line2" -trim +repage ) -gravit...
by magatyb
2015-07-01T08:48:38-07:00
Forum: Users
Topic: multiple line autofit text overlay problem
Replies: 7
Views: 5343

Re: multiple line autofit text overlay problem

Thank you for your answer. I've tried your suggestion and now the text isn't centered anymore, but instead it's aligned top left. This is the command used: convert B.jpg ( -background none -size 1024x768 -fill white -font Calibri label:"this is line1\n this is line2" ) -gravity Center -com...
by magatyb
2015-07-01T05:10:49-07:00
Forum: Users
Topic: multiple line autofit text overlay problem
Replies: 7
Views: 5343

multiple line autofit text overlay problem

Hi . I need to add a two line overlay to an existing picture b.jpg, having width of 1024px with c.jpg as output: convert B.jpg ( -background none -size 1024x -fill white -font Calibri label:"this is line1\n this is line2" ) -gravity Center -compose over -composite C.jpg and line2 isn't sho...