How do I add text to curved image?

Posted by miki123 on Stack Overflow See other posts from Stack Overflow or by miki123
Published on 2010-05-18T06:07:14Z Indexed on 2010/05/18 15:40 UTC
Read the original article Hit count: 200

Filed under:
|
$config['source_image'] = '/path/to/image/mypic.jpg';
$config['wm_text'] = 'Copyright 2006 - John Doe';
$config['wm_type'] = 'text';
$config['wm_font_path'] = './system/fonts/texb.ttf';
$config['wm_font_size'] = '16';
$config['wm_font_color'] = 'ffffff';
$config['wm_vrt_alignment'] = 'bottom';
$config['wm_hor_alignment'] = 'center';
$config['wm_padding'] = '20';

$this->image_lib->initialize($config);

$this->image_lib->watermark();

This is water mark code in php, it is working fine when we add text to curve image like mug image, the letter is not overlap the curved image how can we overcome?

© Stack Overflow or respective owner

Related posts about php

Related posts about gd