php 图片改化后的保存问题

<?php//Thefile$filename='D:\AppServ\www\upload_pic\resized_pic.jpg';$percent=0.2;//Co... <?php
// The file
$filename = 'D:\AppServ\www\upload_pic\resized_pic.jpg';
$percent = 0.2;
// Content type
header('Content-Type: image/jpeg');
// Get new dimensions
list($width, $height) = getimagesize($filename);
$new_width = $width * $percent;
$new_height = $height * $percent;
// Resample
$image_p = imagecreatetruecolor($new_width, $new_height);
$image = imagecreatefromjpeg($filename);

imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
// Output
imagejpeg($image_p, null, 100);
chmod($image_p, 0777);
?>

运行php文件后会得到改过图片 但是我应该怎么再把他保存到ftp上呢
展开
 我来答
pkw7456
2012-02-10
知道答主
回答量:7
采纳率:0%
帮助的人:6.3万
展开全部
$this -> targetDir = "路径/".$会员id."/".date(Ym).".文件格式" 是这意思吗?呵呵,你想保存就直接给路径不就行了吗?一般想这样的做法是,从数据库中取出该用户的信息,然后再赋值 不错哦, 谢喽百度很给力的,你瞧下我找滴。http://hi.baidu.com/thuevnit1807/blog/item/4e8ca90122b0bb4ef919b8be.html
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式