Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to set a backgound-image for a svg path element?

For instance, if I set the element's class to wall, the css style .wall {fill: red;} works, but .wall{background-image: url(wall.jpg)} does not, neither .wall {background-color: red;}.

share|improve this question
Showing how to set the background image for SVG text, optionally on a per-character basis: stackoverflow.com/a/10853878/405017 – Phrogz Jul 13 '12 at 20:51

1 Answer

up vote 39 down vote accepted

You can do it by making the background into a pattern:

<defs>
    <pattern id="img1" patternUnits="userSpaceOnUse" width="100" height="100">
        <image xlink:href="wall.jpg" x="0" y="0" width="100" height="100" />
    </pattern>
</defs>

Adjust the width and height according to your image, then reference it from the path like this:

<path d="M5,50
     l0,100 l100,0 l0,-100 l-100,0
     M215,100
     a50,50 0 1 1 -100,0 50,50 0 1 1 100,0
     M265,50
     l50,100 l-100,0 l50,-100
     z"
  fill="url(#img1)" />

Working example

share|improve this answer
Thank you – jbochi Sep 26 '10 at 21:33
   
very nice, does this work with base64 images too? instead of wall.jpg something like data:image/png;base64,iVBORw0KGgoAA like you would in normal CSS? – Christoph May 10 '12 at 13:55
1  
@Christoph I don't know, try it and see. – robertc May 10 '12 at 14:09
@robertc I tried and it didn't work, but i had a duplicate style element. By eliminating it, it worked just fine;) – Christoph May 10 '12 at 14:20
@robertc: I have a question regarding your answer. The pattern starts at the global coordinates (0,0). Is it possible to let the pattern use the local coordinate system from the object attached to? I want to draw a rect at different places in my svg and what happens is, that the pattern is repeated in the hole background and the objects are used as masks. – Tobias Kun Sep 17 '12 at 22:32
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.