Wikipedia:SVG help
SVG help Scalable Vector Graphics is a commonly used file format for providing a geometrical description of an image using basic objects such as labels, circles, lines, curves and polygons. An image can be reduced or enlarged to an arbitrary size, and will not suffer image data loss, nor will it become pixelated. SVG makes an excellent format for artwork, diagrams and drawings. SVG images are defined in XML text files. This means that they can be searched, indexed, scripted, and compressed. Since they are XML files, SVG images can be edited with any text editor, but SVG-based drawing programs are also available. However, the rendering engine used by wiki is not perfect, and may cause the image to be shown incorrectly, or differently from how it is displayed in your vector editor of choice. This page enables authors experiencing problems with SVG graphics to obtain some help in getting their images into wiki the way they intend. |
Things we can help with Understanding SVG
Using SVG appropriately
What you see is not what you get
Something new
| ||||||
Common problems[edit]Testing for problems[edit]The following SVG checkers may help you to detect SVG problems before you upload: flowRoot does not appear[edit]If black box appear, read c:User:JoKalliauer/RepairFlowRoot how to solve this issue, but do not remove those objects since they might contain text. The workarounds that one can employ are either not to use flowed text (by using the text tool without creating a text field), or convert the text to normal text (by Text-editor or sed-comand, or with Inkscape-GUI or with a Inkscape-batch), but to stroke the text using "object to path", since path-text is not recomended and increases file-size. font-family issues[edit]Rendering anomalies of small fonts in thumbnail views Fallback fonts Due to copyright restrictions, MediaWiki cannot use proprietary fonts that are commonly found on several proprietary operating systems. Fonts such as Geneva require licensing fees to distribute. rsvg will not be able to locate such fonts, and the text will fail to appear in the rendered image. There are three solutions to this issue:
For ease of subsequent editing and significantly smaller file sizes, substituting the font with an available font is recommended. Many common fonts have non-proprietary alternatives that are similar in typographical style, resulting in minimal disruption to existing images during substitution. For a list of fonts available in Wikipedia, see available fonts on Meta. Wikimedia has default fonts, and will use Liberation Serif for Times New Roman and Liberation Sans for Arial. For further fallbacks see c:Help:SVG#fallback. Fonts that are available on Wikimedia servers may or may not be available on a visitor's machine. If the placement or appearance of text in the image is important and there is uncertainty about which fonts are installed on a visitor's machine, then converting text into path information may be necessary. bad letter-alignment on small font-size[edit]Librsvg calculates the letter-distances inaccurantly for font-sizes of 20px and below. For a text like <svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<text x="20" y="30" font-size="5px">exampletext</text>
</svg>
you can replace it with: <svg viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg">
<text x="200" y="300" font-size="50px">exampletext</text>
</svg>
or with <svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<g transform="scale(0.1)"><text x="200" y="300" font-size="50px">exampletext</text></g>
</svg>
Missing embedded JPEG images[edit]When a raster graphic is embedded in an SVG it is encoded into base64 data. That data is then assigned a MIME type in the <image> element. In the case of an embedded JPEG, the MIME type is "image/jpeg". Older versions of Inkscape (and possibly other editors) assigned the MIME type "image/jpg". While Inkscape and most web browsers will display such an SVG image just fine, the MediaWiki software that rasterizes the SVG file will have trouble with it. Not recognizing the MIME type "image/jpg" there will simply be an empty space where the image is supposed to be. The fix is to open the SVG file in a text editor, find the <image> element, locate "image/jpg", change it to "image/jpeg" and re-save. At right is an example of this problem. The Commons SVG Checker looks for this problem; see Commons:Commons:Commons SVG Checker/KnownBugs#Checks for details. Though Web browsers cope with image tags without width and height specified, librsvg ignores such images. arc flags[edit]If circle-segmentes are distorted it is often due to reduced spaces between arc-to-flags, see phab:T217990 for details. Further issues[edit]Further issues can be found at c:Librsvg_bugs or at Commons:Commons:Commons SVG Checker/KnownBugs, and examples can be found at c:Category:Pictures_demonstrating_a_librsvg_bug. However most issues (for files <1MB) can be fixed using https://svgworkaroundbot.toolforge.org/ (enable "run svgcleaner" and enable "run scour" before clicking convert), for a more detailed list check c:User:SVGWorkaroundBot. Rendering files[edit]MediaWiki (the software from which Wikipedia is run) uses the librsvg-library to rasterize all of its svg files. The version of the rsvg program that is installed on wiki does not always correctly raster the Inkscape or OpenOffice.org SVG files, and does not recognize some formats in text-editor SVG files. The file manager GNOME Files or c:Commons:Commons_SVG_Checker relies on librsvg, so it can be used to check the quality before a SVG is uploaded. Rendering Inkscape files[edit]There is a simple work-around for the scarcities of librsvg. The operation "Stroke to Path", to be found under Menu>Path in Inkscape or via Ctrl+Alt+C, can be applied to all of the objects that are not rendered correctly. To keep the SVGs editable, this should only be done to the files intended for upload, and these files can be deleted afterwards. As of February 2014, the objects that must be modified to render correctly by librsvg include:
Rendering OpenOffice.org SVG files[edit]OpenOffice.org SVG files may require manual modification before being uploaded to Wikipedia. To achieve this:
NB: Vector graphics line widths may also need to be set explicitly in OpenOffice.org Draw. SVG code replacement guide (executing replace all using Nedit regular expressions)[edit]
This SVG export procedure has been tested using OO 2.3.0 and OO 3.2.1 with a simple .odg candidate. Rendering text-editor SVG files[edit]SVG files created from scratch in a text editor may make use of any valid SVG syntax, so long as your browser supports the given version of the SVG specification. On Wikipedia however, SVGs are interpreted by the librsvg-library to create PNG previews at different image sizes. That library only recognizes a subset of all valid SVG syntax, and may render your SVG without many features. In order to bypass these deficiencies in the library, there are certain parameters that need to be formatted in specific ways or be assigned a workaround value in order for librsvg to accurately render views of your SVG file. <mask> parameter maskUnits="userSpaceOnUse"[edit]The librsvg-library does not interpret the value of parameter stroke-dasharray[edit]The librsvg-library does not accept a Use xlink:href=, not href= alone, in
|
I've uploaded .xlsx (Microsoft Excel) spreadsheets that automatically generate XML code for charts in SVG format.
You simply paste or enter your data into the spreadsheet, and specify image dimensions, number of grid lines, font sizes, etc. The spreadsheet instantly and automatically generates a column of XML code that you simply copy and paste into a text editor and save as an ".svg" file. The spreadsheets produce lean SVG code, avoiding the "extra stuff" that Inkscape inserts. They should save you time in creating SVG charts.
Feedback and suggestions on my talk page are welcome. RCraig09 (talk) 23:41, 19 February 2021 (UTC)
- Warming stripes — Accepts a single dataset and converts to SVG code portraying Ed Hawkins' warming stripes graphics. User chooses vertical or horizontal stripes; normal or reverse data ordering; or from a variety of geometric shapes (updated 4 June 2021). . . . . Click here to see examples of warming stripes embedded in different shapes.
- Warming stripes bar chart — Accepts a single dataset and creates a conventional bar chart whose individual bars/columns are coloured according to Dr. Hawkins' warming stripes colour scheme. Alternate option: choose one colour for ascending bars and another colour for descending bars. (updated 27 Jan 2022)
- Line charts — Accepts up to five datasets. (updated 25 Jan 2022)
- Vertical bar charts (column charts) — Accepts up to six datasets. Toggle between clustered and stacked charts; user can adjust "Yfloor"—the Y level (usually=0) from which columns rise or fall; user chooses to keep or ignore negative input values. (updated 14 May 2022)
- Horizontal bar charts — Accepts up to six datasets. Toggle between clustered and stacked charts; user can adjust "Yfloor"—the value (usually=0) from which bars extend; user chooses to keep or ignore negative input values. (updated 27 Jan 2022)
- Scatter plots — Accepts up to five datasets. (updated 25 Jan 2022)
- Pie charts — Accepts a single dataset of up to 36 items. (updated 7 Oct 2022)
Assistance[edit]
If you have a tricky SVG file with a problem not described, or can't quite figure out what the previous section was talking about, you can simply ask for assistance by posting a quick note hereafter that outlines the problem, as well as providing links to the files that are exhibiting these problems. Don't forget to sign your name with four tilde symbols (~~~~) and an editor will attempt to reply here to help!
When you are happy that a request has been fulfilled, just leave a note so that the request can be archived later, as needed.
An alternative source of help is Commons:Graphics village pump.
Current requests[edit]
Multilingual SVG help needed[edit]
I loaded File:Gear pump exploded-ru.svg into the SVG Translate Tool, copied the Russian text over as "русский", downloaded the SVG file, replaced the text strings without systemLanguage="ru" with English equivalents, tweaked some paths, and uploaded the file as above.
- Its Commons file description page doesn't seem to recognise that it has Russian in it: there is no "Render this image in <LANGUAGE> [Go]" beneath "Open in Media Viewer". What did I miss?
- Can a multilingual SVG specify that an element not be drawn for a particular language? In this case, I want the leader lines connecting the text labels with the features to appear for all languages except for one denoting "unannotated". I could
- Use SVG symbols to draw them for each language except this one, or
- Draw a white line over the unwanted elements,
[how do I unindent this line without starting a new ordered list item?] but being able to not draw them for one case seems more elegant.
- Though the SVG Translate Tool recognises that it has two languages, it doesn't show a field for the second line of "Bushings", which needs only one line in English (and thus I set to a nonbreaking space), but two in Russian. How do I make the tool let the user edit it, yet not show anything in the default render?
Thanks,
cmɢʟee⎆τaʟκ 10:10, 5 March 2023 (UTC)
- @Cmglee: I recommend reading Commons:Maximum_file_size, which says that multilingual files above mw:Manual:$wgSVGMetadataCutoff are not fully checked for switch/systemlanguage. For this File I recommend staying below 256kB, which should avoid MediaWiki not recognizing that the file has multiple languages. — Johannes Kalliauer - contrib. 21:03, 5 March 2023 (UTC)
- @JoKalliauer: Thank you so much for reducing the file size below the 256 KB threshold. Cheers, cmɢʟee⎆τaʟκ 16:32, 6 March 2023 (UTC)
- @Cmglee: Another Workaround is to add
- @JoKalliauer: Thank you so much for reducing the file size below the 256 KB threshold. Cheers, cmɢʟee⎆τaʟκ 16:32, 6 March 2023 (UTC)
<switch>
<text systemLanguage="ru"/>
<text/>
</switch>
Stroke colour in CSS not picked up[edit]
In this SVG's CSS, I have
.pq { stroke:#cc00ff; stroke-opacity:0.5; }
path.pq { marker-start:url(#marker_p); marker-end:url(#marker_q); }
It seems the second line prevents the first line from taking effect (the stroke is black instead of the intended purple). Is this a known rsvg bug?
Thanks,
cmɢʟee⎆τaʟκ 13:13, 9 March 2023 (UTC)
- @Cmglee:This example can be simplified to
<?xml version="1.0" encoding="UTF-8"?> <svg viewBox="106.58 -407.29 298.85 86.582" xmlns="http://www.w3.org/2000/svg"> <style> .pq {stroke:#c0f} path.pq{stroke-width:5} </style> <path class="pq" d="M 112,-400 L 400,-328"/> </svg>
- It is an unrepoted bug on phab:, however it does not occur in the current librsvg-version. — Johannes Kalliauer - contrib. 17:35, 9 March 2023 (UTC)
- Thanks for your reply, @JoKalliauer. I don't understand why the thumbnail shows it as black if "it does not occur in the current librsvg-version" 🤔 cmɢʟee⎆τaʟκ 02:19, 10 March 2023 (UTC)
- @Cmglee: with current librsvg-version, I mean the latest rust-librsvg2.54 on https://gitlab.gnome.org/GNOME/librsvg/-/releases , not the outdated c-librsvg2.40 Wikimedia is currently using, see first sentence in c:Librsvg_bugs. (Sorry I used the wrong wording).
- We could report it on phab:, but since it is an upstream-bug no one cares at Wikimedia, so I consider reporting as waste of time&energy. Upstream at rust-librsvg it is not a bug any more, since it is resolved anyhow, so you “can’t” report it on https://gitlab.gnome.org/GNOME/librsvg/-/issues .
- We basically have to wait till Wikimedia is able to update their OS.
- — Johannes Kalliauer - contrib. 15:05, 10 March 2023 (UTC)
- I understand what you mean now. Thanks for explaining and checking it on top-of-tree, @JoKalliauer. Cheers, cmɢʟee⎆τaʟκ 15:16, 10 March 2023 (UTC)
- Thanks for your reply, @JoKalliauer. I don't understand why the thumbnail shows it as black if "it does not occur in the current librsvg-version" 🤔 cmɢʟee⎆τaʟκ 02:19, 10 March 2023 (UTC)