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

I'm attempting to create a PNG from an SVG file using ImageMagick. The command I'm running is quite simple:

convert sample.svg output.png

This used to work for me, but after upgrading to a more recent version of ImageMagick (6.8.0-10), I now see any clipPath elements of the SVG as solid black.

Here's the SVG I'm using:

<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
     width="1440px" height="1440px" viewBox="0 0 1440 1440" enable-background="new 0 0 1440 1440" xml:space="preserve">
<g>
    <defs>
        <path id="SVGID_1_" d="M581.374,193.366c-11.559-4.262-22.181-1.717-27.041,0c-23.302,12.027-389.454,123.19-543.41,189.419
            c0,0.08,6.846,34.597,11.451,45.659c6.325,15.194,9.686,28.313,10.805,43.263c1.576,21.057,7.392,42.401,14.576,59.107
            c6.745,15.686,8.544,27.654,9.386,36.023C58.158,576.964,71,598,83.044,602.008c26.073,8.676,65.918-10.589,90.057-18.262
            c29.913-9.5,107.396-19.261,139.148-21.933c55.121,151.44,44.053,486.946,45.122,684.114
            c0.137,27.076-3.737,104.059,2.312,121.467c15.816,11.106,30.341,19.119,38.609,20.1c12.707,1.507,24.696,4.563,41.702,14.41
            s178.939,29.478,280.067,29.478c84.786,0,163.585-3.907,234.43-18.607c7.21-1.496,56.508-12.773,68.781-19.844
            c8.727-6.43,15.977-3.93,21.844-6.863c6.601-3.301,11.669-8.93,19.437-10.187s12.446-5.13,15.763-8.486
            c6.049-17.408,2.176-94.391,2.312-121.467c1.068-197.168,3.076-518.182,42.812-684.114
            c31.752,2.672,111.544,12.433,141.457,21.933c24.14,7.673,63.662,25.901,90.059,18.262c3.498-1.012,12.883-7.252,17.515-17.208
            c4.031-8.664,4.031-8.664,14.75-25.35c14.594-22.718,16.026-49.194,17.278-66.45s4.346-26.392,6.669-34.06
            c2.304-7.603,15.908-75.394,15.908-76.155c-136.307-79.651-307.294-94.245-461.302-153.827
            c-14.15-2.139-24.281-2.119-32.216-8.263s-38.412-21.404-49.892-27.33c-4.861-1.717-15.482-4.262-27.041,0
            C759.051,232.783,695.759,232.783,581.374,193.366z"/>
    </defs>
    <clipPath id="SVGID_2_">
        <use xlink:href="#SVGID_1_"  overflow="visible"/>
    </clipPath>
    <path clip-path="url(#SVGID_2_)" fill="#686868" d="M902.178,90.272C861.605,65.526,796.46,49.479,723,49.479
        c-76.734,0-144.401,17.508-184.459,44.151C303.101-187.516,0,378.963,0,378.963l63.947,250.488c0,0,250.551-50.075,248.302-67.638
        s1.086-17.909,8.856-45.785c18.646-66.895,75.78-191.188,248.752-263.145c5.932-2.468,7.142-5.717,18.209-7.214
        c7.933-1.502,15.837-5.782,24.092-8.508c32.642,8.466,70.488,13.307,110.841,13.307c38.453,0,74.631-4.396,106.198-12.136
        c8.167,2.75,15.342,6.507,28.31,9.601c13.621,3.854,15.046,6.772,24.277,10.908c157.246,70.443,213.364,184.775,233.196,251.008
        c9.396,31.381,13.271,27.777,10.645,51.964S1440,642.95,1440,642.95V366.964C1440,366.964,1138.155-184.83,902.178,90.272z"/>
    <g clip-path="url(#SVGID_2_)">
    </g>
</g>
</svg>

If I remove the clipPath element and it's associated link in the last path then I see the path element I want, but it's obviously the wrong shape because the clipping mask is no longer applied. Any ideas would be awesome.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.