Adding Drop Shadows with PHP - Setting the Shadow Options
(Page 2 of 7 )
Various factors can influence the appearance of the drop shadow. Some of these options can be defined as a set of constants at the beginning of our script to make our script more flexible. Changing them would affect the look of the drop shadow with little work in the future.
<?php define("DS_OFFSET", 5); define("DS_STEPS", 10); define("DS_SPREAD", 1); ?> |
The DS_OFFSET constant represents the drop shadow's offset and will be used as the shadow's displacement distance from the top left corner from that of the original image. The DS_STEPS constant is the number of steps (or how many colors) that will be used when drawing the shadow to fade from black to the background color. The DS_SPREAD constant is the shadow's spread and affects how far one step should be from another.
I've assigned them values I personally find reasonable; your situation or preferences may vary.
Next: Opening the Canvas >>
More Miscellaneous Articles
More By bluephoenix