admin管理员组文章数量:1344225
I'm using the Raphael JavaScript library. I'd like to draw a border with rounded edges around an image (which is a Raphael object) but I can't seem to figure out how to do that. I tried to set a stroke but it doesn't appear.
I have this:
var paper = Raphael(10, 50, 500, 500);
var google_img = paper.image(".png", 10, 10, 200, 200);
Appreciate any help I can get!
I'm using the Raphael JavaScript library. I'd like to draw a border with rounded edges around an image (which is a Raphael object) but I can't seem to figure out how to do that. I tried to set a stroke but it doesn't appear.
I have this:
var paper = Raphael(10, 50, 500, 500);
var google_img = paper.image("http://www.google./images/logos/ps_logo2.png", 10, 10, 200, 200);
Appreciate any help I can get!
Share Improve this question asked Oct 25, 2010 at 20:36 MarcMarc 1711 gold badge2 silver badges3 bronze badges2 Answers
Reset to default 11How about using image as a fill:
var paper = Raphael(10, 50, 500, 500);
paper.rect(10, 10, 364, 126, 20).attr({
fill: "url(http://www.google./images/logos/ps_logo2.png)",
"stroke-width": 2
});
I think you are talking about a clipping path. Check out Clipping path on Wikipedia. A short Google away, I found some unfortunate news from Raphaël's Google Group:
A raphael application must run in internet explorer without plugins. [Clipping paths] are available in SVG, but internet explorer doesn't support svg. Instead it uses the propietary microsoft VML "standard" (http://msdn.microsoft./en-us/library/bb263898(v=VS.85).aspx)
So in summary (IMHO) raphael only "can be inside" the intersection of svg operations and VML operations.
(From Does RaphaelJS support clipping masking positing?, post by Sebastian Gurin).
Check out the thread if you are interested in using a plugin to enable clipping in browsers that support it.
Alternatively, you could try drawing an unfilled, stroked rectangle with the same dimensions at the same location as the image, but with the r
attribute of the image set, and the stroke-width
large enough to pensate for the radius (note that this may result in hiding the extremities of the image).
本文标签: javascriptPaint rounded border around image using RaphaelStack Overflow
版权声明:本文标题:javascript - Paint rounded border around image using Raphael - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743730228a2529055.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论