Edit report at http://pear.php.net/bugs/bug.php?id=15957&edit=1
ID: 15957
Updated by: ken@linux.ie
Reported By: gsdlthgx at trashmail dot net
Summary: images dont "work" on dark(er) backgrounds
Status: Open
Type: Feature/Change Request
Package: HTML_TreeMenu
PHP Version: Irrelevant
-Assigned To:
+Assigned To: kguest
Roadmap Versions:
New Comment:
-Assigned To:
+Assigned To: kguest
Previous Comments:
------------------------------------------------------------------------
[2009-02-27 09:54:16] ameno
following script copies the supplied images from the "images" directory
into a dir called "imagesDarkBG" and negates all +/- gifs using
imagemagick.
works fine with #333333 as background color.
#!/bin/bash
# to be called inside the HTML_TreeMenu root dir (where TreeMenu.php is
located)
cp -r images imagesDarkBG
cd imagesDarkBG
for i in minus.gif minusbottom.gif minustop.gif plus.gif plusbottom.gif
plustop.gif
do
convert $i -negate $i
done
------------------------------------------------------------------------
[2009-02-27 09:24:25] ameno
Description:
------------
all 3 image sets are designed to be used on bright backgrounds:
they use black or dark grey for their representation and are
transparent to play nice with non-white but bright backgrounds.
would be nice if you could add a set for dark backgrounds.
Test script:
---------------
Expected result:
----------------
Actual result:
--------------
------------------------------------------------------------------------