我正在尝试调整图像大小并尝试将该图像保存在我的文件夹中。但我的图像没有保存在文件夹中。以下是代码:
$('.addressStatus').each(function(index, value){
var el = 0;
if($(this).data('status') == true){
el = $(this).data('param1');
console.log(el);
$('#statusID'+el).addClass('inactiveAddrsColor'); // note the #
}
});
答案 0 :(得分:0)
使用某些类调整此图像的大小 http://phpimagemagician.jarrodoberto.com/ 我发现这个链接非常有用。
require_once('php_image_magician.php');
if(isset($_POST['submit']))
{
$path = 'upload/';
$actual_image_name=$_FILES['add_image']['name'];
$tmp = $_FILES['add_image']['tmp_name'];
if(move_uploaded_file($tmp, $path.$actual_image_name))
{
$magicianObj = new imageLib($path.$actual_image_name);
$magicianObj -> resizeImage(198, 259);//size you want to resize
$magicianObj -> saveImage($path.$actual_image_name, 100);
echo "success";
} else{
echo "failure";
}
}
Html这样的部分
<form action="" method="post" enctype="multipart/form-data">
<input type="file" name="add_image" >
<input type="submit" name="submit">
</form>
我只是展示逻辑,明智地使用它。