Jump to content

Wikipedia talk:Graphics Lab/Illustration workshop: Difference between revisions

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia
Content deleted Content added
 
(12 intermediate revisions by 5 users not shown)
Line 14: Line 14:
<!-- End Archiving Instructions Do Not Edit -->
<!-- End Archiving Instructions Do Not Edit -->
__TOC__
__TOC__

== labels not showing in preview ==
[[File:Kaktovik_digit_table.svg|thumb|Fixed]]
Hi,

Wondering if there's anything wrong with [[:File:Kaktovik digit table.svg]], or if it's just me. (I've checked on two browsers.) The SVG has labels for all 20 digits, but the previews only show the labels for 0 to 9, with 10 to 19 being blank.

[[User:Kwamikagami|— kwami]] ([[User talk:Kwamikagami|talk]]) 19:54, 10 June 2022 (UTC)
:{{done}} {{ping|Kwamikagami}} Seems to be an rsvg bug in which text with multiple x values are ignored. I've kept only the first value, and also moved the last line down for more whitespace. Please mark as resolved if it's fine now. Cheers, '''[[User:cmglee|cm&#610;&#671;ee]]'''&#9094;[[User_Talk:cmglee|&#964;a&#671;&#954;]] 07:04, 10 March 2023 (UTC)
::Perfect. Thanks! [[User:Kwamikagami|— kwami]] ([[User talk:Kwamikagami|talk]]) 08:06, 10 March 2023 (UTC)
{{resolved}}

== Outline drawing wanted for article - how do I request it? ==

I think the Wikipedia page on [[plastic bullets]] would be improved by a line illustration showing the shape and dimensions of plastic bullets used by Israeli riot control forces, illustrated in figure one of this academic paper and described on page 381 (The plastic bullet (Fig. 1) is a 5.62 mm missile, 1.5 cm long):

https://www.jtcvs.org/article/S0022-5223(19)35042-1/pdf

I can't do the job myself. Assuming that such a drawing can be prepared based on that source without falling foul of any restrictions, where and how should I ask for someone's assistance?

Thank you. [[User:Michael F 1967|Michael F 1967]] ([[User talk:Michael F 1967|talk]]) 11:22, 15 March 2023 (UTC)
: {{reply|Michael F 1967}} Go directly to [[Wikipedia:Graphics Lab/Illustration workshop]] and click on "New Request". Best wishes. —<span style="font-family:Times New Roman;font-size:100%;color:dark blue;background-color:transparent;;">[[User:RCraig09|RCraig09]] ([[User talk:RCraig09|talk]])</span> 16:08, 15 March 2023 (UTC)
::Thank you for your reply. I've clicked on "New Request" and unfortunately I need to ask for more help.
::I don't understand how to fill in the request. I'd appreciate some advice on the following (apologies for the formatting - this is the best I could do by way of displaying the wikipedia markup):
::<pre>{{subst:void|↑↑↑ !!! Don't forget to add a headline to your request !!! ↑↑↑}}</pre>
::<pre>{{GLNF|Non-free image.ext|Description of the image}}</pre>
::1) The advice: "Don't forget to add a headline to your request" - what is meant by "a headline"? And where do I enter it? In the Subject box?
::2) What am I supposed to put in this bit: GLNF|Non-free image.ext|Description of the image
::- I don't have a link to the original image file, only a link to the PDF containing the original image.
::Thank you. [[User:Michael F 1967|Michael F 1967]] ([[User talk:Michael F 1967|talk]]) 18:39, 15 March 2023 (UTC)
::: {{reply|Michael F 1967}} I copied your request to the workshop page itself. It may be several days before someone takes an interest. —<span style="font-family:Times New Roman;font-size:100%;color:dark blue;background-color:transparent;;">[[User:RCraig09|RCraig09]] ([[User talk:RCraig09|talk]])</span> 21:45, 15 March 2023 (UTC)

== Thanks ==

{{reply|Snubcube}} Re: [[Wikipedia:Graphics Lab/Illustration workshop/Archive/Jul 2016#Interference theory]] - yes, those are exactly right! I added them to [[Decay theory]]. Many thanks, and apologies for the long delay in checking on that request. -- [[User:Beland|Beland]] ([[User talk:Beland|talk]]) 23:11, 17 March 2023 (UTC)


== A tool to monitor and improve images in Wikiprojects ==
== A tool to monitor and improve images in Wikiprojects ==
Line 68: Line 33:
== How can I resize SVG images (not objects)? ==
== How can I resize SVG images (not objects)? ==


E.g. If I have a 100x100 px image, and want to reduce it to 20x20 px without any change in appearance. (Apart from stroke width, which I can set manually in Inkscape.) It's helpful to have all images in a series set to the same size, line weight, etc., for display but especially when merging them into new images.
E.g. If I have a 100x100 px image, and want to reduce it to 20x20 px without any change in appearance. (Apart maybe from stroke width, which I can set manually in Inkscape.) It's helpful to have all images in a series set to the same size, line weight, etc., for display but especially when merging them into new images.


I understand 'scale' [under 'transform'], 'fit canvas to object size', etc. in Inkscape, but those will ruin the alignment of the object on the canvass.
I understand 'scale' [under 'transform'], 'fit canvas to object size', etc. in Inkscape, but those will ruin the alignment of the object on the canvass.


If some program other than Inkscape can do this in bulk, that would be even better. I could then clean up the stroke width if I needed to in Inkscape.
If some program other than Inkscape could do this in bulk, that would be even better. I could then clean up the stroke width if I needed to in Inkscape.

BTW, I'm on Linux.


Thanks, [[User:Kwamikagami|— kwami]] ([[User talk:Kwamikagami|talk]]) 00:25, 10 April 2024 (UTC)
Thanks, [[User:Kwamikagami|— kwami]] ([[User talk:Kwamikagami|talk]]) 00:25, 10 April 2024 (UTC)

: {{reply|Kwamikagami}} Normally it would be best to ask these types of questions at [[Wikipedia:SVG help]]. However, if I understand your question correctly, you might use a text editor to try:
::: <code><g transform="translate(hhh,vvv) scale(0.2, 0.2)"> . . . </g></code>
::::: or
::: <code><g transform="scale(0.2, 0.2) translate(hhh,vvv)"> . . . </g></code>
::: where hhh and vvv are horizontal and vertical adjustments, respectively.
: Experiment with ordering of the ''translate'' and ''scale'' specifications, as this is a guess. I hope this helps. —<span style="font-family:Times New Roman;font-size:100%;color:dark blue;background-color:transparent;;">[[User:RCraig09|RCraig09]] ([[User talk:RCraig09|talk]])</span> 04:01, 10 April 2024 (UTC)
::Thanks! I'll give it a shot. [[User:Kwamikagami|— kwami]] ([[User talk:Kwamikagami|talk]]) 04:04, 10 April 2024 (UTC)

== Help with vectorizing a logo off Wikipedia ==

Hello,

I'm needing assistance with vectorizing a JPG logo outside of Wikipedia. I can't seem to get it to convert cleanly. Is someone able to assist me? Feel free to email me via wikipedia if you're able to help! Thanks in advance, [[User talk:Corkythehornetfan|<span style="font-family: Trebuchet MS; color: #231f20">'''Corky'''</span>]] 18:47, 28 July 2024 (UTC)

== Datasource issues ==

Can we please start requiring that vectorization requests cite a reliable source for the existence and usage of flags and other symbols, as opposed to [[WP:FOTW]] and other categorically unreliable vendors? There are enough fake and unverifiable flags that are tolerated on Commons for some reason, we really don't need to keep manufacturing more. <span style="border-radius:2px;padding:3px;background:#1E816F">[[User:Remsense|<span style="color:#fff">'''Remsense'''</span>]]<span style="color:#fff">&nbsp;‥&nbsp;</span>[[User talk:Remsense|<span lang="zh" style="color:#fff">'''论'''</span>]]</span> 08:00, 24 September 2024 (UTC)

Latest revision as of 17:00, 24 September 2024

Logo for Project:Graphics LabGraphics Lab/Illustration workshop

The Graphics Lab is a project to improve the graphical content of the Wikimedia projects. Requests for image improvements can be added to the workshop pages: Illustrations, Photographs and Maps. For questions or suggestions one can use the talk pages: Talk:Graphics Lab, Talk:Illustrations, Talk:Photographs and Talk:Maps.
This specific page is the discussion page for the Illustration workshop. Any comments or questions about this specific workshop may be made here. Note that requests for image improvement, etc. do not belong here but should go on the main requests page


A tool to monitor and improve images in Wikiprojects

[edit]

Hi there! I've been a wikigrpahist for some months now. I thought about a tool to find needed images in a Wikiproject and also to find low resolution images needing improvements.

I called it Visual Content Assessment Tool, or simply VCAT.

A working version of VCAT can be found at VCAT-dashboard, you can try it using one of the samples of data I already extracted, or you can extract data for any Wikiproject using the extraction tool, a command line tool I created for this purpose.

Some of the actions you can do with this tool are:

  • Monitoring the visual content coverage in a Wikiproject
  • Detecting articles needing images (eg. articles without images)
  • Detecting low resolution images to improve (eg. raster diagrams to be vectorized(

What do you think? Could it be a useful tool? MingoBerlingo (talk) 15:06, 26 July 2023 (UTC)[reply]

How can I resize SVG images (not objects)?

[edit]

E.g. If I have a 100x100 px image, and want to reduce it to 20x20 px without any change in appearance. (Apart maybe from stroke width, which I can set manually in Inkscape.) It's helpful to have all images in a series set to the same size, line weight, etc., for display but especially when merging them into new images.

I understand 'scale' [under 'transform'], 'fit canvas to object size', etc. in Inkscape, but those will ruin the alignment of the object on the canvass.

If some program other than Inkscape could do this in bulk, that would be even better. I could then clean up the stroke width if I needed to in Inkscape.

BTW, I'm on Linux.

Thanks, — kwami (talk) 00:25, 10 April 2024 (UTC)[reply]

@Kwamikagami: Normally it would be best to ask these types of questions at Wikipedia:SVG help. However, if I understand your question correctly, you might use a text editor to try:
<g transform="translate(hhh,vvv) scale(0.2, 0.2)"> . . . </g>
or
<g transform="scale(0.2, 0.2) translate(hhh,vvv)"> . . . </g>
where hhh and vvv are horizontal and vertical adjustments, respectively.
Experiment with ordering of the translate and scale specifications, as this is a guess. I hope this helps. —RCraig09 (talk) 04:01, 10 April 2024 (UTC)[reply]
Thanks! I'll give it a shot. — kwami (talk) 04:04, 10 April 2024 (UTC)[reply]

Help with vectorizing a logo off Wikipedia

[edit]

Hello,

I'm needing assistance with vectorizing a JPG logo outside of Wikipedia. I can't seem to get it to convert cleanly. Is someone able to assist me? Feel free to email me via wikipedia if you're able to help! Thanks in advance, Corky 18:47, 28 July 2024 (UTC)[reply]

Datasource issues

[edit]

Can we please start requiring that vectorization requests cite a reliable source for the existence and usage of flags and other symbols, as opposed to WP:FOTW and other categorically unreliable vendors? There are enough fake and unverifiable flags that are tolerated on Commons for some reason, we really don't need to keep manufacturing more. Remsense ‥  08:00, 24 September 2024 (UTC)[reply]