在,Laravel,中,使用,图片,处理,库,Integration,Image,在,Laravel,中,使用,图片,处
后端开发-php教程
在 Laravel 中使用图片处理库 Integration/Image,zip解密源码,前端运行可以用vscode吗,ubuntu 邮件客户端,为什么tomcat显示404,sqlite 终端语句,东莞微网页设计,阿里云服务器快速备案,微赞 短信插件编程,vue框架前端记账,咪咕音乐爬虫,php字符串转json,刷神马seo排,后台网站模板,登录网页模版,电商后台模板,h5页面展示特效,.net公司日程管理系统,易语言禁止子程序lzw
系统需求jquery api 源码,vscode对手,ubuntu下安装mac,tomcat space,jar sqlite 读写,如何知道自己网站租用的服务器去,语音播放插件,前端页面框架 容器,sae 爬虫,php技术培训学校,网站seo平台,网站后台栏目,网页过年源码,shopnc 运单模板,css3页面滚动内容元素动画特效,游戏后台管理系统源码,安卓程序表白源码lzw
PHP >= 5.3Fileinfo Extension
GD Library (>=2.0) … or …
Imagick PHP extension (>=6.5.7)
禁止源码图片下载,ubuntu自动驱动安装,皮爬虫的功效,php voip,seo外包评估lzw
安装部署 Integration/image在 composer.json [require] 节增加,之后执行 composer update
"intervention/image": "2.0.15"
Laravel 配置
安装部署 Integration/image 完成后,打开配置文件 config/app.php 在相应位置添加代码,然后 Image 类就能自动加载并可供使用了。其功能强大到可以处理你的几乎所有图片处理需求。
//服务提供器'Intervention\Image\ImageServiceProvider'//别名配置'Image' => 'Intervention\Image\Facades\Image'
配置设置
默认情况下, Integration/Image 使用PHP的GD库扩展。如果你想切换到 imagick,你可以使用 php artisan 创建一个配置文件以添加相应的配置。
$ php artisan config:publish intervention/imag
基本使用
这里列出几个基本功能,更详细使用说明请查看相关接口文档。
1、显示一张图片
Route::get('/', function(){ $img = Image::make('foo.jpg')->resize(300, 200); return $img->response('jpg');});
2、读取一个图片文件
$img = Image::make('foo/bar/baz.jpg');
3、绘制一张图片
$img = Image::canvas(800, 600, '#ccc');
4、编辑一张图片
$img = Image::make('foo.jpg')->resize(320, 240)->insert('watermark.jpg');
http://www.liuzhongwei.com/PHPjc/928615.htmlwww.liuzhongwei.comtruehttp://www.liuzhongwei.com/PHPjc/928615.htmlTechArticle在 Laravel 中使用图片处理库 Integration/Image, 系统需求 PHP = 5.3 Fileinfo Extension GD Library (=2.0) or Imagick PHP extension (=6.5.7) 安装部署 Integration/ima…
Integration Services 学习(4):变量和表达式 | Integration Services 学习(4):变量和表达式 ...