gpt4 book ai didi

image - SVG:拉伸(stretch)图像

转载 作者:行者123 更新时间:2023-12-03 09:15:49 24 4
gpt4 key购买 nike

我正在玩 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 的中心通过“矩形”获得图像。
我的问题是:
  • 如何将图像拉伸(stretch)为矩形大小?
  • 为什么“图像”标签中的“高度”不起作用?
  • 我可以使用“拉伸(stretch)”或“调整大小”之类的转换吗?(我找不到它们)
  • 最佳答案

    设置 preserveAspectRatio="none" 在 SVG 元素上:

    <svg viewBox="0 0 500 500" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg" >

    关于image - SVG:拉伸(stretch)图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12464101/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com