- 浏览: 186882 次
- 性别:
- 来自: 北京
最新评论
-
heping45:
有待进步,不知所云
WEB流程图(jquery实现) -
zhoupuyue:
html有一个小错误:<script> $(fu ...
漂亮的Jquery的日期控件(精减) -
dcdc723:
happy175 写道大家是怎么用的啊,我的怎么没有反应?这是 ...
漂亮的Jquery的日期控件(精减) -
happy175:
大家是怎么用的啊,我的怎么没有反应?这是我的代码:
<! ...
漂亮的Jquery的日期控件(精减) -
nianshi:
加上Html文件多好啊
漂亮的Jquery的日期控件(精减)
<?php $output = ""; if($_FILES['upimage']!=''){ if(isset($_FILES['upimage']['tmp_name']) && $_FILES['upimage']['tmp_name'] && is_uploaded_file($_FILES['upimage']['tmp_name'])){ if($_FILES['upimage']['type']>512000){ $typeinfo = "你上传的文件体积超过了限制 最大不能超过512K"; } $fileext = array("image/pjpeg","image/jpeg","image/gif","image/x-png"); if(!in_array($_FILES['upimage']['type'],$fileext)){ $typeinfo = "你上传的文件格式不正确 仅支持 jpg,gif,png"; } if($im = @imagecreatefrompng($_FILES['upimage']['tmp_name']) or $im = @imagecreatefromgif($_FILES['upimage']['tmp_name']) or $im = @imagecreatefromjpeg($_FILES['upimage']['tmp_name'])){ $imginfo = @getimagesize($_FILES['upimage']['tmp_name']); if(!is_array($imginfo)){ $typeinfo = "图形格式错误!无法处理这张图片."; } switch($_POST['size']){ case 1; $resize_im = @imagecreatetruecolor(16,16); $size = 16; break; case 2; $resize_im = @imagecreatetruecolor(32,32); $size = 32; break; case 3; $resize_im = @imagecreatetruecolor(48,48); $size = 48; break; default; $resize_im = @imagecreatetruecolor(32,32); $size = 32; break; } imagecopyresampled($resize_im,$im,0,0,0,0,$size,$size,$imginfo[0],$imginfo[1]); $icon = new phpthumb_ico(); $gd_image_array = array($resize_im); $icon_data = $icon->GD2ICOstring($gd_image_array); header("Accept-Ranges: bytes"); header("Accept-Length: ".strlen($icon_data)); header("Content-type: application/octet-stream"); header("Content-Disposition: attachment; filename=" .'favicon.ico'); echo $icon_data; exit; }else{ $typeinfo = "生成图标错误...这张图片或许已损坏."; } } } class phpthumb_ico { function phpthumb_ico() { return true; } function GD2ICOstring(&$gd_image_array) { foreach ($gd_image_array as $key => $gd_image) { $ImageWidths[$key] = ImageSX($gd_image); $ImageHeights[$key] = ImageSY($gd_image); $bpp[$key] = ImageIsTrueColor($gd_image) ? 32 : 24; $totalcolors[$key] = ImageColorsTotal($gd_image); $icXOR[$key] = ''; for ($y = $ImageHeights[$key] - 1; $y >= 0; $y--) { for ($x = 0; $x < $ImageWidths[$key]; $x++) { $argb = $this->GetPixelColor($gd_image, $x, $y); $a = round(255 * ((127 - $argb['alpha']) / 127)); $r = $argb['red']; $g = $argb['green']; $b = $argb['blue']; if ($bpp[$key] == 32) { $icXOR[$key] .= chr($b).chr($g).chr($r).chr($a); } elseif ($bpp[$key] == 24) { $icXOR[$key] .= chr($b).chr($g).chr($r); } if ($a < 128) { @$icANDmask[$key][$y] .= '1'; } else { @$icANDmask[$key][$y] .= '0'; } } // mask bits are 32-bit aligned per scanline while (strlen($icANDmask[$key][$y]) % 32) { $icANDmask[$key][$y] .= '0'; } } $icAND[$key] = ''; foreach ($icANDmask[$key] as $y => $scanlinemaskbits) { for ($i = 0; $i < strlen($scanlinemaskbits); $i += 8) { $icAND[$key] .= chr(bindec(str_pad(substr($scanlinemaskbits, $i, 8), 8, '0', STR_PAD_LEFT))); } } } foreach ($gd_image_array as $key => $gd_image) { $biSizeImage = $ImageWidths[$key] * $ImageHeights[$key] * ($bpp[$key] / 8); // BITMAPINFOHEADER - 40 bytes $BitmapInfoHeader[$key] = ''; $BitmapInfoHeader[$key] .= "\x28\x00\x00\x00"; // DWORD biSize; $BitmapInfoHeader[$key] .= $this->LittleEndian2String($ImageWidths[$key], 4); // LONG biWidth; // The biHeight member specifies the combined // height of the XOR and AND masks. $BitmapInfoHeader[$key] .= $this->LittleEndian2String($ImageHeights[$key] * 2, 4); // LONG biHeight; $BitmapInfoHeader[$key] .= "\x01\x00"; // WORD biPlanes; $BitmapInfoHeader[$key] .= chr($bpp[$key])."\x00"; // wBitCount; $BitmapInfoHeader[$key] .= "\x00\x00\x00\x00"; // DWORD biCompression; $BitmapInfoHeader[$key] .= $this->LittleEndian2String($biSizeImage, 4); // DWORD biSizeImage; $BitmapInfoHeader[$key] .= "\x00\x00\x00\x00"; // LONG biXPelsPerMeter; $BitmapInfoHeader[$key] .= "\x00\x00\x00\x00"; // LONG biYPelsPerMeter; $BitmapInfoHeader[$key] .= "\x00\x00\x00\x00"; // DWORD biClrUsed; $BitmapInfoHeader[$key] .= "\x00\x00\x00\x00"; // DWORD biClrImportant; } $icondata = "\x00\x00"; // idReserved; // Reserved (must be 0) $icondata .= "\x01\x00"; // idType; // Resource Type (1 for icons) $icondata .= $this->LittleEndian2String(count($gd_image_array), 2); // idCount; // How many images? $dwImageOffset = 6 + (count($gd_image_array) * 16); foreach ($gd_image_array as $key => $gd_image) { // ICONDIRENTRY idEntries[1]; // An entry for each image (idCount of 'em) $icondata .= chr($ImageWidths[$key]); // bWidth; // Width, in pixels, of the image $icondata .= chr($ImageHeights[$key]); // bHeight; // Height, in pixels, of the image $icondata .= chr($totalcolors[$key]); // bColorCount; // Number of colors in image (0 if >=8bpp) $icondata .= "\x00"; // bReserved; // Reserved ( must be 0) $icondata .= "\x01\x00"; // wPlanes; // Color Planes $icondata .= chr($bpp[$key])."\x00"; // wBitCount; // Bits per pixel $dwBytesInRes = 40 + strlen($icXOR[$key]) + strlen($icAND[$key]); $icondata .= $this->LittleEndian2String($dwBytesInRes, 4); // dwBytesInRes; // How many bytes in this resource? $icondata .= $this->LittleEndian2String($dwImageOffset, 4); // dwImageOffset; // Where in the file is this image? $dwImageOffset += strlen($BitmapInfoHeader[$key]); $dwImageOffset += strlen($icXOR[$key]); $dwImageOffset += strlen($icAND[$key]); } foreach ($gd_image_array as $key => $gd_image) { $icondata .= $BitmapInfoHeader[$key]; $icondata .= $icXOR[$key]; $icondata .= $icAND[$key]; } return $icondata; } function LittleEndian2String($number, $minbytes=1) { $intstring = ''; while ($number > 0) { $intstring = $intstring.chr($number & 255); $number >>= 8; } return str_pad($intstring, $minbytes, "\x00", STR_PAD_RIGHT); } function GetPixelColor(&$img, $x, $y) { if (!is_resource($img)) { return false; } return @ImageColorsForIndex($img, @ImageColorAt($img, $x, $y)); } } ?> <!DOCTYPE html> <html lang="zh-CN"> <meta charset="utf-8"> <title>ICO图标生成</title> <style type="text/css" media="all"> html, body {margin: 0;padding: 0; }body {color: #333;font: 12px Tahoma,Lucida Grande, sans-serif;margin: 9%;}a {color: #0055CC; }img {border: 0px solid #CCC;}h1 {margin: 0;}h3 {color: #555;font-size: 1.6em;font-weight: normal;margin: 0; }pre {color: #0055CC;font-size: 1.1em;line-height: 1.2;margin: 0.25em 0; }p {margin: 0.65em 0;}#ads {border-left: 1px solid #eee;float: right;margin: 0 0 2em 2.5em;padding-left: 3px;width: 160px;}#source {margin-bottom: 2.5em; }pre {overflow: auto;padding:1em 0; }h2 {position: relative;top: 0.5em;} </style> <h3>Favicon 网站图标生成</h3> <?php if($typeinfo){echo $typeinfo;}?> <form method="post" enctype='multipart/form-data'> 选择图片:<input type="file" name="upimage" size="30"><br /> <br />支持格式:png,jpg,gif<br /><br /> 目标尺寸: <input type="radio" name="size" value="1" id="s1"><label for="s1">16*16</label> <input type="radio" name="size" value="2" id="s2" checked><label for="s2">32*32</label> <input type="radio" name="size" value="3" id="s3"><label for="s3">48*48</label><br /><br /> <input type="submit" value="生成ICO图标"> </form>
发表评论
-
cassandra CONNECT
2012-02-25 12:22 1888<?php // Setting up no ... -
cgi 启动问题
2011-09-23 16:08 860/usr/local/bin/spawn-fcgi -a 12 ... -
Using PDO Objects in PHP 5 - Finding insertion IDs for database rows
2010-12-22 13:07 1059As I pointed out in the section ... -
Using PDO Objects in PHP 5 - Running queries against a specific
2010-12-22 12:41 1062Naturally, after learning ho ... -
Using PDO Objects in PHP 5 - Using the PDO extension
2010-12-22 12:13 976Definitely, a good point to ... -
discuz7.2 二次开发---------后台添加菜单
2010-09-15 15:13 1705menu.inc.php showmenu('te ... -
discuz 文件说明
2010-09-10 15:39 7418文件颜色说明:红色:程序核心文件,修改这类文件时千万要注意安全 ... -
discuz 7.2数据库表结构
2010-09-09 15:54 5917discuz 7.2数据库结构表 discuz, 结构, 数据 ... -
smarty变量操作符
2010-09-05 14:17 873capitalize [首字母大写] count_char ... -
eclipse自动补全
2010-09-05 11:11 1387eclipse自动补全配置 -
根据IP自动切换城市(腾讯网接口)
2010-05-27 10:02 2797<script src="http://fw. ... -
常用类
2010-05-04 10:41 794// 过滤html代码 function SpHtml2 ... -
用jcrop裁剪图片
2010-04-16 14:42 1161<? if ($_SERVER['REQUEST_ME ... -
图片加水印
2010-04-16 09:59 802$file="7.jpg"; $widt ... -
php创建验证字符图片
2010-04-16 09:24 850<?php //(1)创建背景图像。建立一幅150* ... -
php加密解密
2010-04-15 17:07 1226<? define('UC_KEY','finger ... -
jquery 操作复选框 取值
2010-02-26 17:50 1373<? //引入类 ?> <!DOCTY ... -
smarty 基本配置、应用
2010-02-23 21:40 1239//以下为:smart_inc.php include_o ... -
PHP 通用分页类PagerBox及使用
2010-02-04 21:36 1527<?php //使用实例 //$totalNum = ... -
PHP SOCKET()方式发送邮件(附php类)
2010-02-03 21:48 2413fsockopen(string hostname, ...
相关推荐
"xcode 9 1024icon生成全分辨率icon脚本"是一个针对Xcode 9版本的工具,用于帮助开发者快速、高效地创建符合Apple要求的多种尺寸的应用图标,包括1024x1024像素的启动图(Launch Image)和App图标。 在iOS开发中,...
标题提到的“iOS独立开发者福音,App ICON生成工具”便是一个解决方案,它能够自动生成所有必要的Icon尺寸,从而简化这一过程。 这个开源项目的核心功能是创建一个完整的`appiconset`目录结构,该结构符合Apple的...
**ICON图标生成器详解** ICON图标生成器是一种实用工具,专为将各种图像格式转换为ICO格式而设计,ICO是Windows操作系统中用于表示程序、文件或网页图标的专用格式。在编程领域,尤其是在开发桌面应用或者网站时,...
【App Icon生成器详解】 在移动应用开发领域,App Icon是至关重要的元素,它不仅是用户在设备上识别应用的第一印象,也是品牌形象的重要组成部分。本文将详细介绍"App Icon生成器"这一工具,它能够帮助开发者轻松地...
Icon制作生成转换工具是一款强大的图形处理软件,专为创建、编辑和转换图标设计而开发。它允许用户将各种格式的图像文件,如JPEG、PNG、BMP、GIF等,轻松快捷地转换为ICO格式,ICO是Windows操作系统中用于桌面图标、...
Icon生成器是一款强大的图形处理工具,专用于将各种图像文件格式转换为ICO图标格式。ICO是一种特殊的文件格式,常用于计算机操作系统的桌面图标、程序图标以及其他界面元素。它支持多种尺寸和颜色深度,以适应不同...
"超级方便的ICON图标生成器"是一个工具,旨在帮助设计师和开发者快速、高效地创建和转换不同尺寸的图标。本文将详细介绍这个生成器的功能、用途及其在设计过程中的重要性。 首先,图标生成器支持多种尺寸,包括16X...
"icon生成器"是一个工具,能够帮助用户将不同图形格式的文件转换为图标文件,这在软件开发、网页设计和用户界面设计中尤为实用。这种工具通常支持多种输入格式,如PNG、JPG、GIF、BMP等,输出则是Windows或Mac系统...
为了减轻开发者的工作量,"快速生成iOS APP全套icon工具"应运而生,这款工具特别适合Mac用户使用,能快速高效地自动生成符合苹果规范的各种尺寸图标。 该工具的核心功能在于自动化处理图标的设计工作,它能够接受一...
本教程将围绕“一键生成Android/Android-HD/iOS多尺寸ICON”的主题,详细讲解这个过程中的关键知识点。 首先,我们需要理解各个平台的图标要求。在Android系统中,图标通常需要包括ldpi、mdpi、hdpi、xhdpi、xxhdpi...
"icon圆形图标自动生成工具"正是为了满足这一需求而诞生的工具,它能帮助设计师或开发者快速创建出专业且一致的圆形图标,并带有左上角的亮点效果,提升整体应用的视觉吸引力。 该工具的核心功能在于自动化生成过程...
"xp-icon生成图标"的主题聚焦于在Windows XP操作系统环境下创建或转换图标(ICO)文件的过程。Windows XP是微软在2001年发布的一款操作系统,虽然现在已被更新的操作系统版本取代,但仍有部分用户和开发者对其图标...
"生成不同尺寸的icon"这个主题涉及到跨平台开发中的图标适配问题。 生成不同尺寸的icon是一项繁琐的工作,因为每个平台都有自己的规范。例如,Android通常需要多种尺寸的图标,包括hdpi、xhdpi、xxhdpi和xxxhdpi等...
【手机项目icon生成器源码】是一个用于自动化创建多尺寸应用图标的工具,它基于Adobe AIR技术开发。在移动应用开发中,图标是用户界面的重要组成部分,不同的平台和设备可能需要不同尺寸的图标来适配屏幕分辨率和...
本文将详细介绍如何使用“appIcon一键生成app图片”工具,以高效地创建符合各平台规范的AppIcon。 首先,理解AppIcon的重要性。AppIcon是应用程序在商店、设备主屏幕、设置和其他地方显示的图标。一个吸引人的、...
"swift-AppICON生成工具"正是为了解决这个问题而设计的,它能自动化地生成所有必要的图标尺寸,极大地提高了开发效率。 Swift语言是Apple推出的一种强类型、编译型的编程语言,以其简洁、安全和高性能的特点深受...
"iOS生成桌面icon"是指为iOS应用创建在用户设备主屏幕上显示的个性化图标的过程。AppWebClip-master.zip文件包含的资源和代码可能是一个帮助开发者快速生成iOS桌面快捷方式(Web Clip)的工具,它可以模拟真实应用...
从标签“icon格式的图标自动生成各种大小”我们可以推断,这款软件的主要功能就是处理icon格式的文件,并且它的核心优势在于自动化生成多种尺寸的图标,这对于图标设计和管理来说非常方便。 至于压缩包内的文件“!...
基于QT的点阵ICON生成器是一个专门设计用于创建点阵图格式的图标工具,这种图标通常在低分辨率或者资源有限的环境中使用,如嵌入式系统或复古风格的应用。点阵图像是由像素阵列组成,每个像素有自己的颜色,因此可以...