PHP自定义尺寸icon处理类分享。本文主要分享了一键生成各种尺寸Icon的php脚本(实例),提供给大家参考。希望对大家有所帮助。
实例如下:
<?php /** * @name thumb 缩略图函数 * @param sting $img_name 图片路径 * @param int $max_width 略图最大宽度 * @param int $max_height 略图最大高度 * @param sting $suffix 略图后缀(如"img_x.jpg"代表小图,"img_m.jpg"代表中图,"img_l.jpg"代表大图) * @return void */ function thumb($img_name,$max_width,$max_height,$path,$new_name) { $img_infos = getimagesize($img_name); $img_height = $img_infos[0];//图片高 $img_width = $img_infos[1]; //图片宽 $img_extension = ''; //图片后缀名 switch($img_infos[2]) { case 1: $img_extension = 'gif'; break; case 2: $img_extension = 'jpeg'; break; case 3: $img_extension = 'png'; break; default: $img_extension = 'jpeg'; break; } $new_img_size = array(); $new_img_size['width'] = $max_width; $new_img_size['height'] = $max_height; $img_func = ''; //函数名称 $img_handle = ''; //图片句柄 $thum_handle = ''; //略图图片句柄 switch($img_extension) { case 'jpg': $img_handle = imagecreatefromjpeg($img_name); $img_func = 'imagejpeg'; break; case 'jpeg': $img_handle = imagecreatefromjpeg($img_name); $img_func = 'imagejpeg'; break; case 'png': $img_handle = imagecreatefrompng($img_name); imagesavealpha($img_handle, true); $img_func = 'imagepng'; break; case 'gif': $img_handle = imagecreatefromgif($img_name); $img_func = 'imagegif'; break; default: $img_handle = imagecreatefromjpeg($img_name); $img_func = 'imagejpeg'; break; } $quality = 100;//图片质量 if($img_func == 'imagepng') { $quality = 9; } $thum_handle = imagecreatetruecolor($new_img_size['height'],$new_img_size['width']); imagealphablending($thum_handle,false);//这里很重要,意思是不合并颜色,直接用$img图像颜色替换,包括透明色; imagesavealpha($thum_handle,true);//这里很重要,意思是不要丢了$thumb图像的透明色; if(function_exists('imagecopyresampled')) { imagecopyresampled($thum_handle,$img_handle, 0, 0, 0, 0,$new_img_size['height'],$new_img_size['width'],$img_height,$img_width); } else { imagecopyresized($thum_handle,$img_handle, 0, 0, 0, 0,$new_img_size['height'],$new_img_size['width'],$img_height,$img_width); } call_user_func_array($img_func,array($thum_handle,$path.'/'.$new_name,$quality)); imagedestroy($thum_handle);//清除句柄 imagedestroy($img_handle);//清除句柄 } $IconArray = array ( "IOS8" => array ( array("width" => 180, "height"=> 180, "path"=>"ios8", "name"=>"Icon-180.png"), array("width" => 120, "height"=> 120, "path"=>"ios8", "name"=>"Icon-120.png"), array("width" => 152, "height"=> 152, "path"=>"ios8", "name"=>"Icon-152.png"), array("width" => 76, "height"=> 76, "path"=>"ios8", "name"=>"Icon-76.png"), array("width" => 144, "height"=> 144, "path"=>"ios8", "name"=>"Icon-144.png"), array("width" => 72, "height"=> 72, "path"=>"ios8", "name"=>"Icon-72.png"), array("width" => 114, "height"=> 114, "path"=>"ios8", "name"=>"Icon-114.png"), array("width" => 57, "height"=> 57, "path"=>"ios8", "name"=>"Icon-57.png"), array("width" => 100, "height"=> 100, "path"=>"ios8", "name"=>"Icon-100.png"), array("width" => 50, "height"=> 50, "path"=>"ios8", "name"=>"Icon-50.png"), array("width" => 80, "height"=> 80, "path"=>"ios8", "name"=>"Icon-80.png"), array("width" => 40, "height"=> 40, "path"=>"ios8", "name"=>"Icon-40.png"), array("width" => 58, "height"=> 58, "path"=>"ios8", "name"=>"Icon-58.png"), array("width" => 29, "height"=> 29, "path"=>"ios8", "name"=>"Icon-29.png"), ), "IOS" => array ( array("width" => 180, "height"=> 180, "path"=>"ios", "name"=>"Icon-60@3x.png"), array("width" => 120, "height"=> 120, "path"=>"ios", "name"=>"Icon-60@2x.png"), array("width" => 152, "height"=> 152, "path"=>"ios", "name"=>"Icon-76@2x.png"), array("width" => 76, "height"=> 76, "path"=>"ios", "name"=>"Icon-76.png"), array("width" => 144, "height"=> 144, "path"=>"ios", "name"=>"Icon-72@2x.png"), array("width" => 72, "height"=> 72, "path"=>"ios", "name"=>"Icon-72.png"), array("width" => 114, "height"=> 114, "path"=>"ios", "name"=>"Icon-57@2x.png"), array("width" => 57, "height"=> 57, "path"=>"ios", "name"=>"Icon-57.png"), array("width" => 100, "height"=> 100, "path"=>"ios", "name"=>"Icon-50@2x.png"), array("width" => 50, "height"=> 50, "path"=>"ios", "name"=>"Icon-50.png"), array("width" => 80, "height"=> 80, "path"=>"ios", "name"=>"Icon-40@2x.png"), array("width" => 40, "height"=> 40, "path"=>"ios", "name"=>"Icon-40.png"), array("width" => 58, "height"=> 58, "path"=>"ios", "name"=>"Icon-29@2x.png"), array("width" => 29, "height"=> 29, "path"=>"ios", "name"=>"Icon-29.png"), ) , "ANDROID" => array ( array("width" => 144, "height" => 144, "path" => "android/drawable", "name"=>"icon.png"), array("width" => 144, "height" => 144, "path" => "android/drawable-xhdpi", "name"=>"icon.png"), array("width" => 72, "height" => 72, "path" => "android/drawable-hdpi", "name"=>"icon.png"), array("width" => 48, "height" => 48, "path" => "android/drawable-mdpi", "name"=>"icon.png"), array("width" => 32, "height" => 32, "path" => "android/drawable-ldpi", "name"=>"icon.png") ) ); foreach ($IconArray["IOS8"] as $key => $IconType) { thumb("icon.png",$IconType['width'],$IconType['height'],$IconType['path'],$IconType['name']); } foreach ($IconArray["IOS"] as $key => $IconType) { thumb("icon.png",$IconType['width'],$IconType['height'],$IconType['path'],$IconType['name']); } foreach ($IconArray["ANDROID"] as $key => $IconType) { thumb("icon.png",$IconType['width'],$IconType['height'],$IconType['path'],$IconType['name']); } ?>
相关推荐:
以上是PHP自定义尺寸icon处理类分享的详细内容。更多信息请关注PHP中文网其他相关文章!

PHP在现代编程中仍然是一个强大且广泛使用的工具,尤其在web开发领域。1)PHP易用且与数据库集成无缝,是许多开发者的首选。2)它支持动态内容生成和面向对象编程,适合快速创建和维护网站。3)PHP的性能可以通过缓存和优化数据库查询来提升,其广泛的社区和丰富生态系统使其在当今技术栈中仍具重要地位。

在PHP中,弱引用是通过WeakReference类实现的,不会阻止垃圾回收器回收对象。弱引用适用于缓存系统和事件监听器等场景,需注意其不能保证对象存活,且垃圾回收可能延迟。

\_\_invoke方法允许对象像函数一样被调用。1.定义\_\_invoke方法使对象可被调用。2.使用$obj(...)语法时,PHP会执行\_\_invoke方法。3.适用于日志记录和计算器等场景,提高代码灵活性和可读性。

Fibers在PHP8.1中引入,提升了并发处理能力。1)Fibers是一种轻量级的并发模型,类似于协程。2)它们允许开发者手动控制任务的执行流,适合处理I/O密集型任务。3)使用Fibers可以编写更高效、响应性更强的代码。

PHP社区提供了丰富的资源和支持,帮助开发者成长。1)资源包括官方文档、教程、博客和开源项目如Laravel和Symfony。2)支持可以通过StackOverflow、Reddit和Slack频道获得。3)开发动态可以通过关注RFC了解。4)融入社区可以通过积极参与、贡献代码和学习分享来实现。

PHP和Python各有优势,选择应基于项目需求。1.PHP适合web开发,语法简单,执行效率高。2.Python适用于数据科学和机器学习,语法简洁,库丰富。

PHP不是在消亡,而是在不断适应和进化。1)PHP从1994年起经历多次版本迭代,适应新技术趋势。2)目前广泛应用于电子商务、内容管理系统等领域。3)PHP8引入JIT编译器等功能,提升性能和现代化。4)使用OPcache和遵循PSR-12标准可优化性能和代码质量。

PHP的未来将通过适应新技术趋势和引入创新特性来实现:1)适应云计算、容器化和微服务架构,支持Docker和Kubernetes;2)引入JIT编译器和枚举类型,提升性能和数据处理效率;3)持续优化性能和推广最佳实践。


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

EditPlus 中文破解版
体积小,语法高亮,不支持代码提示功能

记事本++7.3.1
好用且免费的代码编辑器

SecLists
SecLists是最终安全测试人员的伙伴。它是一个包含各种类型列表的集合,这些列表在安全评估过程中经常使用,都在一个地方。SecLists通过方便地提供安全测试人员可能需要的所有列表,帮助提高安全测试的效率和生产力。列表类型包括用户名、密码、URL、模糊测试有效载荷、敏感数据模式、Web shell等等。测试人员只需将此存储库拉到新的测试机上,他就可以访问到所需的每种类型的列表。

MinGW - 适用于 Windows 的极简 GNU
这个项目正在迁移到osdn.net/projects/mingw的过程中,你可以继续在那里关注我们。MinGW:GNU编译器集合(GCC)的本地Windows移植版本,可自由分发的导入库和用于构建本地Windows应用程序的头文件;包括对MSVC运行时的扩展,以支持C99功能。MinGW的所有软件都可以在64位Windows平台上运行。

ZendStudio 13.5.1 Mac
功能强大的PHP集成开发环境