gpt4 book ai didi

c# - 使用 PDFSharp 填充 PdfRadioButtonField

转载 作者:行者123 更新时间:2023-12-04 13:22:38 25 4
gpt4 key购买 nike

我正在使用来自 http://www.pdfsharp.net 的 PDFSharp 版本 1.50.4740-beta5这是我从 NuGet 安装的。

我可以填写文本表单域和复选框表单域,但我根本无法使用单选按钮。我没有收到错误。 SelectedIndex在我设置为1前后都是-1。

Stack Overflow 上的几篇文章帮助我走到了这一步。有没有人使用这个产品成功地填充了单选按钮表单字段?这是示例 PDF 的链接:http://www.myblackmer.com/bluebook/interactiveform_enabled.pdf

(在你推荐iTextPdf之前,我已经评估过它和Aspose.PDF,它们不实用)

        //using PdfSharp.Pdf.IO;
//using PdfSharp.Pdf;
//using PdfSharp.Pdf.AcroForms;
string fileName = "x:\\interactiveform_enabled.pdf";
PdfSharp.Pdf.PdfDocument pdfDocument = PdfReader.Open(fileName);

//The populated fields are not visible by default
if (pdfDocument.AcroForm.Elements.ContainsKey("/NeedAppearances"))
{
pdfDocument.AcroForm.Elements["/NeedAppearances"] = new PdfBoolean(true);
}
else
{
pdfDocument.AcroForm.Elements.Add("/NeedAppearances", new PdfBoolean(true));
}

PdfRadioButtonField currentField = (PdfRadioButtonField)(pdfDocument.AcroForm.Fields["Sex"]);
currentField.ReadOnly = false;
currentField.SelectedIndex = 1;

pdfDocument.Flatten();
pdfDocument.Save("x:\\interactiveform_enabled_2.pdf");

最佳答案

由于这是 Google 搜索“PDFSharp radio buttons”的第一名,所以我想我会分享似乎对我有用的东西。

我为 PdfRadioButtonField 对象创建了扩展函数:

  • 获取所有选项值及其索引
  • 通过索引号设置单选字段的值
  • 按值设置单选字段的值

在以下示例中,ErPdfRadioOption 是:

public class ErPdfRadioOption
{
public int Index { get; set; }
public string Value { get; set; }
}

获取单选字段的所有可用选项


public static List<ErPdfRadioOption> FindOptions(this PdfRadioButtonField source) {
if (source == null) return null;
List<ErPdfRadioOption> options = new List<ErPdfRadioOption>();

PdfArray kids = source.Elements.GetArray("/Kids");

int i = 0;
foreach (var kid in kids) {
PdfReference kidRef = (PdfReference)kid;
PdfDictionary dict = (PdfDictionary)kidRef.Value;
PdfDictionary dict2 = dict.Elements.GetDictionary("/AP");
PdfDictionary dict3 = dict2.Elements.GetDictionary("/N");

if (dict3.Elements.Keys.Count != 2)
throw new Exception("Option dictionary should only have two values");

foreach (var key in dict3.Elements.Keys)
if (key != "/Off") { // "Off" is a reserved value that all non-selected radio options have
ErPdfRadioOption option = new ErPdfRadioOption() { Index = i, Value = key };
options.Add(option);
}
i++;
}

return options;
}

用法

PdfDocument source;
PdfAcroField field = source.AcroForm.Fields[...]; //name or index of the field
PdfRadioButtonField radioField = field as PdfRadioButtonField;
return radioField.FindOptions();

结果(JSON)


[
{
"Index": 0,
"Value": "/Choice1"
},
{
"Index": 1,
"Value": "/Choice2"
},
{
"Index": 2,
"Value": "/Choice3"
}
]

通过索引设置单选字段的选项

您可能认为这就是 SelectedIndex 属性的用途……但显然不是。


public static void SetOptionByIndex(this PdfRadioButtonField source,int index) {
if (source == null) return;
List<ErPdfRadioOption> options = source.FindOptions();
ErPdfRadioOption selectedOption = options.Find(x => x.Index == index);
if (selectedOption == null) return; //The specified index does not exist as an option for this radio field

// https://forum.pdfsharp.net/viewtopic.php?f=2&t=3561
PdfArray kids = (PdfArray)source.Elements["/Kids"];
int j = 0;
foreach (var kid in kids) {
var kidValues = ((PdfReference)kid).Value as PdfDictionary;
//PdfRectangle rectangle = kidValues.Elements.GetRectangle(PdfAnnotation.Keys.Rect);
if (j == selectedOption.Index)
kidValues.Elements.SetValue("/AS", new PdfName(selectedOption.Value));
else
kidValues.Elements.SetValue("/AS", new PdfName("/Off"));
j++;
}
}

注意:这取决于上面的 FindOptions() 函数。

用法

PdfDocument source;
PdfAcroField field = source.AcroForm.Fields[...]; //name or index of the field
PdfRadioButtonField radioField = field as PdfRadioButtonField;
radioField.SetOptionByIndex(index);

按值设置单选字段的选项


public static void SetOptionByValue(this PdfRadioButtonField source, string value) {
if (source == null || string.IsNullOrWhiteSpace(value)) return;
if (!value.StartsWith("/", StringComparison.OrdinalIgnoreCase)) value = "/" + value; //All values start with a '/' character
List<ErPdfRadioOption> options = source.FindOptions();
ErPdfRadioOption selectedOption = options.Find(x => x.Value == value);
if (selectedOption == null) return; //The specified index does not exist as an option for this radio field
source.SetOptionByIndex(selectedOption.Index);
}

注意:这取决于上面的 FindOptions()SetOptionByIndex() 函数。

基于 PDFsharp 论坛中的这篇帖子:https://forum.pdfsharp.net/viewtopic.php?f=2&t=3561#p11386

使用 PDFsharp 版本 1.50.5147

关于c# - 使用 PDFSharp 填充 PdfRadioButtonField,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48231834/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com