• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP动态输出svgz格式图片

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

使用PHP动态生成SVGZ图片(gzip压缩的SVG)

经测试SVG的动画性能很差,简单的动画CPU都能占到 30%左右。

可能的用途:

  • 动态天气图片
  • 访问统计计数图片
  • 文字验证生成
  • 动态头像
  • 静态外连图片
  • 图片CHART
<?php

header('Content-Type:image/svg+xml'); 
header('Content-Encoding:gzip'); 

$image_width = @$_GET['w'] ?: 800;
$image_height = @$_GET['h'] ?: 600;

$svg = <<<EOF
<svg version="1.1"
 width="{$image_width}"
 height="{$image_height}"
 viewBox="0 0 {$image_width} {$image_height}"
 preserveAspectRatio="none"
 xmlns="http://www.w3.org/2000/svg"
 xmlns:xlink="http://www.w3.org/1999/xlink"
>

<defs>
<g >
    <circle cx="340" cy="90" r="15" fill="blue" />
    <path />
    <circle cx="0" cy="0" r="5" fill="white" stroke="black" stroke-width="1" >
           <animateMotion dur="30s" repeatCount="indefinite">
            <mpath xlink:href="#path2" />
        </animateMotion>
    </circle>
</g>
<radialGradient >
    <stop stop-color="#FF0000" offset="0%" stop-opacity="1"/>
    <stop stop-color="#FBF900" offset="95%" stop-opacity="1"/>
    <stop stop-color="#FFFFFF" offset="100%" stop-opacity="1"/>
</radialGradient>
</defs>

<rect x="0" y="0" width="100%" height="100%" fill="black" />

<circle cx="50%" cy="50%" r="10%" fill="url(#sunfill)" />
<path />

<use x="0" y="0" xlink:href="#E">
<animateMotion dur="365s" repeatCount="indefinite" >
    <mpath xlink:href="#path1" />
</animateMotion>
</use>

EOF;

$err = 'svg 生成错误!' . $_SERVER['REMOTE_ADDR'] . $_SERVER['HTTP_USER_AGENT'];

if ($err != '')
{
    $svg .= '<text x="10" y="20" font-size="12" text-anchor="start" fill="#f00">' . $err . '</text>';
}

$svg .= '</svg>';

$svg = gzencode($svg, 9);

echo $svg;

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP获取时间发布时间:2022-07-10
下一篇:
03-PHP-memcached发布时间:2022-07-10
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap