Thank you very much Blazej, you put me on the right way!
I made a try with a green rectangle. The SVG file I get from Illstrator looks like this :
- Code: Select all
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 12.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 51448) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
<!ENTITY ns_svg "http://www.w3.org/2000/svg">
<!ENTITY ns_xlink "http://www.w3.org/1999/xlink">
]>
<svg version="1.1" id="Calque_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="286.714" height="202.429"
viewBox="0 0 286.714 202.429" overflow="visible" enable-background="new 0 0 286.714 202.429" xml:space="preserve">
<path fill="#00A33D" stroke="#000000" d="M286.214,198.929c0,1.657-1.343,3-3,3H3.5c-1.657,0-3-1.343-3-3V3.5c0-1.657,1.343-3,3-3
h279.714c1.657,0,3,1.343,3,3V198.929z"/>
</svg>
Fusion refuses to open it, no error messages, nothing...
If remove the xml definition and leave only this :
- Code: Select all
<svg version="1.1" id="Calque_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="286.714" height="202.429"
viewBox="0 0 286.714 202.429" overflow="visible" enable-background="new 0 0 286.714 202.429" xml:space="preserve">
<path fill="#00A33D" stroke="#000000" d="M286.214,198.929c0,1.657-1.343,3-3,3H3.5c-1.657,0-3-1.343-3-3V3.5c0-1.657,1.343-3,3-3
h279.714c1.657,0,3,1.343,3,3V198.929z"/>
</svg>
=> it works

! Now I have to try with a font!
This