gpt4 book ai didi

c# - base64 编码 HttpPostedFileBase

转载 作者:太空狗 更新时间:2023-10-29 22:18:48 25 4
gpt4 key购买 nike

我想用 base64 对接收到的图像进行编码 HttpPostedFileBase 以将其发送到 json 对象中,但我不知道该怎么做。 .请告诉我如何将它解码回 HttpPostedFileBase

最佳答案

我试过了,成功了

string theFileName = Path.GetFileName(YourFile.FileName);
byte[] thePictureAsBytes = new byte[YourFile.ContentLength];
using (BinaryReader theReader = new BinaryReader(YourFile.InputStream))
{
thePictureAsBytes = theReader.ReadBytes(YourFile.ContentLength);
}
string thePictureDataAsString = Convert.ToBase64String(thePictureAsBytes);

关于c# - base64 编码 HttpPostedFileBase,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31313280/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com