圆角
我想知道以编程方式为图像制作圆角的最佳方法是什么。 这可以使用 PHP 或 JavaScript。 算法也可以做同样的事情,我可以使用 Image::Magick 或 GD 对其进行编码。
感谢您的时间。
I am wondering whats the best way to programmatically make rounded corners for images. This can be either using PHP or javascript. An algorithm will also do for the same and I can code it with Image::Magick or GD.
Thank you for your time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
使用
border-radius
。
IE9+、Firefox 4+、Chrome、Safari 5+ 和 Opera 支持。
为了获得最佳的浏览器支持,您应该添加
-webkit-
和-moz-
前缀:如果您需要适用于旧版浏览器的 JavaScript 解决方案,请查看 jQuery 角</a>。
Use
border-radius
.It is supported in IE9+, Firefox 4+, Chrome, Safari 5+, and Opera.
For the best possible browser support, you should prefix with
-webkit-
and-moz-
:If you need a JavaScript solution for older browsers check out jQuery Corner.
我会使用 曲线角 或 漂亮的立方体
I'd use curvy corners or nifty cube
嗯,这取决于您到底需要什么。 您希望角是透明的,还是填充某种颜色? 哪种图像格式?
以下是制作圆角的一些帮助:
http://www.imagemagick.org/discourse- server/viewtopic.php?f=1&t=8401
检查一下,如果没有帮助,请用具体问题更新您的问题。 那么我们或许可以提供帮助:-):
Well, it depends what exactly you need. Do you want the corners to be transparent, or filled in some color? Which image format?
Here is some help for making rounded corners:
http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=8401
Check it out, and if it does not help, update your question with the specific problem. Then we can probably help :-):
您可以将上述提及的标签与 CSS 一起使用,对于 IE,使用 DDRoundies 和一些 jquery 代码以使其在 IE 中工作。 这是我必须做的才能让它发挥作用。 http://swiftmailer.org/ 网站就是一个很好的例子。 他们利用了我提到的内容。
You can use the above mention tags with CSS, and for IE, use DDRoundies with some jquery code to make it work in IE. It is what I had to do to get it working. Good example of this is http://swiftmailer.org/ site. they make use of what I mentioned.
使用 JavaScript 以编程方式获取 圆角
或者
您可以使用 mozilla 和 safaris浏览器扩展使用 CSS 实现圆角,但它仅适用于 Mozilla 和 Safari
use JavaScript to programatically get round corners
OR
you can use mozilla and safaris browser extensions to get round corners using CSS but it will work only in Mozilla and Safari
以下是两个基于 PHP 的解决方案的链接:
Here are links for two PHP based solutions:
另一个是 Thumbnailer 类。
Another one is the Thumbnailer class.