Search found 7 matches
- 2015-08-18T14:24:40-07:00
- Forum: Users
- Topic: Beginner - create rectangle splitted into few another rectagles
- Replies: 9
- Views: 3655
Re: Beginner - create rectangle splitted into few another rectagles
Hey snibgo... do you know you are the best??? Thanks a lot!
- 2015-08-18T05:02:07-07:00
- Forum: Users
- Topic: Beginner - create rectangle splitted into few another rectagles
- Replies: 9
- Views: 3655
Re: Beginner - create rectangle splitted into few another rectagles
convert.exe -size 500x500 xc:white -stroke black -fill none -draw "rectangle 4,2 96,50" background.png & convert.exe -size 100x60 xc: none -gravity center -fill black -pointsize 16 -annotate +0+0 "Hallo world" text.png & convert.exe background.png text.png -page 100x100 -composite output.png Finaly ...
- 2015-08-16T11:13:02-07:00
- Forum: Users
- Topic: Beginner - create rectangle splitted into few another rectagles
- Replies: 9
- Views: 3655
Re: Beginner - create rectangle splitted into few another rectagles
I am interesting of how to create one small green box from page I post as example. Rest I can do myself by shell scripting. Do not understood the "language" I have to tell to convert.exe following: Create white area sized x/y, inside this area create rectangle sized x/y, positioned by offset x/y ...
- 2015-08-16T08:10:20-07:00
- Forum: Users
- Topic: Beginner - create rectangle splitted into few another rectagles
- Replies: 9
- Views: 3655
Re: Beginner - create rectangle splitted into few another rectagles
Thanks, but still does not understand elements order logic: 2nd line define parent square size: -size 100x60 ^ 3th line define parent square background color, "-fill" is background color for child square, "-stroke" is outline color of childsquare. -background %back_color% -fill none -stroke %line ...
- 2015-08-16T05:27:10-07:00
- Forum: Users
- Topic: Beginner - create rectangle splitted into few another rectagles
- Replies: 9
- Views: 3655
Beginner - create rectangle splitted into few another rectagles
Scripting network monitor system, want to generate rectangles with few colored "sub-areas", each area should be filled by text from variable. Something like http://diag.pvfree.net/db.png . after many tries, have constructed this: convert.exe -size 100x60 -background %back_color% -fill none -stroke ...
- 2011-11-21T17:05:40-07:00
- Forum: Users
- Topic: multiple animated GIFs assemblege
- Replies: 2
- Views: 5304
Re: multiple animated GIFs assemblege
Thanks, I was on this page, but look for append not for merge :-/
L.
L.
- 2011-11-21T06:54:09-07:00
- Forum: Users
- Topic: multiple animated GIFs assemblege
- Replies: 2
- Views: 5304
multiple animated GIFs assemblege
I need to assemble multiple animated GIFs, every GIF animate events for one day, I need to assemble 7 GIFs for week animations, and four week GIFs will be assembled into one month GIF. I have script logic done, but i need the exact command. I am try convert -append but this is not what I need, Any ...