2016-07-17 70 views
0

我明白所有的矢量圖(甚至其他)都是由代碼組成的。我想知道是否有可能檢查相同的代碼。例如,如果我有一個.svg或.eps格式的矩形,我該如何檢查這個矩形的代碼?是否可以檢查矢量設計的代碼?

回答

0

嘗試打開它在文本編輯器?

例如,this image應該是這樣的:

<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100%" height="100%" viewBox="0 0 100 100"> 

<title>SVG Logo</title> 

<a xlink:href="http://www.w3.org/Graphics/SVG/" target="_parent" 
xlink:title="W3C SVG Working Group home page"> 

    <rect 
    id="background" 
    fill="#FF9900" 
    width="100" 
    height="100" 
    rx="4" 
    ry="4"/> 

... 
相關問題