Skip to main content

Appendixes

In this section, you will find additional information about RxSDK objects and their usage.

Appendix A: Visual Appearance of Annotations

The ExportPDFMarkupEx function will attempt to convert existing RxRedline markup elements to corresponding Acrobat PDF annotations/comments. Since Acrobat PDF annotations follow the PDF documentation from Adobe, some of the markups created by RxRedline will look different when converted to a PDF annotation. RxRedline supports more element types and styles than PDF annotations do.

If the visual appearance is more important than having markup elements as PDF annotations, you should use the PDFMarkupBurnin method instead of ExportPDFMarkupEx.

Observed Differences with ExportPDFMarkupEx

  • Hatching: Not supported by PDF annotations. Instead, the markup element will be solid-filled and transparent.
  • Text Size: Acrobat limits free text annotations to 12 units (1 unit = 1/72 inch).
  • Transparency: RxRedline uses a merge operand to visualize transparent markup elements, while PDF uses a transparency factor between 0 and 1.0. Due to this, transparent markup elements may appear differently.
  • Measurement Area Elements: These do not have a PDF equivalent and are converted to a PDF polygon, with the measurement text attached as a note to the PDF annotation.

Comparison

RxRedline Measurement AreaPDF Annotation Appearance
Image1Image2
Original appearance in RxRedlineConverted appearance in PDF

Appendix B: Merging PDF Files

RxPDF makes it very easy to merge multiple PDF files, even with different page sizes, into a single multi-page PDF file.

Steps to Merge Files

  1. Start the merge process by using the PDFMergeStart() method:

    PDFMergeStart();
  2. Add files to the new merged document. To add all pages from a PDF file, use:

    PDFMergeAdd("c:\\mergein\\file1.pdf");  // Includes all pages from file1.pdf
  3. To add only certain pages from a file, use PDFMergeAddEx. Examples:

    PDFMergeAddEx("c:\\mergein\\file2.pdf", "1;2;3;");  // Includes pages 1, 2, and 3 from file2.pdf
    PDFMergeAddEx("c:\\mergein\\file3.pdf", "1;20;"); // Includes pages 1 and 20 from file3.pdf
  4. Once all files and pages are added, close the merge and output the new file:

    PDFMergeClose("c:\\mergeout\\output.pdf");

    All files and pages will be written to the new file, in this case, named output.pdf.

Notes

  • Any filename sent to RxPDF using the above methods must include the full path, including the folders.

Appendix C: Return Values

The COM objects expose one or more interfaces each. All methods defined by these interfaces return an HRESULT status value to inform the client about the success or failure of the requested operation.

Currently, the RxSDK objects return the following standard HRESULT values:

NameDescriptionValue
S_OKOperation successful0x00000000
S_FALSEOperation successful, but may have been void0x00000001
E_UNEXPECTEDUnexpected failure0x8000FFFF
E_NOTIMPLNot implemented0x80004001
E_OUTOFMEMORYFailed to allocate necessary memory0x8007000E
E_INVALIDARGOne or more arguments are invalid0x80070057
E_NOINTERFACENo such interface supported0x80004002
E_POINTERInvalid pointer0x80004003
E_HANDLEInvalid handle0x80070006
E_ABORTOperation aborted0x80004004
E_FAILUnspecified failure0x80004005
E_ACCESSDENIEDGeneral access denied error0x80070005

Notes

  • For the RxSDK components, only the S_OK value indicates a 100% successful operation. All other return values should be treated as an error condition.