如何转换文件并将其保存在服务器上?
我想保存请求中的文件。如何更改图像的格式以及如何重命名它们?
任何人都可以向我展示代码,将图像重命名并将其格式转换为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如何检索该文件以及该文件的格式是什么?
您也许可以将其加载到 位图 中并然后使用 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.
这实际上很简单:
This is actually very easy: