SVG:拉伸图像

时间:2012-09-17 17:13:44

标签: image svg

我正在玩SVG教程,我只是加载了这样的图像:

<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">

<svg style="stroke-linejoin:round; stroke:black; stroke-width:0.5pt; text-anchor:middle; fill:none" xmlns="http://www.w3.org/2000/svg" font-family="Helvetica, Arial, FreeSans, Sans, sans, sans-serif" height="400px" width="400px" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 250 250">
    <rect y="0" x="0" height="250" width="250" stroke="black"  stroke-width="1" fill="blue" />
    <image y="0" x="0" height="250" width="250" xlink:href="http://www.blueprintmodel.co.uk/images/DSCF1438.jpg" />
</svg>

即使高度和宽度相同,我也会在viewBox的中心,“rect”上获取图像。 我的问题是:

  • 如何将图像拉伸为rect尺寸?
  • 为什么“image”标签中的“height”不起作用?
  • 我可以使用“拉伸”或“调整大小”这样的转换吗?(我找不到它们)

2 个答案:

答案 0 :(得分:61)

在svg元素上设置preserveAspectRatio =“none”。

答案 1 :(得分:2)

也可以通过使用纯CSS缩放和更改SVG的长宽比:

transform: scale(x, y);