1

我的网站上有一个 ImageButton,它有一个动态源,它基本上看起来像这样:“data:image/svg+xml;base64,....”

所以我正在尝试使用它将图像插入到 PDF 中。这是我使用的代码

iTextSharp.text.Image image = iTextSharp.text.Image.GetInstance(new Uri(((ImageButton) FindControl(fieldKey)).ImageUrl));

我收到“URI 为空”错误或找不到路径。

任何想法如何解决这个问题?

4

1 回答 1

4

我怀疑有人会用谷歌搜索这个,但我想通了,所以为什么不发布一个答案。

要在 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));
于 2013-10-08T12:15:19.000 回答