【问题标题】:Resizing PNG in CodeIgniter while preserving the transparency在 CodeIgniter 中调整 PNG 的大小,同时保留透明度
【发布时间】:2011-06-18 20:20:47
【问题描述】:

我正在使用此代码在 CodeIgniter 中调整图像大小

$config['image_library'] = 'gd2';
$config['source_image'] = $tempFile;
$config['create_thumb'] = TRUE;
$config['maintain_ratio'] = TRUE;
$config['width'] = 70 / $ratio;
$config['height'] = 70;
$config['thumb_marker'] = '';
$this->load->library('image_lib', $config);
$this->image_lib->resize();

但是当我上传 png 文件时,透明区域变黑了。 我需要使调整大小的图像透明。请帮帮我。

【问题讨论】:

    标签: php codeigniter resize transparency gd


    【解决方案1】:
    【解决方案2】:

    自 CI 移动后,上述链接已失效。新链接在这里: http://forum.codeigniter.com/thread-7857.html

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2011-06-21
      • 2019-03-16
      • 2014-04-14
      • 2010-09-21
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多