本文介绍了如何将缓冲区转换为pdf并下载的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用c#代码将文件流中的数据转换为pdf,并使用c#代码和

下载。



我尝试过:



 byte [] fileContents = Docx(); 
using(FileStream file = new FileStream(wordPath,FileMode.Create))
{
file.Write(fileContents,0,fileContents.Length);
file.Close();
}





i希望将fileContents中的数据转换为pdf

解决方案



How to convert the data in the file stream to pdf with out any plugin using c# code and
download.

What I have tried:

byte[] fileContents = Docx();
         using (FileStream file = new FileStream(wordPath, FileMode.Create))
         {
             file.Write(fileContents, 0, fileContents.Length);
             file.Close();
         }



i want to convert the data in fileContents to pdf

解决方案



这篇关于如何将缓冲区转换为pdf并下载的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-18 15:57