如何在网站上的SVG图片中使用自定义字体?


28

我使用Inkscape创建了一个自定义Facebook图标,并将其另存为svg。它使用与页面标题相同的字体,该页面使用字体“ ubuntutitling-bold-webfont”,我在CSS文件中将其引用为.woff。标题起作用,但是svg不起作用-它以某种默认字体显示“ f”。字体文件相对于CSS和图像文件位于../fonts/ubuntutitling-bold-webfont.woff,而相对于网页则位于fonts / ubuntutitling-bold-webfont.woff。

如何将Google Web字体嵌入到SVG中?,但我什至对如何将代码应用于SVG感到困惑。SVG可以使用CSS文件中引用的.woff字体吗?我手动更改SVG文件中字体的方式是否正确?

这是SVG的代码:

    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://creativecommons.org/ns#"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="80"
   height="80"
   id="svg2"
   version="1.1"
   inkscape:version="0.48.3.1 r9886"
   sodipodi:docname="New document 1">
  <defs
     id="defs4" />
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="1"
     inkscape:cx="26.573808"
     inkscape:cy="42.478414"
     inkscape:document-units="px"
     inkscape:current-layer="layer1"
     showgrid="false"
     fit-margin-top="0"
     fit-margin-left="0"
     fit-margin-right="0"
     fit-margin-bottom="0"
     inkscape:window-width="1619"
     inkscape:window-height="611"
     inkscape:window-x="165"
     inkscape:window-y="301"
     inkscape:window-maximized="0" />
  <metadata
     id="metadata7">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
        <dc:title></dc:title>
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     inkscape:label="Layer 1"
     inkscape:groupmode="layer"
     id="layer1"
     transform="translate(0.75006053,-981.36219)">
    <rect
       style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
       id="rect2987"
       width="70"
       height="70"
       x="4.2499394"
       y="986.36218"
       rx="10"
       ry="10" />
    <text
       xml:space="preserve"
       style="font-size:109.44319916px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:#fffffe;stroke-width:2.73607969;stroke-opacity:1;font-family:ubuntutitling-bold-webfont';-inkscape-font-specification:ubuntutitling-bold-webfont'"
       x="25.989071"
       y="1096.0118"
       id="text3757"
       sodipodi:linespacing="125%"
       transform="scale(1.0381556,0.96324674)"><tspan
         sodipodi:role="line"
         id="tspan3759"
         x="25.989071"
         y="1096.0118"
         style="stroke-width:2.73607969">f</tspan></text>
  </g>
</svg>

先感谢您。


您如何显示SVG?您是否将其作为<img>加载,是否将其嵌入为对象或内嵌显示SVG?
Ideogram

Answers:


19

您需要在该defs部分中放入CSS 。就像是:

<defs>
  <style type="text/css">
    @font-face {
      font-family: Delicious;
      src: url('../fonts/font.woff');
    }
  </style>
</defs>

2
根据我的示例github.com/marians/test-webfonts-in-svg,这不适用于当前的浏览器(2016年2月)。
玛丽安

13
如果您用于<object>嵌入svg而不是<img>,则字体会正确加载!github.com/marians/test-webfonts-in-svg/pull/1
waldyrious

2
@waldyrious对于这个提示,世界上没有足够的支持。
Scribblemacher

@waldyrious如果SVG是背景图像怎么办?
notacouch

使用<object>有一些缺点。在查看vecta.io/blog/best-to-embed-svg之后,我决定将svg标记直接插入到我的文档中。
Herman J. Radtke III

3

要在SVG文件中加载Google或任何其他外部堡垒,我们必须在defs标签中添加style标签,如下所示:

<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="246" height="272" xml:space="preserve"><desc>Your description</desc>

<defs>
<style type="text/css">@import url('http://fonts.googleapis.com/css?family=Lobster|Fontdiner+Swanky|Crafty+Girls|Pacifico|Satisfy|Gloria+Hallelujah|Bangers|Audiowide|Sacramento');</style>
</defs>

3
根据我的示例github.com/marians/test-webfonts-in-svg,这不适用于当前的浏览器(2016年2月)。
玛丽安

1

编辑:我重读了您的问题...似乎最好的选择可能是将图标中的文本转换为轮廓,因此根本不需要字体。(您可能必须检查字体许可,以查看是否可以。)

我错误地认为您有一个矢量图标,并且您正在寻找在网站上显示它的最佳方法。


我认为您有一些选择。

使用SVG图片

您可以仅将SVG用作图像本身。您将失去对旧版IE的支持,但可以将PNG或GIF换成IE8和更早的版本。还是不用担心IE8和较早的支持(取决于您的目标受众,可能是也可能不是)。

使用Font Squirrel的生成器

Font Squirrel有一个@ font-face生成器,如果您已经创建了字体,它会为您完成所有繁重的工作。

字体松鼠@ font-face生成器

使用PNG图片

为什么要使用SVG?是为了获得更好的缩放和更高的DPI支持吗?如果是这样,有办法使用CSS和PNG做到这一点。这实际上取决于您的预期用途。


我不喜欢在字体中嵌入图标。您将失去像素级控制。在某些情况下,这样做是一个不错的选择,但通常这需要付出更多的努力,却会带来更糟糕的结果。


-2
<defs>
 <style type="text/css">
 <![CDATA[
  @font-face {
    font-family: 'Fredoka One';
    font-style: normal;
    font-weight: 400;
    src: local('Fredoka One'), local('FredokaOne-Regular'), 
    url(https://fonts.gstatic.com/s/fredokaone/v7/k3kUo8kEI- 
    tA1RRcTZGmTlHGCac.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, 
    U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, 
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  ]]>
 </style>
</defs>

这是以下字体的示例。https://fonts.googleapis.com/css?family=Fredoka One Open访问字体页面并将所有内容复制到“ defs”中


2
欢迎使用GDSE!链接无处可寻,请您编辑您的答案以添加相关信息?
好奇
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.