1
lulu0401 2012-06-06 17:51:03 +08:00 1
$foo=$foo.$bar是吧2个string连接起来吧
|
2
lhj2100 OP @lulu0401
代码 $foo="hello "; $bar="world!" $foo=$foo.$bar; echo $foo; 结果 网站在检索 http://1.lise.sinaapp.com/index.php 时遇到错误。 该网站可能关闭进行维护或配置不正确 => 初学者真无敌... |
4
alsotang 2012-06-06 18:36:37 +08:00 1
。。。没有分号......
PHP代码应该先本地测试再放上sinaapp的,sinaapp的报错不准确。 |
6
CoX 2012-06-06 18:47:31 +08:00 1
反正用python的PIL非常easy
|
7
ety001 2012-06-06 19:10:33 +08:00
安装GD库,用GD库做,剩下的就是计算了,估计应该可以写成循环,循环12次。
|
8
qiayue 2012-06-06 20:26:51 +08:00 1
@lhj2100
这里 http://www.php.net/manual/zh/ref.image.php 能找到你需要使用的函数 imagecreatefromjpeg 由文件或URL创建一个新图象 imagecopy 拷贝图像的一部分 imagejpeg 输出图象到浏览器或文件 |
9
lhj2100 OP $s = new SaeStorage();
$imagedomain="upload"; $name="233.jpg"; $imgurl=$s->getUrl($imagedomain,$name);//此处$imgurl 得到文件位于SaeStorage的完整URL $imagesize = getimagesize($imgurl); var_dump($imagesize); 返回的结果是bool(false) @我可以用一种最温柔的想象 让自己 不再忧伤... @qiayue |
10
ElmerZhang 2012-06-07 12:27:02 +08:00 1
@lhj2100 getimagesize的参数需要是本地文件。
$tmpfile = tempnam(SAE_TMP_PATH, "IMG"); $imagedomain="upload"; $name="233.jpg"; copy("saestor://$imagedomain/$name", $tmpfile); $imagesize = getimagesize($tmpfile); var_dump($imagesize); |
11
lhj2100 OP |
12
ElmerZhang 2012-06-07 13:32:54 +08:00 1
@lhj2100 saestor:// 这种写法是为了方便移植的,虽然代码能省几行,但是性能差。平时还是用 SaeStorage 操作比较好
文档:http://sae.sina.com.cn/?m=devcenter&catId=218 |
13
lhj2100 OP list($current_width, $current_height) = getimagesize($tmpfile);
$left = 0; $top = 0; $crop_width = 30; $crop_height = 30; $canvas = imagecreatetruecolor($crop_width, $crop_height); $current_image = imagecreatefromjpeg($tmpfile); imagecopy($canvas, $current_image, 0, 0, $left, $top, $current_width, $current_height); $newimages=imagejpeg($canvas, $tmpfile, 100); echo $canvas; imagecopy 处理过之后生成的新图片 应该就是 $canvas 但 为什么$canvas仍然是一个字符串呢 Resource id #23 怎么将新图片显示在浏览器中呢 $newimages居然也是个字符串 1 《==我雷格去 这是要干什么 输出1表示执行成功了么? php的语法真实匪夷所思 |
14
lhj2100 OP 弄懂了 新的图片在SAE_TMP_PATH 里头
而$tmpfile 直接echo 出来的字符串 就是执行完成之后新图片的具体位置 执行一次$s->upload($imagedomain,"1.jpg",$tmpfile); 1.jpg就躺在seaStorage里头 .. 我得意的笑... |
15
lhj2100 OP 为什么将下边的代码放入循环以后
for ($i =1; $i<=9;$i++) { //echo $i; $canvas =imagecreatetruecolor($crop_width, $crop_height); $current_image =@imagecreatefromjpeg($tmpfile); imagecopy($canvas, $current_image, 0, 0, $left, $top, $current_width, $current_height); imagejpeg($canvas, $tmpfile, 85); //header('Content-Type: image/jpeg'); // imagejpeg($canvas, 100); //echo $tmpfile; $targetfile=$i.".jpg"; $s->upload("upload",$targetfile,$tmpfile); $imgurl=$s->getUrl("upload",$targetfile); echo "<img src='".$imgurl."?".time()."'/>"; imagedestroy($canvas); imagedestroy($current_image); $left+=1; $top+=1; //echo $left."<br/>"; } 会出现像http://1.lise.sinaapp.com/file_upload.html 这样的错误... 产生的图片为什么有黑边呢 |
16
lhj2100 OP |