i have a picture that i want to convert to an icon
i minimized it to the correct size
however i still have white edges
i use paint
how can i set the edges?
thanks
You can make the white area transparent in your skin by using the following commad:
color-transparent
Specifies the color that should be used as the transparent color on subsequent loading of bitmaps.
Syntax
color,transparent,<R_G_B>
Parameters
<R_G_B>
R -> Red component (0-255)
G -> Green component (0-255)
B -> Blue component (0-255)
If R set to –1, then G can specify a theme color (see below). In this case the B value is irrelevant and can be set to any value (usually – 1).
Example
color,transparent,255_0_255
This can be found in the reference guide found HERE (http://www.dark-mojo.com/todayplus/viewtopic.php?t=3) .
thanks i'll try that