File talk:Flag of Tanzania.svg

出自Wikimedia Commons
跳至導覽 跳至搜尋

Svg code structure[編輯]

Flag colors

InfoField
  #1eb53a
  #00a3dd
  #fcd116
  #000
 
SVG檔案的原始碼通過W3C驗證
 

原始碼

InfoField

SVG code

<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="900" height="600" viewBox="0 0 72 48">
<circle fill="#1eb53a" r="55"/>
<path fill="#00a3dd" d="m2,48h70V9"/>
<path stroke="#fcd116" stroke-width="19" d="m0,48L72,0"/>
<path stroke="#000" stroke-width="13" d="m0,48L72,0"/>
</svg>
275 bytes


FDRMRZUSA had the idea to clip the drawing - a complete useless action, it changes nothing

With the clipping code

<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="900" height="600" viewBox="0 0 72 48">
<title>Flag of Tanzania</title>
<clipPath id="c">
	<path d="m0,0h73v48H0"/>
</clipPath>
<g clip-path="url(#c)">
	<path fill="#1eb53a" d="m0,48V0h72"/>
	<path fill="#00a3dd" d="m72,0v48H0"/>
	<path stroke="#fcd116" stroke-width="19" d="m0,48L72,0"/>
	<path stroke="#000" stroke-width="13" d="m0,48L72,0"/>
</g>
</svg>
424 bytes


The newly added text was transferred from the main page of the file and its author is the user Sarang.