如何在使用php插入数据库之前调整图像大小?

时间:2013-06-13 11:53:26

标签: php

这是我的页面

<html>
<span>Attached File :</span>
<input type="file" name="fileAttach" id="fileAttach" value="" />
</html>

在数据库页面中我喜欢这个

<?php
$file =$_FILES['fileAttach']['name'];
$ext = substr($file, strrpos($file, '.') + 1);
$filename=date('YmdHis').".".$ext;
$imageName=move_uploaded_file($_FILES['fileAttach']['tmp_name'],"photo/".$filename);

$strQry="insert into table(photo) values('".$filename."')";
?>

在将此照片插入数据库之前,我想以特定的宽度和高度调整该照片的大小。我可以调整大小并在db中插入调整大小图像。

0 个答案:

没有答案