Can an SVG included in HTML with an “img” tag have a link to an external image with the “image” tag?
问题 I have the following file, image.svg, along with a file bitmap.png in the same spot on a server: <?xml version="1.0" ?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <svg width="100px" height="100px" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <image x="0" y="0" width="100px" height="100px" xlink:href="bitmap.png" /> </svg> When I go directly to the image file, it includes the bitmap.png