Add border to text with texture
Posted: 2016-11-30T23:08:20-07:00
how would you create an inner drop shadow in text?
The outer one is documented in php
e.g. outer light drop shadow to create 'cut-out' text :
$layer = $text_layer->clone();
$layer->setImageBackgroundColor( new ImagickPixel( 'white' ) );
$layer->shadowImage( 70, .3, 1, 1 );
But how would you create an inner drop shadow?
Thanks
The outer one is documented in php
e.g. outer light drop shadow to create 'cut-out' text :
$layer = $text_layer->clone();
$layer->setImageBackgroundColor( new ImagickPixel( 'white' ) );
$layer->shadowImage( 70, .3, 1, 1 );
But how would you create an inner drop shadow?
Thanks