Codeigniter:上传大小为300x300的图像(维护比例为false(。。但是矩形图像得到窄
我正在上传图像在代码点火器300x300调整大小,保持比例-错误
但是一些图像(矩形图像(得到窄
我的代码片段(部分代码(:
....
....
$config['create_thumb'] = TRUE;
$config['maintain_ratio'] = FALSE;
$config['new_image'] = './uploads/property/300X300/';
$config['width'] = 300;
$config['height'] = 300;
$this -> image_lib -> initialize($config);
$this -> image_lib -> resize();
....
....
请建议我将上传的图像300x300显示到前端,并显示正确的视图
如果可能的话,你可以通过css 推荐css
使用以下css:
.yourclass {
height:250px;
display:flex;
flex-shrink:0;
max-width:98%;
max-height:98%;
}
您可以根据自己的要求修改类内部值
我不太了解PHP/Codeigniter,但你在CSS上尝试过吗?
.your-name-class{
width:300px;
height:300px;
}