<?php
// 发送Header,表明是PNG文件
header('content-type: image/png');
// 设置源图片的路径并创建
$src = 'http://mapgoogle.mapabc.com/googlechina/maptile?v=w2.60&' . $_SERVER["QUERY_STRING"];
$image = imagecreatefromgif($src);
// 需要被清除的颜色 数组
$removedcollors = array(
imagecolorexact($image, 152, 178, 203),
imagecolorexact($image, 241, 238, 232),
imagecolorexact($image, 232, 227, 216),
imagecolorexact($image, 235, 230, 220),
imagecolorexact($image, 242, 239, 233)
);
// 设定透明色
$transparent = imagecolorallocate($image, 100, 100, 100);
// 获取图片大小,以便逐点清除颜色
$x = imagesx($image);
$y = imagesy($image);
// 清除颜色
for($i = 0; $i<$x; $i++)
{
for($j = 0; $j<$y; $j++)
{
$color = imagecolorat($image, $i, $j);
if(in_array($color, $removedcollors))
{
imagesetpixel($image, $i, $j, $transparent);
}
}
}
// 设置图片透明
imagecolortransparent($image, $transparent);
// 输出PNG图片
imagepng($image);
// 销毁图片资源
imagedestroy($image);
?>
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
├─07 Google Maps API深度历险 │ ├─7.1 导入Google Maps API库 │ │ ├─7.1.2 导入不同语言的Google Maps API库文件 │ │ └─7.1.3 在不同URL地址下使用Google Maps API │ ├─7.2 挖掘Google Maps API中未公开的功能 │ │ ├─7.2.1 为Google地图添加鸟瞰地图 │ │ ├─7.2.2 最大化GInfoWindow信息窗口 │ │ └─7.2.3 设定GMarker地标的Z轴坐标 │ ├─7.3 自定义Google地图 │ │ ├─7.3.1 改变Google地图色调 │ │ ├─7.3.2 限制地图的缩放级别和显示范围 │ │ └─7.3.3 打造Google地图夜间版 │ ├─7.4 第三方扩展资源 │ │ ├─7.4.1 使用TLabel │ │ ├─7.4.2 使用TPhoto │ │ └─7.4.3 使用GZoom │ └─7.5 深入Google地图核心 │ ├─7.5.1-2 汉化Google地图 │ └─7.5.3-4 打造完美的混合地图
资源推荐
资源详情
资源评论
收起资源包目录
07.rar (29个子文件)
07
7.2
7.2.3
1.html 4KB
7.2.2
maxwindow.html 510B
1.html 2KB
img.png 64KB
2.html 2KB
7.2.1
1.html 1KB
7.5
7.5.2
custom.html 844B
custom.api.js 7KB
7.5.3
custom3.html 1005B
custom.api3.js 7KB
custom2.html 844B
mt.php 1KB
custom.api2.js 7KB
7.4
7.4.2
tphoto.2.05.js 2KB
1.html 2KB
7.4.1
1.html 2KB
point_bottom_left.png 253B
tlabel.2.05.js 2KB
7.4.3
gzoom_uncompressed.js 14KB
1.html 1KB
gzoom.js 8KB
7.1
7.1.2
1.html 970B
2.html 970B
7.1.3
1.html 1KB
2.html 2KB
7.3
7.3.1
1.html 2KB
7.3.2
1.html 3KB
7.3.3
1.html 1KB
2.html 3KB
共 29 条
- 1
资源评论
- dogquill2012-11-13非常好的资料,内容详细明确,适合入门google maps开发时候用。
Labnizmin
- 粉丝: 53
- 资源: 27
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功