ui-awesome/html-svg
Composer 安装命令:
composer require ui-awesome/html-svg
包简介
Fluent, immutable SVG rendering for PHP: shapes, text, gradients, filters, masks, and sanitized inline SVG.
README 文档
README
Html SVG
A robust, fluent, and immutable PHP library for generating and manipulating SVG elements.
Secure file loading, accessibility-first design, and standards-compliant rendering.
Features
Installation
composer require ui-awesome/html-svg:^0.4
Quick start
This library provides an immutable, fluent API for generating SVG markup in PHP.
It supports composing SVG elements using wrapper classes, secure SVG loading from the filesystem, and accessibility-first rendering.
Gradients + composition + immutability
use UIAwesome\Html\Svg\{Circle, Defs, LinearGradient, Stop, Svg}; $defs = Defs::tag() ->html( LinearGradient::tag() ->html( Stop::tag()->offset('0%')->stopColor('#16a34a')->stopOpacity(1), Stop::tag()->offset('100%')->stopColor('#22c55e')->stopOpacity(1), ) ->id('accent') ->x1('0%') ->x2('100%') ->y1('0%') ->y2('0%') ); $baseCircle = Circle::tag()->cx(60)->cy(60)->r(46)->stroke('#064e3b')->strokeWidth(3); echo Svg::tag() ->html( $defs, $baseCircle->fill('none')->opacity(0.25)->transform('translate(6 6)'), $baseCircle->fill('url(#accent)'), ) ->height(120) ->title('Gradient badge example') ->viewBox('0 0 120 120') ->width(120) ->render();
Yii icon (inline)
use UIAwesome\Html\Svg\{Path, Svg}; $yiiPath = <<<PATH M17.8797 0c-.8433.5448-1.8054 1.509-2.3626 2.3403-1.1685 1.7424-1.4392 2.9943-.8005 4.8628.2165.6336.5761 1.2934.8362 1.873 1.0218 2.2778 2.0625 4. 3279 1.8107 7.285 2.1603-2.7611 3.0147-3.8864 3.9253-6.57C22.54 6.1032 21.282 2.1322 17.8798 0M5.6417 4.6556c-1.1433.01-2.2877.2206-3.3819.6593-.2107 2.6576 1.0216 7.2303 5.5165 8.5057 1.8172.559 3.2721.4139 5.0555.8988v.0002c-.5755 1.016-1.4105 1.988-1.9082 2.9732-.4934.9764-.585 1.9434-.5391 3. 0428.0462 1.1054.3017 2.1896.547 3.2644.9242-.1994 1.7287-.5405 2.4247-.9767 1.8315-1.1483 2.9383-2.9849 3.2528-4.9635 0 0 .0085-.0674.0153-.1245 0 . 0057.0005.0114.0003.0171l.0054-.0617c.0003-.0049.0007-.004.001-.009.0055-.0583.0089-.1053.0137-.1605.0108-.123.0218-.2471.03-.3564.0023-.0285.0035-. 0521.0055-.0797.0085-.1166.0171-.2335.023-.3358l.0014-.0338.0003-.003c.0006-.0115.0006-.0204.0013-.0318a15 15 0 0 0 .0147-.34c.003-.1062.005-.2063. 0052-.2979l-.0002-.0115v-.0058a9 9 0 0 0-.0139-.5081c-.0088-.158-.0207-.3053-.0325-.4612-.081-1.0689-.2939-1.9498-.5285-2.6617a12 12 0 0 0-.1782-. 5023v-.0002c-.179-.4714-.3545-.8502-.4805-1.1447a7.4 7.4 0 0 0-.2747-.5688 10 10 0 0 0-.1423-.2573c-.233-.407-.4347-.6938-.435-.6931l-.1231-.1832c-2. 0257-2.8436-5.4458-4.6194-8.8755-4.5893 PATH; echo Svg::tag() ->xmlns('http://www.w3.org/2000/svg') ->viewBox('0 0 24 24') ->title('Yii') ->html(Path::tag()->d($yiiPath)->fill('currentColor')) ->render();
Loading from file (secure)
use UIAwesome\Html\Svg\Svg; // Loads, sanitizes, and injects an external SVG file. echo Svg::tag() ->class('icon-lg') ->filePath('/path/to/icon.svg') ->fill('currentColor') ->title('Icon') ->render();
Note: If both the internal content and filePath() are empty, an exception is thrown.
Bundled icon reference
use UIAwesome\Html\Svg\Svg; // Resolves a bundled icon by reference (`Collection:name`) and renders it inline. echo Svg::icon('Bootstrap5:globe') ->fill('currentColor') ->height(32) ->width(32) ->render();
Need only the resolved file path (for example to configure another component)?
use UIAwesome\Html\Svg\Svg; $component->iconFilePath(Svg::iconPath('Bootstrap5:globe'));
Note: References must match Collection:name where each segment is [A-Za-z0-9_-]+. Invalid formats, path separators, .., or references that do not resolve to a bundled SVG file throw an InvalidArgumentException.
Documentation
For detailed configuration options and advanced usage.
Package information
Quality code
Our social networks
License
ui-awesome/html-svg 适用场景与选型建议
ui-awesome/html-svg 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 12.23k 次下载、GitHub Stars 达 2, 最近一次更新时间为 2024 年 03 月 22 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「fluent」 「html」 「sanitize」 「filters」 「svg」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 ui-awesome/html-svg 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 ui-awesome/html-svg 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 ui-awesome/html-svg 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Texy converts plain text in easy to read Texy syntax into structurally valid (X)HTML. It supports adding of images, links, nested lists, tables and has full support for CSS. Texy supports hyphenation of long words (which reflects language rules), clickable emails and URL (emails are obfuscated again
Presentation and Formatting helper with nice fluent interface.
Traits gathering fluent syntax common methods
A modern, fluent HTTP client. Forked from Mashape, reimagined by Nidux, and open-sourced for the PHP community.
HTML and form generation
A fluent PHP CURL wrapper
统计信息
- 总下载量: 12.23k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 13
- 依赖项目数: 8
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2024-03-22