CodeIgniter を使用して画像のサイズを変更していますが、サイズを変更した小さな画像は低品質です。これが私のコードです:
$config = array(
'image_library' => 'gd2',
'quality' => '100',
'source_image' => $temp_full_path,
'new_image' => $full_temp_path."img_mobile/",
'maintain_ratio' => true,
'create_thumb' => false,
'width' => 50,
'height' => 50
);
$this->image_lib->initialize($config);
$this->image_lib->resize();
元の画像のように高品質で画像のサイズを変更するにはどうすればよいですか?
元の画像、php コードから生成された画像のサイズ変更、および codeigniter から生成された画像のサイズ変更は次のとおりです。