AccessibilityOperation AccessibilityOperation Function. AccessibilityOperation Constructor. ABCpdf .NET PDF Library.

ABCpdf .net

 
   

AccessibilityOperation Constructor.

 

   
Syntax  

[C#]
AccessibilityOperation(Doc doc)

[Visual Basic]
Sub New(doc As Doc)

Throws Exceptions may throw Exception()

 

   

Params
 
Name Description
doc The PDF Document

 

   

Notes
 

Create an AccessibilityOperation for accessibility. If the doc is null then an exception will be raised.

 

   

Example
 

Here we read an existing PDF and make it accessible.

We produce output conformant to the PDF specification and compliant with use within Acrobat. However please note that Accessibility is not well supported outside Acrobat.

in particular some versions of software such as NVDAccess do not necessarily handle all constructs correctly. In particular they have problems with form XObjects and so one needs to avoid this type of construct.

The code below calls Page.StampFormXObjects on all pages in the document to ensure that all form XObjects are removed before the document is made accessible.

The process of stamping form XObjects will not normally make much difference. However in some cases you may find there is a level of expansion in size and very occasionally you may see subtle differences in transparency blending. Nevertheless if you want compatibility, there is no other choice.

[C#] Doc doc = new Doc();
doc.Read("spaceshuttle.pdf");
Page[] pages = doc.ObjectSoup.Catalog.Pages.GetPageArrayAll();
foreach (Page page in pages)
  page.StampFormXObjects(true); // see notes on NVDA above
AccessibilityOperation op = new AccessibilityOperation(doc);
op.PageContents.AddPages();
op.MakeAccessible();
doc.Save("accessible.pdf");

[Visual Basic]Dim doc as New Doc
doc.Read("spaceshuttle.pdf")
Page() pages = doc.ObjectSoup.Catalog.Pages.GetPageArrayAll()
foreach (Page page in pages)
  page.StampFormXObjects(true) ' see notes on NVDA above
Dim op As New AccessibilityOperation(doc)
op.PageContents.AddPages()
op.MakeAccessible()
doc.Save("accessible.pdf")