Search found 10 matches

by Totor
2011-03-14T12:57:03-07:00
Forum: Users
Topic: [SOLVED] Better way to produce this png ?
Replies: 20
Views: 86386

Re: [SOLVED] Better way to produce this png ?

hi !

first of all, i've seen few weeks ago that you already post an element of the topic : http://www.imagemagick.org/script/command-line-processing.php

I never thought this script would have aroused such interest ..specially the use of roundrectangle to draw the cylinder ;)

i've work on your ...
by Totor
2010-11-30T16:14:25-07:00
Forum: Users
Topic: [SOLVED] Better way to produce this png ?
Replies: 20
Views: 86386

Re: [SOLVED] Better way to produce this png ?

i'had a look to the script.
I must say that the result is pretty class :)
I do not understand the part MVG mainly because I do not have the basics of color management, canvas and so on...
also, Moreover, it seems slower using MVG :?
More than 1 sec for one at the beginning... after 2 changes (use ...
by Totor
2010-11-30T01:08:36-07:00
Forum: Users
Topic: [SOLVED] Better way to produce this png ?
Replies: 20
Views: 86386

Re: [SOLVED] Better way to produce this png ?

thank's
I test this evening
by Totor
2010-11-29T15:07:39-07:00
Forum: Users
Topic: [SOLVED] Better way to produce this png ?
Replies: 20
Views: 86386

Re: [SOLVED] Better way to produce this png ?

well, i've try to have the green cylinder smaller but there is a lack of perspective at the right end :?
http://cjoint.com/data/0lDxfKDQ6wX_image_50.png
http://cjoint.com/data/0lDxey7SvWa_image_95.png
http://cjoint.com/data/0lDw6m7CzV_image_100b.png

i must think about it !
#!/bin/bash

trap ...
by Totor
2010-11-29T02:36:23-07:00
Forum: Users
Topic: [SOLVED] Better way to produce this png ?
Replies: 20
Views: 86386

Re: [SOLVED] Better way to produce this png ?

Something is not quite right with the math!

The 50% output does not look like 50% more like 40%

Yes, I realized after posting my reply but I had paperwork to prepare and I went to bed!
I've found the error :
max=$((progressXmin+pct*(progressXmax-progressXmin)/100)); is to be replaced with max ...
by Totor
2010-11-28T14:02:35-07:00
Forum: Users
Topic: [SOLVED] Better way to produce this png ?
Replies: 20
Views: 86386

Re: Better way to produce this png ?

Well,

I think i've reached my goal !!!

I've work on your last script and had a headache with compositing but finally, i'm happy with the result :

50% :
http://cjoint.com/data/0lCvYpZnYq5_image50.png

95%
http://cjoint.com/data/0lCvYWgr6rC_image95.png

97%
http://cjoint.com/data ...
by Totor
2010-11-27T12:51:26-07:00
Forum: Users
Topic: [SOLVED] Better way to produce this png ?
Replies: 20
Views: 86386

Re: Better way to produce this png ?

wahouuu, something that is almost what I wanted to get;)

it will take me some time to digest this: I do not quite understand because I do not know the use and manipulation of colors / images

I've put this in my script and I get something very powerful with the "full shadow" version.

i'll try to ...
by Totor
2010-11-27T05:25:59-07:00
Forum: Users
Topic: [SOLVED] Better way to produce this png ?
Replies: 20
Views: 86386

Re: Better way to produce this png ?

Re,

I've tried to make un 3D effect like your's but i find it too slow :( :

#!/bin/bash

trap 'end 1' SIGINT SIGKILL

font="${1:-./Garfield.ttf}"
imgXSize="${2:-320}"
imgYSize="${3:-200}"

resultat=.$$_resultat.png

borderColor=snow4
cylindreOutColor=snow2
cylindreInColor=snow
progressOutColor ...
by Totor
2010-11-27T02:35:23-07:00
Forum: Users
Topic: [SOLVED] Better way to produce this png ?
Replies: 20
Views: 86386

Re: Better way to produce this png ?

hi,

You seemed to have done well.
Though I would have broken up the lone LONG line into a multi-line statement so as to make it easier to read and figure out what is going on. I have broken it up for UNIX/Linux. but you can also do this (differentally) for DOS scripts
I've try but i got an error ...
by Totor
2010-11-26T13:12:04-07:00
Forum: Users
Topic: [SOLVED] Better way to produce this png ?
Replies: 20
Views: 86386

[SOLVED] Better way to produce this png ?

Hi,

I guess to be in the good place.

I've a question : is there a better way to produce this image :
http://cjoint.com/data/0lAuauua4T_image.png

my way (under linux) :

$convert --version
Version: ImageMagick 6.5.7-8 2009-11-26 Q16 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2009 ...