2015-04-15 93 views
3

我使用的是Inkscape 0.91。我想使用濾鏡 - > ABC的噪點透明度效果,但它並沒有出現在這個更高版本的Inkscape中。我在網上閱讀,在更高版本中,使用「噪音填充」過濾器可以實現「噪聲透明度」效果,但它不提供所需的結果。 那麼,應該使用什麼呢?Inkscape過濾器

回答

1

我仍然使用Inkscape 0.48,所以過濾器可用。

在我的/ usr/share/inkscape/filters文件夾中有一個名爲「filters.svg」的頁面。

它裏面,我發現這些行:

<filter id="f114" inkscape:label="Noise transparency" inkscape:menu="ABCs" inkscape:menu-tooltip="Basic noise transparency texture" color-interpolation-filters="sRGB"> 
<feTurbulence type="fractalNoise" numOctaves="5" baseFrequency="0.02" result="result1" /> 
<feComposite operator="in" in2="result1" result="result2" in="SourceGraphic" /> 
<feColorMatrix result="result3" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 3 -1 " in="result2" /> 
</filter> 

也許你可以嘗試將其粘貼到自己的«filter.svg»文件,可能只是改變了id="f114"如果有衝突。

以前不要忘記備份您的文件!

+0

謝謝!它的工作:) – San

+0

很高興知道!通過這種方式,您可以使用以前版本中的所有過濾器並從當前版本中刪除。 –