Mako 8.2.0 API
MakoCore SDK API Documentation
Loading...
Searching...
No Matches
distiller.h File Reference

PostScript to PDF conversion. More...

Include dependency graph for distiller.h:

Go to the source code of this file.

Classes

class  JawsMako::IDistiller
 An instance of the JawsMako Distiller class. More...
class  JawsMako::IPSCommentMonitor
 Interface allowing users to monitor comments in PostScript input. Use setCommentMonitor() to install subclasses of this type. More...

Namespaces

namespace  JawsMako

Macros

#define DIST_MAKE_PDF_VERSION(major, minor)
#define DIST_GET_PDF_VERSION_MAJOR(pdfVersion)
#define DIST_GET_PDF_VERSION_MINOR(pdfVersion)
#define obj2IDistiller(obj)

Functions

 JawsMako::DECL_SMART_PTR (IDistiller)

Detailed Description

PostScript to PDF conversion.

This header describes the IDistiller interface.

Macro Definition Documentation

◆ DIST_GET_PDF_VERSION_MAJOR

#define DIST_GET_PDF_VERSION_MAJOR ( pdfVersion)
Value:
(((pdfVersion) >> 4) & 0x0f)

◆ DIST_GET_PDF_VERSION_MINOR

#define DIST_GET_PDF_VERSION_MINOR ( pdfVersion)
Value:
(((pdfVersion) >> 0) & 0x0f)

◆ DIST_MAKE_PDF_VERSION

#define DIST_MAKE_PDF_VERSION ( major,
minor )
Value:
(((major) << 4) | (minor))

◆ obj2IDistiller

#define obj2IDistiller ( obj)
Value:
IDistillerPtr(dynamic_cast<IDistiller *>((IRCObject *) obj), true)
Base class Interface for all Reference Counted objects.
Definition ircobject.h:35