当前位置: 首页>编程语言>正文

c# - - - pdf 文件转 base64 字符串

c# - - - pdf 文件转 base64 字符串

pdf 文件转 base64 字符串

1.1 pdf 文件转 base64 字符串

// 读取 pdf 文件转 base64 字符串
byte[] bytes = System.IO.File.ReadAllBytes("测试.pdf");
string base64String = Convert.ToBase64String(bytes);
Console.WriteLine(base64String);

效果:

c# - - - pdf 文件转 base64 字符串,image.png,第1张

1.2 base64 字符串转 pdf 文件

string base64String = "JVBERi0xLjcKJcKzx9gNCjM...";
// 保存为 pdf 文件
byte[] pdf =  Convert.FromBase64String(base64String.Replace("data:application/pdf;base64,", "")); // 去除 base64 字符串中可能存在的数据 URI 前缀
File.WriteAllBytes("new.pdf", pdf);

https://www.xamrdz.com/lan/5fp1957290.html

相关文章: