关于C#:如何将byte[]转换为pdfitmap?

How to convert byte[] to PdfBitmap?

本问题已经有最佳答案,请猛点这里访问。

我正在使用SyncFusion创建pdf,我想知道如何将在xaml/c中画布上绘制的签名的数组字节转换为pdfitmap。所以我可以在PDF文档中添加签名。

1
2
3
//requires stream of a file, but I only have a byte array
PdfBitmap image = new PdfBitmap(stream);
graphics.DrawImage(image, 0, 0);

你可以在@patrick mcdonald comment中找到答案。但是,为了进一步参考,这里是您需要的:

1
2
3
Stream stream = new MemoryStream(byteArray);
PdfBitmap image = new PdfBitmap(stream);
graphics.DrawImage(image, 0, 0);