I'm making some graphics wherein I want to loop through the RedGreenBlue color-components. Sometimes I can simply write something like:
$x = 20;
$white=$img->colorAllocate(255,$x*2,255);
$img->line(0,0,50,50,$white);
$white = $img->colorAllocate(255,$x*10,150);
$img->line(50,50,150,250,$white);
And then it works. Sometimes this doesn't work so i try to deallocate f.e.:
$blue = $img->colorAllocate(0,0,25);
$img->colorDeallocate($blue);
$blue = $img->colorAllocate(0,0,25*$teller);
But this doesn't work either. Can someone tell me how to do this? Thank you.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.