使用 iText 将图像数据输入为 PDF
本文关键字:输入 PDF 数据 图像 iText 使用 | 更新日期: 2023-09-27 18:34:17
我的网站中有一个ImageButton,它有一个动态源,基本上看起来像这样:"data:image/svg+xml;base64,...."
所以我正在尝试使用它将图像插入到 PDF 中。这是我使用的代码
iTextSharp.text.Image image = iTextSharp.text.Image.GetInstance(new Uri(((ImageButton) FindControl(fieldKey)).ImageUrl));
我要么收到"URI 为空"错误,要么找不到路径。
有什么想法吗?
我怀疑有人会谷歌这个,但我想通了,所以为什么不发布一个 anwser。
要在 PDF 中实现数据 img 类型,请删除前缀部分,然后将其从 base 64 转换回数组字节。
string theSource = ((ImageButton)FindControl(fieldKey)).ImageUrl.Replace("data:image/png;base64,", "");
iTextSharp.text.Image image = iTextSharp.text.Image.GetInstance(Convert.FromBase64String(theSource));