php在新浪云中使用imagick的方法
发布:smiling 来源: PHP粉丝网 添加日期:2018-06-11 10:19:36 浏览: 评论:0
php在新浪云中使用imagick生成缩略图并上传到Storage的方法
- <?php
- //缩略图
- $tmpFile ='http://phpfensi.com/original.jpg' ;
- list($width, $height) = getimagesize($tmpFile);
- // resize if necessary
- if ($width >= 550 && $height >= 550) {
- $image = new Imagick($tmpFile);
- $image->thumbnailImage(550, 550,true);
- /* 上传文件到Storage */
- $st = new SaeStorage();
- $tmp_url = SAE_TMP_PATH.time();//保存到sae临时目录
- file_put_contents($tmp_url,$image);
- $path='/201608/22/1471856203_98548400.jpg';
- if (!$st->upload('upload', $path, $tmp_url)) {
- echo 0;
- } else {
- echo $st->getUrl('upload', $path);
- }//phpfensi.com
- }
- ?>
Tags: imagick php新浪云
相关文章
- ·浅谈php扩展imagick(2021-01-31)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)