![]() |
Image watermarking with image overlay support - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28) +--- Forum: CodeIgniter 4 Feature Requests (https://forum.codeigniter.com/forumdisplay.php?fid=29) +--- Thread: Image watermarking with image overlay support (/showthread.php?tid=79436) |
Image watermarking with image overlay support - MrWhite - 06-15-2021 Currently there is no support for image watermarking with image overlay in image manipulation class. Text overlay is not enough to cover most of the image watermarking needs. RE: Image watermarking with image overlay support - Avega Soft - 07-06-2021 CI has not special methods for working with watermark "on the box". But i created self library which works with images and also can create watermarks. For example this is bit of code of a library method for creating watermarks. You can use this code on your project. PHP Code: public function watermarkImage( string $file, array $config = []) |