PHP 实现的将图片转换为TXT
?
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
<?php
/*
2015年10月19日10:24:59
*/
// 打开一幅图像
$file_name='d:\\ascii_dora.png';
$chars = "$@B%8&WM#*oahkbdpqwmZO0QLCJUYXzcvunxrjft/\\|()1{}[]?-_+~<>i!lI;:,\\"^`'. ";
function getimgchars($color_tran,$chars){
$length = strlen($chars);
$alpha=$color_tran['alpha'];
$r=$color_tran['red'];
$g=$color_tran['green'];
$b=$color_tran['blue'];
$gray = intval(0.2126 * $r + 0.7152 * $g + 0.0722 * $b);
if($gray==0){
return '.';
}
if($gray<196){
$unit = (256.0 + 1)/$length;
return $chars[intval($gray/$unit)];
}
return " ";
}
function color_img($color_tran,$chars){
$length = strlen($chars);
$alpha=$color_tran['alpha'];
$r=$color_tran['red'];
$g=$color_tran['green'];
$b=$color_tran['blue'];
$gray = intval(0.2126 * $r + 0.7152 * $g + 0.0722 * $b);
$rand=rand (0, $length-1);
$color="rgb(".$r.",".$g.",".$b.")";
$char=$chars[$rand];
return '<span style="color:'.$color.'" >'.$char."</span>";;
}
function resize_img($file_name,$chars,$flage=true){
//header('Content-Type: image/jpeg');
list($width, $height,$type) = getimagesize($file_name);
$fun='imagecreatefrom' . image_type_to_extension($type, false);
if($type==3){
$flage=false;
}
$fun($file_name);
$new_height =100;
$percent=$height/$new_height;
$new_width=$width/$percent;
$image_p = imagecreatetruecolor($new_width, $new_height);
$image = $fun($file_name);
imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
if($flage){
return $image_p;
}else{
return $image;
}
}
$im=resize_img($file_name,$chars);
$width=imagesx($im);
$height=imagesy($im);
$back_text="";
for($i=1;$i<=$height;$i++){
for($j=1;$j<=$width;$j++){
$color_index = imagecolorat($im, $j-1, $i-1);
$color_tran = imagecolorsforindex($im, $color_index);
$back_text.=color_img($color_tran,$chars,false);
}
$back_text.="<br/>";
}
|
相关文章
猜你喜欢
- 个人网站服务器域名解析设置指南:从购买到绑定全流程 2025-06-10
- 个人网站搭建:如何挑选具有弹性扩展能力的服务器? 2025-06-10
- 个人服务器网站搭建:如何选择适合自己的建站程序或框架? 2025-06-10
- 64M VPS建站:能否支持高流量网站运行? 2025-06-10
- 64M VPS建站:怎样选择合适的域名和SSL证书? 2025-06-10
TA的动态
- 2025-07-10 怎样使用阿里云的安全工具进行服务器漏洞扫描和修复?
- 2025-07-10 怎样使用命令行工具优化Linux云服务器的Ping性能?
- 2025-07-10 怎样使用Xshell连接华为云服务器,实现高效远程管理?
- 2025-07-10 怎样利用云服务器D盘搭建稳定、高效的网站托管环境?
- 2025-07-10 怎样使用阿里云的安全组功能来增强服务器防火墙的安全性?
快网idc优惠网
QQ交流群
您的支持,是我们最大的动力!
热门文章
-
在CentOS 6.3中安装与配置Mysql-5.5.29的方法
2025-05-25 94 -
2025-05-25 27
-
2025-05-27 94
-
2025-05-26 59
-
2025-05-25 89
热门评论

