承接 vierwd/svg-inliner 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

vierwd/svg-inliner

Composer 安装命令:

composer require vierwd/svg-inliner

包简介

Utility functions to inline SVGs in PHP Projects

README 文档

README

Utility functions to inline SVGs in PHP Projects

composer require 'vierwd/svg-inliner'

This library can be used to inline SVGs in PHP project. It processes the SVGs and changes some of the content:

  • fill="transparent" should be fill="none"
  • Short-close tags can be problematic in IE 9. That's why <path d="..." /> becomes <path d="..."></path>.
  • Comments are removed
  • class-attributes are added on SVG-element with the filename as the class-name

It's also possible to combine SVGs and only output <use> tags, which reference an SVG. This makes sense, if one SVG is used multiple times. But you loose the ability to style each tag individually.

Usage

$svgInliner = new SvgInliner($defaultOptions);

// render a single SVG file and output a <use>-tag
$output = $svgInliner->renderSVGFile($pathToSvgFile, $options);

// render all SVGs which are references by <use>-tags
$allSVGs = $svgInliner->renderFullSVG();

// render a single SVG and output directly
$output = $svgInliner->renderSVGFile($pathToSvgFile, ['excludeFromConcatenation' => true]);

Options

  • excludeFromConcatenation: output the SVG directly instead of the <use>-tag. Available as default option in constructor. Defaults to false.

  • ignoreDuplicateIds: Do not throw an exception when two SVGs use the same id-attributes. Available as default option in constructor. Defaults to false.

  • removeComments: Remove all XML-comments. Available as default option in constructor. Defaults to true.

  • identifier: Identifier for the SVG. If the same identifier is used, the file will not be loaded again, but used from cache. Defaults to the lowercase filename (with special chars transformed to dash.)

  • width: Width attribute for SVG. Defaults to none and will leave attribute as-is.

  • height: Height attribute for SVG. Defaults to none and will leave attribute as-is.

  • class: Additional classes for SVG-tag. By default .svg and .svg-identifier are added.

  • external: Embed the SVG as external <use>-tag.

  • url: URL for the external SVG

External SVGs

It is possible to include SVGs as links to external SVG files:

$svgInliner = new SvgInliner($defaultOptions);

// render a single SVG file and output a <use>-tag with an external file
$output = $svgInliner->renderSVGFile($pathToSvgFile, [
	'external' => true,
	'url' => '/static/test.svg',
]);

Output:

<svg width="50" height="50" viewBox="0 0 50 50">
	<use xlink:href="/static/test.svg?912ec803#main" width="50" height="50" />
</svg>

This allows to style some parts of the SVG using CSS, but allows for the SVG to still be cachable. You can use fill and stroke for all parts of the SVG which do not have fill or stroke set. You can use color to set the color which is used as currentColor within the SVG.

Attention:

  • IE 11 does not support external SVGs in <use>-tags. You need to use a polyfill like svgxuse, if you need IE 11 support.
  • The SVG needs a tag with an id attribute. If the url option does not contain a #hash, SvgInliner automatically uses the first ID it finds within the SVG. If no ID is found, an exception is thrown.

vierwd/svg-inliner 适用场景与选型建议

vierwd/svg-inliner 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 10.22k 次下载、GitHub Stars 达 1, 最近一次更新时间为 2018 年 08 月 13 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「html」 「inline」 「svg」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 vierwd/svg-inliner 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 vierwd/svg-inliner 我们能提供哪些服务?
定制开发 / 二次开发

基于 vierwd/svg-inliner 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 10.22k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 4
  • 依赖项目数: 2
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 2
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2018-08-13