Commons:Graphics village pump

From Wikimedia Commons, the free media repository
Jump to navigation Jump to search

Shortcut

color palette logo WELCOME TO THE GRAPHICS VILLAGE PUMP!

This Graphics village pump aims to be technical support forum for all the local Labs, graphists (graphic artists), and volunteers interested in graphic works, and is a page where graphists and users from all the Labs can talk about graphics, tutorials, graphic software, help to build new Graphic Labs, etc. Also for exchanging opinions, ideas, protocols, and ways of improvement.

See also: Graphics abilities page | Graphic Tool | Project Insignia | Stroke Order Project | Current requests/discussions


To have the opinion of graphists check

Illustration Workshop   Map Workshop   Photography Workshop   Video and Sound Workshop

Graphics village pump archives
Monthly archives
2007 Apr May Jun Jul Aug Sep Oct Nov Dec
2008 Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
2009 Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
2010 Jan Feb Apr May Jun Jul Aug Sep Oct Nov Dec
2011 Jan Feb Mar Apr May Jun Jul Aug Sep Oct Dec
2012 Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
2013 Jan Feb Mar Apr May Jun Jul Aug Sep Oct Dec
2014 Jan Feb Mar Apr May Jul Aug Sep Oct Nov Dec
2015 Jan Mar Apr May Jun Jul Sep Oct Nov Dec
2016 Jan Feb Mar Apr May Jun Jul Aug Sep Nov Dec
2017 Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
2018 Jan Feb Mar May Jun Jul Aug Sep Nov Dec
2019 Jan Feb Mar Apr May Jun Jul Aug Sep Nov Dec
2020 Jan Feb Mar Apr May Jun Jul Aug Sep
2021 Mar Apr Jun Jul Aug Sep
2022 Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
2023 Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
Topic-specific archives

SVG Grafik wird nicht angezeigt

[edit]

Hallo zusammen, könnte sich bitte einmal jemand diese SVG ansehen? In mehreren Browsern wird diese nicht dargerstellt. Ein Reset auf die Version vom 13.10.2018 war nicht erfolgreich, obwohl in der Versionsgeschichte das noch erfolgversprechend aussah. Ich danke euch! --An-d (talk) 20:09, 25 July 2024 (UTC)[reply]

1 April 2019 version uses an undefined namespace (xlink). The SVG is broken. I added the xlink namespace. Glrx (talk) 20:34, 25 July 2024 (UTC)[reply]
Now the file displays sometimes but not others. I'm getting "too many requests" errors, so it may be transient. Glrx (talk) 20:52, 25 July 2024 (UTC)[reply]
FYI: The 20:35 and 20:37 versions do not display for me, either, even after flushing cache and refreshing. (Chrome Version 126.0.6478.183) RCraig09 (talk) 21:19, 25 July 2024 (UTC)[reply]
Yes, now they are consistently not displaying after flushing wiki and local caches. Glrx (talk) 21:35, 25 July 2024 (UTC)[reply]
Agreed. Though I'm not sure what "flushing wiki (cache?)" means... not just my browser cache. RCraig09 (talk) 22:19, 25 July 2024 (UTC)[reply]
Flush wiki cache: file?action=purge. Tell the servers to purge their cached PNGs. Force the wiki servers to recreate PNGs. Glrx (talk) 22:35, 25 July 2024 (UTC)[reply]
PNGs seem to be working now. For instance,
Glrx (talk) 22:37, 25 July 2024 (UTC)[reply]

Issues with E-road shields (Tabliczka set)

[edit]

The text of the E-road shields that use the "Tabliczka" format have suddenly become offset to the left: they used to be centred until recently. I wonder what is causing the error, and I also ask who has time to correct the alignment of all 263 shields in the set? (I am currently busy on other parts of Wikipedia) Best, --Minoa (talk) 02:51, 30 July 2024 (UTC)[reply]

@Minoa: Apparently the SVG renderer doesn't position non-uniformly scaled text correctly. I.e. there is a transform="scale(0.907522,1.101902)" attribute in the <text> node and removing it makes the text render in the same location as in Inkscape or in the browser.
I don't remember whether this is a known bug and I don't see an elegant way to fix this. If we simply move the text to the right, it'll be too far to the right once the bug is fixed. If we do remove the transform and adjust the position, the characters will have a less narrow shape. Converting the text to paths would solve the rendering issue, but it's just not elegant. TilmannR (talk) 15:41, 30 July 2024 (UTC)[reply]
The svg code could be greatly shortened to basic rectangle and text elements, avoiding the sodipodi and other declarations and complications that Inkscape introduced. But with 263 member files in this category, avoiding the rendering problem would be a grueling task. I'd be willing to do a prototype/model file for someone with more time and patience, though I'm not sure which font I should use in place of the disfavored fond-family, Arial. You might also seek advice at WP:SVG help] at en.WP. RCraig09 (talk) 16:47, 30 July 2024 (UTC)[reply]
For the record, I tried to reduce the size of the file and successfully validate the SVG code at File:Tabliczka E75.svg and File:Tabliczka E951.svg, but it appears that rsvg is scaling the text towards the left despite the text-anchor="middle" instruction. While it may be tempting to suggest modifying the view-box to have (0,0) at the middle, such a workaround is not possible for something like File:Integral image application example.svg. --Minoa (talk) 08:22, 31 July 2024 (UTC)[reply]
I believe TilmannR has diagnosed the issue. I believe the mechanism is as follows. RSVG is asked to center the text. It calculates the width of the text without scaling. Say that is 400 pixels. It then takes 1/2 that value to compute the starting point; the starting point is then 200 pixels left of the anchor point. Then it paints the text, but the scaling is applied while painting. If the scale factor is 0.9, then the text will be 360 pixels wide. The text will appear shifted to the left by 20 pixels. (If the scaling is 1.1, then the text would appear shifted to the right.)
It is a bug in the renderer, so I would ask WMF to fix the renderer rather than tweak the SVG. Fix stuff where it is broken. One check would be whether this bug is present in the most recent version of RSVG.
If the SVG is worked around, I suspect using an x scale factor of 1.0 would avoid the bug; the y scale factor could be different from unity.
Glrx (talk) 14:58, 31 July 2024 (UTC)[reply]
x scale > 1, y scale = 1 does shift to the right. x scale = 1, y scale > 1 does not do as I expect (shifts to the left!).
Glrx (talk) 15:32, 31 July 2024 (UTC)[reply]

I wish to ask if there is already a Phabricator report for this issue? --Minoa (talk) 15:36, 31 July 2024 (UTC)[reply]

User:JoKalliauer diagnosed this problem in Phab:T370044. Glrx (talk) 17:14, 31 July 2024 (UTC)[reply]
See also: https://gitlab.gnome.org/GNOME/librsvg/-/issues/1109 (titled: transform of Text in Pattern with text-anchor="middle" not centered). I hope that they will correct the issue soon because I have a plan to compact and validate the SVGs in the Tabliczka set. --Minoa (talk) 09:24, 4 August 2024 (UTC)[reply]
For the record, I have marked this topic as active (using {{DNAU}}) until the issue is fixed. The impact of the bug is substantial, because my plan to upload optimised SVG E-road shields has been postponed until I know for sure how the Wikimedia Commons will render them. --Minoa (talk) 07:41, 24 August 2024 (UTC)[reply]
@Minoa: Support for condensed fonts is mixed, but I got a reasonable result with
  <text
     style="font-size:84px;font-weight:bold;font-stretch:condensed;text-align:center;text-anchor:middle;fill:#ffffff;font-family:sans-serif"
     x="105"
     y="95"><tspan>E002</tspan></text>
See File:Test.svg 2024-08-24 15:45
Glrx (talk) 15:56, 24 August 2024 (UTC)[reply]
Note: Similar issues have been reported on
  1. http://en.wikipedia.org/w/index.php?title=Wikipedia:SVG_help&diff=prev&oldid=1232861961
  2. http://commons.wikimedia.org/w/index.php?title=User_talk%3ACmglee&diff=905204964
cmɢʟee ⋅τaʟκ 00:59, 31 July 2024 (UTC)[reply]

Retouched or wierd artifacts?

[edit]

File:Катер специального назначения П-474 695 на дне ВМФ 2024.jpg, taken during the annual Russian military parade in Sankt Petersburg 2024 has some ominous stuff going on. The blueshirt crewmen fourth and six from the left seem to have other parts of the image blended over them, same can be spotted near the stern of the ship, where the rigid inflatable boat is stored. I am well aware of an increased need for security measures concerning publications during wartime, but whatever they tried to hide here - it could have been done less sloppy. Or could this just be a technical phenomenon, linked to converting an image file or some graphic software? Alexpl (talk) 13:07, 1 August 2024 (UTC)[reply]

@Alexpl: I cannot imagine that this is a technical problem. Specifically the bit under the crane is not simply a circle, but looks like a lightly feathered stroke with a clone brush. TilmannR (talk) 04:21, 4 August 2024 (UTC)[reply]
@TilmannR: Yes, that seems to be what the uploader used - in a random and incomprehensible fashion. Alexpl (talk) 13:08, 4 August 2024 (UTC)[reply]
@Alexpl: Perhaps they edited the image accidentally and didn't notice.
@Okras: Hi. Thanks for uploading the image of that interesting-looking ship. Do you have a version without the edits? Or is there a reason for why it was edited? TilmannR (talk) 19:29, 5 August 2024 (UTC)[reply]
@TilmannR:File:Малый ракетный корабль Одинцово 584 на дне ВМФ 2024.jpg has the same stuff in it. Mostly on that roof on the left. Alexpl (talk) 20:45, 5 August 2024 (UTC)[reply]
@Alexpl, sorry, these are indeed artifacts from the heal brush. I had to remove traces of dust from the camera matrix. I did this in batches in Lightroom, but did not notice that it was not done correctly everywhere. Now I have corrected this and several other images.Okras (talk) 08:56, 6 August 2024 (UTC)[reply]

The XML in the uploaded file could not be parsed

[edit]

I'm trying to upload a new version of File:Sieve of Eratosthenes animation.svg, but every time I try to do it I'm getting "The XML in the uploaded file could not be parsed". I'm just adding <text systemLanguage="pt" xml:lang="pt" x="356" y="29" style="font-size:12px">Números primos</text>. Vinickw 17:00, 3 August 2024 (UTC)[reply]

xml:lang is not needed, and each string set must be in a switch tag, e.g.
<switch>
 <text systemLanguage="pt" x="356" y="29" style="font-size:12px">Números primos</text>
 <text x="356" y="29" style="font-size:12px">Prime numbers</text>
</switch>
Good luck, cmɢʟee ⋅τaʟκ 17:16, 3 August 2024 (UTC)[reply]
The last file upload was in 2015. If I try to upload the file, I get the same error you did. The SVG validates except for 3 minor errors. I believe the file is being rejected for using set. A security scan (added since 2015) probably sees that element and gives up. It is worried that somebody might do malicious things with it. I will need to look further. Glrx (talk) 18:18, 3 August 2024 (UTC)[reply]
@Glrx: You mean all those 179 sets? I don't even know how asvg works, and the rsvg's thumb doesn't even display as intended, so I think I'm not going to fix this. Just converting it to a gif will do the trick. Even though, thanks. Vinickw 19:39, 3 August 2024 (UTC)[reply]
set is a SMIL tag used for interactive SVG and shouldn't cause trouble unless the parser is broken. cmɢʟee ⋅τaʟκ 20:06, 3 August 2024 (UTC)[reply]
P.S. File:Comparison of notable bridges SMIL.svg for example, uses set and works fine. cmɢʟee ⋅τaʟκ 20:14, 3 August 2024 (UTC)[reply]
I've used SMIL animation, too.
I edited the file a little and then tried to upload to File:Test.svg. I get the error "%error_body_content%". Glrx (talk) 23:47, 3 August 2024 (UTC)[reply]
Phab:T371424 for %error_body_content%. Glrx (talk) 23:51, 3 August 2024 (UTC)[reply]
I did some minor cleanup (title and desc elements; remove CDATA; add spaces to CSS; promote some text attributes to the switch) , added pt, and was able to upload the file. Glrx (talk) 00:24, 4 August 2024 (UTC)[reply]
I can upload the previous version (no changes), too. I do not see what was broken. Glrx (talk) 00:33, 4 August 2024 (UTC)[reply]
The file was UTF-16. I wonder if WMF's XML parser cannot handle that or if a BOM was missing. Glrx (talk) 02:55, 4 August 2024 (UTC)[reply]
Well done with the debugging, Glrx!

Some "HS icons" SVG files are broken

[edit]

Hello, I noticed that some SVG files in Category:HS icons (namely File:HSContribs.svg, File:HSEmail.svg, File:HSHome.svg and File:HSSubpages.svg) are broken. Browser complains about some undefined namespaces. Od1n (talk) 18:22, 3 August 2024 (UTC)[reply]

The SVG files are broken. They must define the namespaces. WMF's old rasterizer used to ignore missing namespaces, but that's the wrong thing. https://www.w3.org/TR/xml-names/ says
Namespace constraint: Prefix Declared
The namespace prefix, unless it is xml or xmlns, MUST have been declared in a namespace declaration attribute in either the start-tag of the element where the prefix is used or in an ancestor element (i.e., an element in whose content the prefixed markup occurs).
Glrx (talk) 18:33, 3 August 2024 (UTC)[reply]
@Od1n: I added xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" to the <svg> tags of the files. Alternatively one could have removed all attributes that start with sodipodi: or inkscape: from the files. TilmannR (talk) 04:07, 4 August 2024 (UTC)[reply]

SVG file not appearing, Argentina arms

[edit]

Hiya! This file is not appearing correctly for me. It shows fine when I go to the file's direct link, instead of its description page, and as far as I am aware, this isn't only an issue on my end. I couldn't see it appearing correctly in previous versions, either, but it is used on several projects, so it has surely worked at some point. Is there any way to fix this? Is this a known issue? I'm not super-knowledgeable about SVG files or where to report issues like this on Commons, so I hope I'm asking in the right place! EdoAug (talk) 03:29, 6 August 2024 (UTC)[reply]

How can I add an image without a frame with a description text?

[edit]

I have tried to do it but I don't know how:

Emblem of the Dominican Republic Armed Forces

Is this the correct code to do it??????????

please help Risantana (talk) 11:13, 8 August 2024 (UTC)[reply]

File:Micronesian languages.en.svg

[edit]

At File:Micronesian languages.en.svg, the file has a code error. I am unable to fix it because I don't have SVG. It seems to be related to User:Rillke/SVGedit.js code. Tbhotch 05:43, 15 August 2024 (UTC)[reply]

looks like a namespace issue:
  • error on line 5 at column 57: xmlns:i: '&#38;#38;#38;#38;#38;#38;#38;ns_ai;' is not a valid URI
Fixed it (at least so my browser does not complain), but WMF rasterizer may be throttled right now.
Glrx (talk) 16:13, 15 August 2024 (UTC)[reply]

Tweaking Map of Ukraine (pro-Russian protests).svg

[edit]

We've identified a couple of issues with the underlying data, could someone change the colours?

Region Now Should be Comments
Kharkiv 500+ #c00000 (10,000+) Per The Donbas Conflict in Ukraine: Elites, Protest, and Partition, p. 89
Zaporizhzhia 5,000+ Striped #ff4040/#fdd5b1 (<500/5,000+) Per Korrespondent which offers two estimates

  10,000+    5,000+    1,000+    500+    <500. Alaexis (talk) 17:54, 24 August 2024 (UTC)[reply]

SVG and Commons:GlobalReplace

[edit]

If I convert a widely-used raster image to SVG, is there a way of replacing the original on the various wikis without having to go and do every one by hand? Some of these have over a hundred uses. Help:SVG refers me to Commons:GlobalReplace, which says it's no longer in use; it refers me on to User:Perhelion/justReplace.js, which says I need filemover rights, without any clue as to how I should get them. What do I do next? Marnanel (talk) 15:00, 1 September 2024 (UTC)[reply]