如何转换文件并将其保存在服务器上?

发布于 2024-11-07 15:13:19 字数 90 浏览 0 评论 0原文

我想保存请求中的文件。如何更改图像的格式以及如何重命名它们?

任何人都可以向我展示代码,将图像重命名并将其格式转换为 PNG 并将其保存在服务器上吗?

I want to save a file from a request. How can I change the format of an image and how can I rename them?

Can anyone show me code to rename and convert the format of an image to PNG and save them on server?

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

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

发布评论

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

评论(2

动听の歌 2024-11-14 15:13:19

如何检索该文件以及该文件的格式是什么?

您也许可以将其加载到 位图 中并然后使用 Bitmap.Save(String, ImageFormat) 方法保存它。您还可以在此处指定文件的名称。

How do you retrieve the file and what format is the file in?

You might be able to load it into a Bitmap and then save it using the Bitmap.Save(String, ImageFormat) method. There you can specify the name of the file as well.

白龙吟 2024-11-14 15:13:19

这实际上很简单:

// Load the image.
    System.Drawing.Image image1 = System.Drawing.Image.FromFile(@"C:\test.bmp");

    // Save the image in JPEG format.
    image1.Save(@"C:\test.jpg", System.Drawing.Imaging.ImageFormat.Jpeg);

    // Save the image in GIF format.
    image1.Save(@"C:\test.gif", System.Drawing.Imaging.ImageFormat.Gif);

    // Save the image in PNG format.
    image1.Save(@"C:\test.png", System.Drawing.Imaging.ImageFormat.Png);  

This is actually very easy:

// Load the image.
    System.Drawing.Image image1 = System.Drawing.Image.FromFile(@"C:\test.bmp");

    // Save the image in JPEG format.
    image1.Save(@"C:\test.jpg", System.Drawing.Imaging.ImageFormat.Jpeg);

    // Save the image in GIF format.
    image1.Save(@"C:\test.gif", System.Drawing.Imaging.ImageFormat.Gif);

    // Save the image in PNG format.
    image1.Save(@"C:\test.png", System.Drawing.Imaging.ImageFormat.Png);  
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文