September 20, 2000 - Defining Multiple Filters
September 20, 2000 Defining Multiple Filters Tips: September 2000
Yehuda Shiran, Ph.D.
|
Engrave
filter and the DropShadow
filter. Here is the definition and the effect:
<DIV STYLE="width: 40%; filter: progid:DXImageTransform.Microsoft.DropShadow(color='red',
OffX=3, OffY=2) progid:DXImageTransform.Microsoft.engrave()">
<IMAGE SRC="bicycle.gif"><FONT COLOR="blue">In this page we explain the basics of
using filters.</FONT>
</DIV>
progid:
and DXImage
). Also observe that the two filters operated on the image in series: the Engrave
filter was applied after the DropShadow
filter. The specification order determines the application order. Here is our previous example, first engraved, then drop-shadowed:
<DIV STYLE="width: 40%; filter: progid:DXImageTransform.Microsoft.engrave()
progid:DXImageTransform.Microsoft.DropShadow(color='red', OffX=3, OffY=2)">
<IMAGE SRC="bicycle.gif"><FONT COLOR="blue">In this page we explain the basics of
using filters.</FONT>
</DIV>