圆角控制
我正在寻找一个 .net 成像控件,用于在通用处理程序中处理图像。现在我正在使用 OnlineImageOptimizer,这是一个用于动态调整大小的出色组件。
我想做的就是拍一张照片,调整大小到合适的暗度,修圆角,添加阴影,然后优化成一个小的、高质量的 jpg。
有人有这样的控件的经验吗?
I'm looking for a .net imaging control to use in a generic handler to process images. Right now I'm using OnlineImageOptimizer, which is a great component for resizing on the fly.
What I would love to do is take a photo, resize to the right dims, round off the corners, throw in a drop shadow and optimize into a small, high quality jpg.
Anybody have any experince with a control to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我喜欢 ImageGlue:http://www.websupergoo.com/imageglue-1.htm
按照文档操作,您将找到一种使用 Alpha 通道的方法 - 您可以为圆角创建一个蒙版并将其应用到您的图像。
阴影可以通过 CSS 实现: http://www.alistapart.com/articles/onionskin 或使用控件: http://www.codeproject.com/KB/用户控件/ImageShadow_UserControl.aspx
I like ImageGlue: http://www.websupergoo.com/imageglue-1.htm
Follow the docs and you'll find a way for using an alpha channel -- you would create a mask for the rounded corners and apply it to your image.
Drop shadows can be achieved with CSS: http://www.alistapart.com/articles/onionskin or with a control: http://www.codeproject.com/KB/user-controls/ImageShadow_UserControl.aspx