产品图片缩略图
我有一个产品详细信息页面,想要显示产品图像以及产品的几个缩略图,我如何在 ASP.NET 中执行此操作?
I have a product details page and would like to show the product image along several thumbnail pictures of the product, how can I do this in asp.net?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
.NET 有一个用于生成图像缩略图的内置机制:
http://msdn.microsoft.com/en-us/library/system.drawing.image.getthumbnailimage.aspx
.NET has a built-in mechanism for generating image thumbnails:
http://msdn.microsoft.com/en-us/library/system.drawing.image.getthumbnailimage.aspx
创建一个通用处理程序,该处理程序将接收图像的唯一标识符(从数据库、文件系统或网络加载图像),使用适当的代码在通用处理程序中调整其大小(请参阅 jonfen 的答案,但我从未尝试过)它;或者用“c# resize image”点击google)并返回调整大小的图像
Create a generic handler that will receive an unique identifier for the image (to load the image, from a database, filesystem or from the web), resize it within the generic handler with appropriate code (see jonfen's answer, but I've never tried it; or hit google with "c# resize image") and return the resized image