IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> PHP知识库 -> php 图片转svg -> 正文阅读

[PHP知识库]php 图片转svg

php 图片转svg

  • 临时写的未做优化 还是可以将就着用
function outputSvg($url)
    {

      $info = getimagesize($url);
        if (!$info) return '<h1>这不是图片</h1>';
        $readImage = [
            IMAGETYPE_GIF  => 'imagecreatefromgif',
            IMAGETYPE_JPEG => 'imagecreatefromjpeg',
            IMAGETYPE_PNG  => 'imagecreatefrompng',
            IMAGETYPE_WBMP => 'imagecreatefromwbmp',
            IMAGETYPE_XBM  => 'imagecreatefromxbm',
            IMAGETYPE_BMP  => 'imagecreatefrombmp',
        ];

        if (!$readImage[$info[2]]) return '<h1>这不是图片</h1>';
        $i = $readImage[$info[2]]($url);
        imagejpeg($i, __DIR__ . '/temp.jpg');
        $i = imagecreatefromjpeg(__DIR__ . '/temp.jpg');
        if (!$i) return '<h1>图片不存在</h1>';
        $x_l = $info[0];
        $y_l = $info[1];
        $path = [];
        $channels = imagecolorstotal($i);
        ob_start();
        echo '<style>body{line-height: 8px;}</style>';
        //过滤白色
        $mottled = 10000000;
        for ($x = 0; $x < $x_l; $x++) {
            for ($y = 0; $y < $y_l; $y++) {
                $rgb = imagecolorat($i, $x, $y);
                if ($rgb < $mottled) {
                    $c_1 = imagecolorat($i, $x - 1, $y);
                    $c_2 = imagecolorat($i, $x + 1, $y);
                    $c_3 = imagecolorat($i, $x, $y - 1);
                    $c_4 = imagecolorat($i, $x, $y + 1);
                    //echo '◆';
                    if ($c_1 < $mottled && $c_2 < $mottled && $c_3 < $mottled && $c_4 < $mottled) {
                        echo '◇';
                    } elseif ($c_1 > $mottled && $c_2 > $mottled && $c_3 > $mottled && $c_4 > $mottled) {
                        echo '◇';
                    } else {
                        $path[] = $x . " " . $y;
                        echo '◆';
                    }
                } else {
                    echo '◇';
                }
            }
            echo '<br/>';
        }
        //exit;
        ob_clean();
        echo "<?xml version=\"1.0\" standalone=\"no\"?> <!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\" \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\"> <svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\" width=\"80%\" height=\"80%\" viewBox=\"0 0 {$x_l} {$y_l}\" preserveAspectRatio=\"xMidYMid meet\"> <g fill=\"#000\" stroke=\"none\">";
        $spot = current($path);
        while ($spot) {
            unset($path[array_search($spot, $path)]);
            $spot1 = explode(' ', $spot);
            echo "<path d=\"M{$spot1[0]} {$spot1[1]}";
            $c = 0;
            !$c and $c = array_search(($spot1[0] - 1) . ' ' . ($spot1[1] - 1), $path);
            !$c and $c = array_search(($spot1[0] - 1) . ' ' . $spot1[1], $path);
            !$c and $c = array_search(($spot1[0] - 1) . ' ' . ($spot1[1] + 1), $path);
            !$c and $c = array_search($spot1[0] . ' ' . ($spot1[1] - 1), $path);
            !$c and $c = array_search($spot1[0] . ' ' . ($spot1[1] + 1), $path);
            !$c and $c = array_search(($spot1[0] + 1) . ' ' . ($spot1[1] - 1), $path);
            !$c and $c = array_search(($spot1[0] + 1) . ' ' . $spot1[1], $path);
            !$c and $c = array_search(($spot1[0] + 1) . ' ' . ($spot1[1] + 1), $path);
            $line = [];
            $self = [];
            $spot2 = $spot1;
            while ($c) {
                $temp = $spot2;
                $spot2 = explode(' ', $path[$c]);
                $self_0 = $spot2[0] - $temp[0];
                $self_1 = $spot2[1] - $temp[1];
                if ($self) {
                    if ($self[0] != $self_0 || $self[1] != $self_1) {
                    } else {
                        array_pop($line);
                    }
                }
                $self[0] = $self_0;
                $self[1] = $self_1;
                $line[] = $path[$c];

                //$intersect = 0;
                //array_search(($spot2[0] - 1) . ' ' . ($spot2[1] + 1), $path) and $intersect++;
                //array_search(($spot2[0] - 1) . ' ' . $spot2[1], $path) and $intersect++;
                //array_search(($spot2[0] - 1) . ' ' . ($spot2[1] - 1), $path) and $intersect++;
                //array_search(($spot2[0] + 1) . ' ' . $spot2[1], $path) and $intersect++;
                //array_search(($spot2[0] + 1) . ' ' . ($spot2[1] - 1), $path) and $intersect++;
                //array_search(($spot2[0] + 1) . ' ' . ($spot2[1] + 1), $path) and $intersect++;
                //array_search($spot2[0] . ' ' . ($spot2[1] - 1), $path) and $intersect++;
                //array_search($spot2[0] . ' ' . ($spot2[1] + 1), $path) and $intersect++;


                $self = $path[$c];
                unset($path[$c]);
                $c = 0;
                !$c and $c = array_search(($spot2[0] - 1) . ' ' . ($spot2[1] - 1), $path);
                !$c and $c = array_search(($spot2[0] - 1) . ' ' . $spot2[1], $path);
                !$c and $c = array_search(($spot2[0] - 1) . ' ' . ($spot2[1] + 1), $path);
                !$c and $c = array_search($spot2[0] . ' ' . ($spot2[1] + 1), $path);
                !$c and $c = array_search($spot2[0] . ' ' . ($spot2[1] - 1), $path);
                !$c and $c = array_search(($spot2[0] + 1) . ' ' . ($spot2[1] + 1), $path);
                !$c and $c = array_search(($spot2[0] + 1) . ' ' . $spot2[1], $path);
                !$c and $c = array_search(($spot2[0] + 1) . ' ' . ($spot2[1] - 1), $path);
            }
            //读取当前点的颜色
            //是否为白色
            $is_bg = false;
            if (count($line) > 10) {
                $bg = explode(' ', current($line));
                if (imagecolorat($i, $bg[0] + 1, $bg[1]) > $mottled) {
                    $is_bg = true;
                }
            }
            foreach ($line as $item) {
                echo " L$item";
            }
            if ($is_bg) {
                echo "Z\" fill=\"#fff\" />";
            } else {
                echo 'Z"/>';
            }
            reset($spot);
            $spot = current($path);
        };
        echo '</g> </svg>';
        header('Content-Type: image/svg+xml');
        exit;
    }
  PHP知识库 最新文章
Laravel 下实现 Google 2fa 验证
UUCTF WP
DASCTF10月 web
XAMPP任意命令执行提升权限漏洞(CVE-2020-
[GYCTF2020]Easyphp
iwebsec靶场 代码执行关卡通关笔记
多个线程同步执行,多个线程依次执行,多个
php 没事记录下常用方法 (TP5.1)
php之jwt
2021-09-18
上一篇文章      下一篇文章      查看所有文章
加:2022-03-08 22:08:09  更:2022-03-08 22:08:20 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 11:31:44-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码