Search found 1 match
- 2016-11-30T23:08:20-07:00
- Forum: IMagick
- Topic: Add border to text with texture
- Replies: 1
- Views: 11530
Add border to text with texture
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 ...