gpt4 book ai didi

codeigniter - CodeIgniter 中同时显示多个缩略图

转载 作者:行者123 更新时间:2023-12-01 07:46:20 25 4
gpt4 key购买 nike

目前,我正在学习和尝试 CodeIgniter 能够做到的事情。但我坚持同时制作多个缩略图。可能是我用 Wordpress 搞砸了我的头脑,并试图在 Codeigniter 中做这样的事情,但无论如何,这是我的代码

<?php

class Gallery_model extends CI_Model {

var $gallery_path;

function __construct() {
parent::__construct();
$this->load->helper('functions');
$this->gallery_path = realpath(APPPATH . '../uploads');
}

function do_upload() {

$config = array(
'allowed_types' => 'jpg|jpeg|gif|png',
'upload_path' => $this->gallery_path,
'max_size' => 2000
);

$this->load->library('upload', $config);
$this->upload->do_upload();
$image_data = $this->upload->data();


$image_sizes = array(
'thumb' => array(150, 100),
'medium' => array(300, 300),
'large' => array(800, 600)
);

foreach ($image_sizes as $resize) {

$config = array(
'source_image' => $image_data['full_path'],
'new_image' => $this->gallery_path . '-' . $resize[0] . 'x' . $resize[1],
'maintain_ration' => true,
'width' => $resize[0],
'height' => $resize[1]
);

$this->load->library('image_lib', $config);
$this->image_lib->resize();
}
}
}

目前,我只能自己创建一个图像,但我不能用它制作缩略图。也许有人可以增强代码,让它工作:)

PS - 我试过在 $image_sizes 之后获取所有内容,将其放入其他独立的 php 文件中,运行它,然后将 $config 转储到 foreach 中,它似乎可以正常工作。

最佳答案

像这样使用它:

$this->load->library('image_lib');
foreach ($image_sizes as $resize) {

$config = array(
'source_image' => $image_data['full_path'],
'new_image' => $this->gallery_path . '-' . $resize[0] . 'x' . $resize[1],
'maintain_ration' => true,
'width' => $resize[0],
'height' => $resize[1]
);

$this->image_lib->initialize($config);
$this->image_lib->resize();
$this->image_lib->clear();
}

initialize 比使用 $config 加载库效果更好。

关于codeigniter - CodeIgniter 中同时显示多个缩略图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11603088/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com