我正在尝试使用 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;
ETC
文档中没有提到它,我在这里或谷歌上看不到任何关于它的信息。这并不重要——这只是一个个人项目,但我希望能够做到。