-
php如何使用imagecopyresampled(图像处理函数)?
php如何使用imagecopyresampled(图像处理函数)?下面本篇文章给大家详解一下php图像处理函数imagecopyresampled用法,有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。
php图像处理函数imagecopyresampled用法
语法:
bool imagecopyresampled ( resource $dst_image , resource $src_image , int $dst_x , int $dst_y , int $src_x , int $src_y , int $dst_w , int $dst_h , int $src_w , int $src_h )
参数:
dst_image 目标图象连接资源。
src_image 源图象连接资源。
dst_x 目标 X 坐标点。
dst_y 目标 Y 坐标点。
src_x 源的 X 坐标点。
src_y 源的 Y 坐标点。
dst_w 目标宽度。
dst_h 目标高度。
src_w 源图象的宽度。
src_h 源图象的高度。
成功时返回 TRUE, 或者在失败时返回 FALSE。
案例
1、图像裁减
- <?php
- $targ_w = $targ_h = 150; // 设置目标宽度与高度
- $jpeg_quality = 90; // 图片质量90,满分为100
- $src = 'demo_files/pool.jpg'; // 被处理的图片
- $img_r = imagecreatefromjpeg($src); // 获取原图
- $dst_r = ImageCreateTrueColor( $targ_w, $targ_h ); // 获取新图
- imagecopyresampled($dst_r,$img_r,0,0,$_POST['x'],$_POST['y'],
- $targ_w,$targ_h,$_POST['w'],$_POST['h']); // 目标图 源图 目标X坐标点 目标Y坐标点 源的X坐标点 源的Y坐标点 目标宽度 目标高度 源图宽度 源图高度
- header('Content-type: image/jpeg');
- imagejpeg($dst_r,null,$jpeg_quality); // 输出图象到浏览器或文件
- ?>
2、重新取样
- <?php
- // 源文件
- $filename = '1.jpg';
- // 设置最大宽高
- $width = 400;
- $height = 400;
- // Content type
- header('Content-Type: image/jpeg');
- // 获取新尺寸
- list($width_orig, $height_orig) = getimagesize($filename);
- $ratio_orig = $width_orig/$height_orig;
- if ($width/$height > $ratio_orig) {
- $width = $height*$ratio_orig;
- } else {
- $height = $width/$ratio_orig;
- }
- // 重新取样
- $image_p = imagecreatetruecolor($width, $height);
- $image = imagecreatefromjpeg($filename);
- imagecopyresampled($image_p, $image, 0, 0, 0, 0, $width, $height, $width_orig, $height_orig);
- // 输出
- imagejpeg($image_p, null, 100);
- ?>
附上上传图片的三种思路
选择图片,提交表单,服务器统一处理上传,保存路径
选择图片,上传,获取路径,提交表单,保存路径
选择图片,上传到服务器,通过某种途径获取到服务器的图片,保存到本地
原文链接:http://www.phpfensi.com/php/20220608/20996.html
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式