使用Codeigniter在较小图像上的水印宽度问题

时间:2018-11-16 06:40:23

标签: php codeigniter image-manipulation

我正在使用带有Codeigniter的图像处理库来调整图像大小和水印,除了小尺寸上的水印变得太大以外,这似乎还可以,无论上传的图像大小如何,有没有办法在每个相同尺寸的图像上保留水印。

请看看我的生成水印

https://ibb.co/m5sojf

https://ibb.co/jR6sAL

下面是我的代码

//控制器

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);

0 个答案:

没有答案