index.php

复制代码 代码如下:

点击下载";

}

}else{

echo "生成错误请重试!";

}

}

}

?>

ICO图标在线转换

ICO图标在线转换

请上传你要转换的图片

支持格式 png,jpg,gif

目标尺寸:

16*16

32*32

48*48

".$output."";

}

?>

Powered by 非常爱漫

phpthumb.ico.php

复制代码 代码如下:

//

// available at http://phpthumb.sourceforge.net ///

//

/// //

// phpthumb.ico.php - .ICO output format functions //

// ///

//

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));

}

}

?>

以上就介绍了logo在线生成 php在线生成ico文件的代码,包括了logo在线生成方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

本文原创发布php中文网,转载请注明出处,感谢您的尊重!

php在线生成logo,logo在线生成 php在线生成ico文件的代码相关推荐

  1. MyBatis自动生成实体类、DAO接口和Mapping映射文件的代码(逆向工程)

    MyBatis属于一种半自动的ORM框架,它需要程序员自己编写sql语句和映射文件,但是编写映射文件和sql语句很容易出错,所以mybatis官方提供了Generator生成器,自动生成DAO接口.实 ...

  2. 在线文字图标logo文章封面图生成工具

    在线文字图标logo文章封面图生成工具 在线文字图标logo文章封面图生成工具 在线文字图标logo文章封面图生成工具. 微信公众号文章封面图在线生成. https://tooltt.com/font ...

  3. iOS 生成带 logo 的二维码,区域截屏保存至相册(小功能二连发 (一))

    原文链接:http://www.jianshu.com/p/36e9f012ef39 生成带 logo 的二维码 区域截屏相关 -- 由3033分享 开篇 最近项目需要搞了几个相对独立的小功能,今天有 ...

  4. PHP 生成带logo二维码并修改背景颜色,利用画布布局二维样式

    二维码 先上图 <?phpinclude 'lib/phpqrcode.php'; require_once 'lib/image.php'; $value = "localhost/ ...

  5. zxing生成带logo的二维码

    倒Zxing依赖 implementation 'cn.bingoogolapple:bga-qrcode-zxing:1.2.1' 代码段 import android.graphics.Bitma ...

  6. 什么?30秒生成一个logo

    logo 是徽标或者商标的英文说法.logo 承载着企业的无形资产,是企业综合信息传递的媒介.标志作为企业CIS战略的最主要部分,在企业形象传递过程中,是应用最广泛.出现频率最高,同时也是最关键的元素 ...

  7. Android Studio 生成二维码、生成带logo的二维码

    1.生成二维码: 2.生成logo的二维码: 一.引入依赖 首先在libs文件目录下放进jar包zxing.jar,要下载zxing.jar就点击链接:下载zxing.jar(记得点击"Cd ...

  8. 使用zxing生成带logo的二维码图片,自动调节logo图片相对二维码图片的大小

    使用zxing生成带logo的二维码图片,自动调节logo图片相对二维码图片的大小  * 可选是否带logo,可选是否保存二维码图片:结果返回base64编码的图片数据字符串  * 页面显示:< ...

  9. asp.net 后台生成二维码及生成带logo的二维码

    asp.net 后台生成二维码及生成带logo的二维码,此处将生成二维码和带Logo的二维码写在一起的,需要自己区分一下. 直接上代码 using System; using System.Colle ...

  10. 计算机logo在线设计,手机上在线制作免费logo图标的APP—Logo Foundry

    一个不输电脑上设计精美logo的手机APP,也是业界众多科技媒体报道的手机上在线制作免费logo图标的APP-Logo Foundry.如果你正需要一款可以在手机上轻松制作免费logo图表的软件,那么 ...

最新文章

  1. javaSE基础知识 1.5整数类型
  2. PopupWindow响应返回键的问题
  3. MyBatis入门及CRUD
  4. c++经典书籍--c++ primer 第6版
  5. Windows IIS配置Jsp和php环境方法
  6. 微服务实践分享(9)文档中心
  7. loadrunner之协议选择
  8. 【百度地图API】如何激发手机的高分辨率
  9. 【转】Serverless架构
  10. mysql多次join后count优化_mysql join count 优化案例
  11. 学术论文答辩通用PPT模板
  12. php呼伦贝尔,呼伦贝尔php培训
  13. Arduino学习笔记—— 猜数字游戏
  14. mapbox-gl加载three.js泛光效果(视频)
  15. spacy依存分析模型
  16. 获取当前登录用户的IP地址代码
  17. 京东云无线宝可以服务器吗,京东云无线宝哪种上网方式收益最高,这点你一定得知道...
  18. 电商大数据日志收集系统之EFK
  19. 谷歌卫星地图下载器bigemap的优势
  20. 毕设题目:Matlab车道线检测

热门文章

  1. Swagger自动生成接口文档
  2. 如何区分前后端 BUG
  3. 服务器布线属于搬迁项目吗,弱电机房服务器搬迁建设整体规划与合理布局
  4. 计算机专业英语课程整体设计,计算机专业英语的课程整体.doc
  5. Photoshop将图片转为RGB颜色模式 您还不会吗?
  6. Power bi 3.2 堆积柱形图
  7. 第一节veeam 10备份系统介绍
  8. 色纯度(purity)主波长(WD)计算软件
  9. 使用Tasker和企业微信实现在安卓手机自动转发短信至微信
  10. 批量获取百度网盘文件目录