convert base64Binary to pdf

后端 未结 6 1126
野趣味
野趣味 2020-12-16 14:25

I have raw data of base64Binary.

string base64BinaryStr = \"J9JbWFnZ......\"

How can I make pdf file? I know it need some conversion. Pleas

6条回答
  •  暖寄归人
    2020-12-16 15:17

    First convert the Bas64 string to byte[] and write it into a file.

    byte[] bytes = Convert.FromBase64String(base64BinaryStr); 
    File.WriteAllBytes(@"FolderPath\pdfFileName.pdf", bytes );
    

提交回复
热议问题