PHPスクリプトを使用して画像をアップロードし、画像が大きすぎる場合に画像のサイズを変更してから、同じ画像のサムを作成できるようにしたいのですが、現在、画像のサイズが変更されていますが、サムは作成されていません何らかの理由で...エラーもありません。ここにスクリプトがあります:
if($image_data['image_width'] > 1024 || $image_data['image_height'] > 768)
{
$config_resize = array(
'source_image' => $image_data['full_path'],
'new_image' => "./uploads/",
'overwrite' => true,
'maintain_ratio' => true,
'width' => 1024,
'height' => 768
);
$this->load->library('image_lib', $config_resize);
if(! $this->image_lib->resize())
{
echo $this->image_lib->display_errors();
}
$config_thumb = array(
'source_image' => $config_resize['source_image'],
'new_image' => "./uploads/thumbs/",
'maintain_ratio' => true,
'width' => 150,
'height' => 100
);
$this->load->library('image_lib', $config_thumb);
if(! $this->image_lib->resize())
{
echo $this->image_lib->display_errors();
}
}