<?php
$x = $_GET['x'];
$y = $_GET['y'];
$w = $_GET['w'];
$h = $_GET['h'];
$filename = "c:/myimg.jpg";
// 读取需要处理的图片
$im = imagecreatefromjpeg($filename);
$newim = imagecreatetruecolor(300, 300);//新生成图的大小
imagecopyresampled($newim, $im, 0, 0, $x, $y, 300, 300, $w, $h);
// [1] [2] [3][4] [5] [6] [7] [8] [9] [10]
//[5] 客户端选择区域左上角x轴坐标
//[6] 客户端选择区域左上角y轴坐标
//[7] 生成新图片的宽
//[8] 生成新图片的高
//[9] 客户端选择区 的宽
//[10] 客户端选择区 的高
imagejpeg($newim, "c:/newmyimg.jpg");
imagedestroy($im);
imagedestroy($newim);
echo "ok";
?>
lufsdf
- 粉丝: 2
- 资源: 17
最新资源
- 基于java+springboot+vue+mysql的线上医院挂号系统设计与实现.docx
- 基于java+springboot+vue+mysql的箱包存储系统设计与实现.docx
- 基于java+springboot+vue+mysql的校园二手书交易平台设计与实现.docx
- 基于java+springboot+vue+mysql的校园健康驿站管理系统设计与实现.docx
- 02-【名企案例】-08-微软员工手册.doc
- 基于java+springboot+vue+mysql的校园竞赛管理系统设计与实现.docx
- 基于java+springboot+vue+mysql的校园生活服务平台设计与实现.docx
- 02-【名企案例】-15-龙湖地产员工手册.doc
- 基于java+springboot+vue+mysql的校园外卖服务系统设计与实现.docx
- 基于java+springboot+vue+mysql的校园新闻管理系统设计与实现.docx
- 基于java+springboot+vue+mysql的校园食堂订餐系统设计与实现.docx
- 06-【制造企业】-03-员工手册.doc
- 11-【管桩公司】-01-员工手册.doc
- 10-【装饰公司】-01-员工手册.doc
- 18-【餐饮公司】-02-员工手册.doc
- 基于java+springboot+vue+mysql的学生选课系统设计与实现.docx
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈