我正在使用带有Codeigniter的图像处理库来调整图像大小和水印,除了小尺寸上的水印变得太大以外,这似乎还可以,无论上传的图像大小如何,有没有办法在每个相同尺寸的图像上保留水印。
请看看我的生成水印
下面是我的代码
//控制器
function alignCenter(){
var el = document.querySelector('.box');
el.style.margin = '0 auto';
}
//操作库
$this->manipulate_img->watermark($data['full_path']);
$this->manipulate_img->resize($data['full_path'],$path.'thumbs',780,400);