6
paper=Raphael('previewBody',480,480);
paper.path({"stroke-width":1},'M0,0 L480,240 L480,480 L240,480 z')
  .attr('fill','url(bg.png)'))
  .scale(.5,.5,0,0);

我的问题是填充没有用 svg 画布缩放,所以按比例,它最终是路径缩放之前大小的两倍。是否有任何简单的方法可以将填充图案与 svg 的其余部分一起缩放?

4

2 回答 2

7

请注意,仅使用 raphael 库的功能可以做到这一点。

当您在 raphael 的对象上应用缩放功能时,它会创建一个新的 svg 节点,并缩放坐标,但不幸的是,它不会修改填充属性

无论如何,当您使用 url 添加属性“填充”时,库会创建一个模式。如果它是您使用的第一个“填充”属性,则此模式称为raphael-pattern-0下一个模式raphael-pattern-1,等等...)

知道了这一点,就可以根据SVG 规范更改模式的属性

您可以使用例如获取模式的属性document.getElementById("raphael-pattern-0")并更改其属性setAttribute (取决于您真正想要做什么),它可能类似于:

var pat = document.getElementById("raphael-pattern-0");
pat.setAttribute("height", pat.getAttribute("height")*0.5);
pat.setAttribute("width", pat.getAttribute("width")*0.5);

您还可以修改、xy属性。patternUnitspatternContentUnits

希望它能回答你的问题。

于 2009-07-08T17:14:12.913 回答
3

我不知道为什么,但我的 Raphael 库版本(我使用的是最新版本)并没有像 @ThibThib 描述的那样放置 ID。可能是因为我们现在有 2013 年了:)

我也会发布我的解决方案:

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <meta charset="utf-8">
        <title>Raphael Test</title>

        <script type="text/javascript" src="js/libs/jquery.js"></script>
        <script type="text/javascript" src="js/libs/raphael.js"></script>
    </head>
    <body>
        <div id="raphael"></div>
        <script type="text/javascript">
            $(document).ready(function() {

                var raphael, path, pattern;

                raphael = Raphael(document.getElementById('raphael'), 500, 500);

                path = raphael.circle(200, 200, 180);
                path.attr('stroke', '#000000');
                path.attr('stroke-width', 3);
                path.attr('stroke-opacity', 1);
                path.attr('fill', 'url(http://3.bp.blogspot.com/_M4WdA9j-b-g/TLMF9JJJwcI/AAAAAAAAAV4/p0Y_Wo3S3sQ/s1600/Landscape1.jpg)');
                pattern = $(path.node).attr('fill');
                if(pattern) {
                    pattern = pattern.replace('url(', '').replace(')', '');
                    pattern = $(pattern);
                }

                // Shape element documentation: http://msdn.microsoft.com/en-us/library/hh846327(v=vs.85).aspx#shape_element
                // Fill element documentation: http://msdn.microsoft.com/en-us/library/bb229596(v=vs.85).aspx

                setTimeout(function() {
                    if(Raphael.vml) { // SVG not supported (IE7 & IE8) and it doesn't work :/

                        var html = $(path.node).html();
                        html = html.replace(/rvml:/g, ''); // remove prefix
                        html = html.replace(/ = /g, '=');
                        html = html.substr(html.indexOf('/>') + 2); // remove xml element

                        var src = '';
                        $(html).each(function() {
                            if($(this).prop("tagName") == 'FILL') {
                                src = $(this).attr('src');
                            }
                        });

                        if(src != '') {
                            var html = $(path.node).html();
                            html = html.replace(src, src + '" size="50,50');
                            $(path.node).html(html);
                            path.attr('stroke', '#000000');
                            path.attr('stroke-width', 3);
                            path.attr('stroke-opacity', 1);
                        }
                    }
                    else { // SVG supported and it prints correct URL
                        $(pattern)[0].setAttribute('width', 50);
                        $(pattern)[0].setAttribute('height', 50);
                        $(pattern).find('image')[0].setAttribute('width', 50);
                        $(pattern).find('image')[0].setAttribute('height', 50);
                        $(pattern).find('image')[0].setAttribute('preserveAspectRatio', 'defer none meet');
                    }
                }, 1000);
            });
        </script>
    </body>
</html>

注意几点:

  • 此处描述了访问 VML 填充图像:How to access Raphael fill image in VML

  • 更改图像大小后,我不得不为 VML 版本重置笔画

  • 由于某种原因 jQuery.attr对我不起作用,所以我使用了setAttribute(Chrome)

  • 我设置preserveAspectRatio为实现与 VML 相同的效果。如果您想查看差异,可以禁用它(请参阅文档

  • setTimeout用于等待加载图像,因为 SVG 在加载图像后设置参数,它覆盖了我的大小更改

您当然也可以使用不同的设置进行游戏:

VML 填充元素文档

SVG 模式

SVG 图像元素

于 2013-01-17T04:34:17.627 回答