【发布时间】:2013-06-06 23:20:28
【问题描述】:
我正在尝试使用 CodeIgniters Image Manipulation 库在图像上添加多行水印,但无法正常工作。
我正在设置文本
$config['source_image']= $newFile;
$str = '';
$str.='Px: ';
$str .= $config['width'];
$str .= "\r\n";
$str.=' | Qual: '.$config['quality'];
$str .= "\n";
$str.=' Size: '.$size;
$str .= "<br />";
$str.=' File: '.$fileName;
$config['wm_text'] = $str;
等
文档中没有提及它,我在此处或 Google 上看不到任何有关它的信息。这并不重要 - 这只是一个个人项目,但我希望能够做到。
【问题讨论】:
标签: php codeigniter