代码拉取完成,页面将自动刷新
<?php
include("sandphoto.inc");
if ((($_FILES["filename"]["type"] == "image/png")
|| ($_FILES["filename"]["type"] == "image/jpeg")
|| ($_FILES["filename"]["type"] == "image/bmp")
|| ($_FILES["filename"]["type"] == "image/tiff")
|| ($_FILES["filename"]["type"] == "image/pjpeg"))
&& ($_FILES["filename"]["size"] < 8000000))
{
if ($_FILES["filename"]["error"] > 0)
{
header("Content-Type: text/html");
print("上传文件错误!");
return;
}
else
{
$filename = $_FILES["filename"]["tmp_name"];
$target_type = $_POST["target_type"];
$container_type = $_POST["container_type"];
//print "type:$container_type";
$parser = new PhotoTypeParser();
$parser->parse('phototype.txt');
$cw = $parser->get_width($container_type);
$ch = $parser->get_height($container_type);
$tw = $parser->get_width($target_type);
$th = $parser->get_height($target_type);
$p = new Photo();
$p->set_container_size($cw, $ch);
$p->set_target_size($tw, $th);
$n = $p->put_photo($filename, $_POST["bgcolorid"]);
// $p->render_image();
// $p->preview_image();
$download_name = $n ."张" . $parser->get_name($target_type) . "[以" . $parser->get_name($container_type) . "冲洗].jpg";
$p->download_image( $download_name );
}
}
?>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。