我试图利用PHP重新塑造形象,但我可以说明如何正确命名新形象。 当我看一看我的图表时,我有一张身份证,但没有名字。
请让我知道,你们是否需要看到什么东西。 早在现在,我就假定我没有正确的投入,以图形复制。 当我试图重复上报的美元名称时,没有发生。 如果我支持这个步骤,然后再使用图象,重复用空白名称,那么也就没有发生。
我的法典就是这样。
function chgSize($image, $width, $height){
$name = $image["name"]; //this is displaying the file name correctly
$temp = $image["tmp_name"];
$imgContents = imagecreatefromstring(file_get_contents($temp));
$blankImage = imagecreatetruecolor(100,100);
if(imagecopyresampled($blankImage, $imgContents, 0, 0, 0, 0, 100, 100, $width, $height)){
$formattedImage = imagejpeg($blankImage, $name);
$this->saveImage($formattedImage);
}
}
function saveImage($image){
$newName = $image["name"];
move_uploaded_file($image[ tmp_name ], "/Applications/XAMPP/xamppfiles/htdocs/images/" . $newName);
mysql_query("insert into images VALUES( null , $newName )");
echo "Stored in: " . "/Applications/XAMPP/xamppfiles/htdocs/images/" . $newName;
}