在 mvc.net c# 中显示图像

发布于 2024-09-13 10:25:44 字数 71 浏览 1 评论 0原文

我想在 mvc.net 中显示图像?帮助任何人:)...我通过 silverlight 控件上传图像并将它们存储在我的硬盘目录中

i want to display images in mvc.net? help anybody :)... im uploading images through silverlight control and storing them on directory at my hard disk

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

染墨丶若流云 2024-09-20 10:25:44

我假设您喜欢创建一个将图片提供给客户的操作,这很简单。

 public ActionResult ResizedPicture(int pictureId)
 {
   var picturePath= GetPicturePathFor(pictureId);
   return File(picturePath, "image/jpeg"); 
 }

故事是返回一个 FileResult,它们对 FileResults 有足够的重载,因此可以返回 Stream、Byte-Array 或给出文件的路径。

GetPicturePathFor() 不是 mvc 的一部分。

i assume that you like to create an action which give the picture to the client, that's easy.

 public ActionResult ResizedPicture(int pictureId)
 {
   var picturePath= GetPicturePathFor(pictureId);
   return File(picturePath, "image/jpeg"); 
 }

The Story is the return a FileResult, they are plenty overload for FileResults, so that can return an Stream, Byte-Array or give the path to a file.

GetPicturePathFor() is a not part of mvc.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文