Skip to content

Commit 00e30ff

Browse files
authored
Merge pull request #337 from aspose-pdf/PDFNET_58390_Update_ZUGFeRD
fix: 3u to 3b
2 parents 414fa99 + de3d13f commit 00e30ff

File tree

1 file changed

+3
-3
lines changed
  • net/advanced-operations/working-with-zugferd/attach-zugferd

1 file changed

+3
-3
lines changed

net/advanced-operations/working-with-zugferd/attach-zugferd/_index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ sitemap:
1616
"@type": "TechArticle",
1717
"headline": "Creating PDF/3-A compliant PDF and attaching ZUGFeRD invoice in C#",
1818
"alternativeHeadline": "Attach ZUGFeRD Invoices to PDF in C#",
19-
"abstract": "Discover the new functionality that allows developers to generate PDF documents compliant with PDF/A-3U and seamlessly attach ZUGFeRD invoices using C#. This feature simplifies the process of embedding invoice metadata in PDF files, ensuring long-term document preservation and compliance with electronic invoicing standards",
19+
"abstract": "Discover the new functionality that allows developers to generate PDF documents compliant with PDF/A-3B and seamlessly attach ZUGFeRD invoices using C#. This feature simplifies the process of embedding invoice metadata in PDF files, ensuring long-term document preservation and compliance with electronic invoicing standards",
2020
"author": {
2121
"@type": "Person",
2222
"name": "Anastasiia Holub",
@@ -87,7 +87,7 @@ We recommend following steps to attach ZUGFeRD to PDF:
8787
* Create a [FileSpecification](https://reference.aspose.com/pdf/net/aspose.pdf/filespecification/) object by providing the path and description of another file named "factur-x.xml", which contains invoice metadata conforming to the ZUGFeRD standard.
8888
* Add properties to the file specification object, such as the description, MIME type, and AF relationship. The AF relationship indicates how the embedded file is related to the PDF document. In this case, it is set to "Alternative", meaning the embedded file is an alternative representation of the PDF content.
8989
* Add the file specification object to the document's embedded files collection. File name should be specified to ZUGFeRD standard, e.g. "factur-x.xml".
90-
* Convert the document to PDF/A-3U format, a subset of PDF that ensures the long-term preservation of electronic documents. PDF/A-3U allows embedding files of any format in PDF documents.
90+
* Convert the document to PDF/A-3B format, a subset of PDF that ensures the long-term preservation of electronic documents. PDF/A-3B allows embedding files of any format in PDF documents.
9191
* Save the converted document as a new PDF file (e.g. "ZUGFeRD-res.pdf").
9292

9393
```cs
@@ -112,4 +112,4 @@ using (var document = new Aspose.Pdf.Document(dataDir + "ZUGFeRD-test.pdf"))
112112
}
113113
```
114114

115-
The convert method takes a stream, a PDF format, and a convert error action as parameters. The stream parameter can be used to save the conversion log. The convert error action parameter specifies what to do if any errors occur during the conversion. In this case, it is set to "Delete", which means that any elements that are not compliant with the PDF/A-3U format will be deleted from the document.
115+
The convert method takes a stream, a PDF format, and a convert error action as parameters. The stream parameter can be used to save the conversion log. The convert error action parameter specifies what to do if any errors occur during the conversion. In this case, it is set to "Delete", which means that any elements that are not compliant with the PDF/A-3B format will be deleted from the document.

0 commit comments

Comments
 (0)