add details for version 0.0.6

Eliot Jones
2019-01-06 11:19:41 +00:00
parent ad3c78a4bf
commit b878a97d2e

12
Home.md

@@ -30,4 +30,14 @@ December 2018:
* Adds the ability to create new PDF documents. Supports custom fonts, text, geometry and colors.
* Enables retrieval of annotation objects from within the PDF document.
* Supports writing any tokens to streams using ```TokenWriter``` enabling users to create their own document writer code if their use cases are unsupported.
* Supports correct retrieval of system fonts (fonts not included in the document but expected to be present on the user's operating system) for calculating letter sizes.
* Supports correct retrieval of system fonts (fonts not included in the document but expected to be present on the user's operating system) for calculating letter sizes.
### 0.0.6 - Cows In The North ###
TBC (~Feb 2018):
* Makes the entire content stream of the page public. This can be accessed using ```page.Operations``` which is the ordered list of the operations forming the page's content stream. There are roughly 70 operators defined as of PDF 1.7, consult the specification for details on the behavior of each one.
* Makes the content stream writable for the ```PdfPageBuilder```. This is accessed using ```builder.Advanced.Operations``` supporting the creation of any content in the page's content stream.
* Adds access to the document's AcroForm, these are forms with checkboxes, dropdowns and textboxes which support custom user input. Supports access the individual fields of AcroForms and their values. Use ```PdfDocument.GetForm()``` to access the form object. This will be ```null``` if the document does not have a form, each document contains at most 1 form.
* Adds support for .NET 4.5, .NET 4.5.1, .NET 4.5.2, .NET 6.0, .NET 6.1, .NET 6.2 and .NET 7.0 in addition to the current NET Standard 2.0 support.
* Fixes a bug where documents using Standard 14 fonts with a custom encoding couldn't be opened.
* Fixes a bug where a document with a font dictionary that does not specify /Type /Font could not be opened.