0
我正在使用SyncFusion創建PDF並想知道如何將一個數組字節轉換爲一個在XAML/C#中的畫布上繪製的簽名到PdfBitmap。所以我可以將簽名添加到PDF文檔中。如何將byte []轉換爲PdfBitmap?
//requires stream of a file, but I only have a byte array
PdfBitmap image = new PdfBitmap(stream);
graphics.DrawImage(image, 0, 0);