29.11.2012 Views

MetaFun - Pragma ADE

MetaFun - Pragma ADE

MetaFun - Pragma ADE

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

fill p shifted (3cm,0) withcolor .5blue ;<br />

fill p shifted (6cm,0) withcolor transparent (1,0.5,blue) ;<br />

fill p shifted (9cm,0) withcolor .5[blue,white] ;<br />

The next series demonstrates that we use the complementary factor .7 in the METAPOST soft color<br />

to achieve the same softness as the .3 transparency.<br />

path p ; p := fullcircle scaled 2cm ;<br />

fill p shifted (0cm,0) withcolor red ;<br />

fill p shifted (3cm,0) withcolor .7red ;<br />

fill p shifted (6cm,0) withcolor transparent (1,0.3,red) ;<br />

fill p shifted (9cm,0) withcolor .7[red,white] ;<br />

So far we have applied transparent colors to shapes but text can also be the target. The following<br />

works okay in MKII.<br />

vardef SampleText (expr t, c) =<br />

save p ; picture p ;<br />

p := image (draw t infont "\truefontname{Regular}") ;<br />

draw (p shifted (- xpart center p,0)) scaled 5 withcolor c;<br />

enddef ;<br />

SampleText ("Much Of This" , transparent(1, .5, red )) ;<br />

SampleText ("Functionality" , transparent(1, .5, green)) ;<br />

SampleText ("Was Written" , transparent(1, .5, blue )) ;<br />

SampleText ("While Listening", transparent(1, .5, cmyk(1,0,0,0))) ;<br />

SampleText ("To the CD's Of" , transparent(1, .5, cmyk(0,1,0,0))) ;<br />

SampleText ("Tori Amos" , transparent(1, .5, cmyk(0,0,1,0))) ;<br />

The source code of this example illustrates that the CMYK color space is also supported. The<br />

\truefontname macro communicates the running font from TEX to METAPOST. Instead of such low<br />

level code one can of course also use the textext macro.<br />

However, as we do the typesetting in TEX in MKIV this is the way to go:<br />

vardef SampleText (expr t) =<br />

draw textext(t) scaled 5 ;<br />

enddef ;<br />

Transparency Special effects<br />

191

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!