EpsEngine - Encapsulated PostScript (EPS) support for Qt

Subscribe to EpsEngine Latest News News: EpsEngine version 0.6 released >>

PostScript is a computer language for creating vector graphics developped by Adobe Systems. Qt is a cross-platform application development framework, widely used for the development of GUI programs. In their latest major version (Qt5) the possibility to export graphics to PostScript was dropped: the QPrinter::PostScriptFormat option was removed. EpsEngine was developped in order to cover this lack and to enable Qt based applications to easily export graphics to the Encapsulated PostScript format and is already used by >>

Features:

  • Using EpsEngine is straightforward, as you may see from the code example bellow:
     void MyClass::exportEPS(const QString& fileName, const QSize& size)
    {
            EpsPaintDevice eps(fileName, size);
            QPainter paint.begin(&eps);
    	// ... perform your painting operations here ...
    	paint.end();
    }
    
  • It is possible to encapsulate TIFF preview images (compressed or not):
     void MyClass::exportPreviewEPS(const QString& fileName, const QPixmap& pixmap, int compressionLevel)
    {
            EpsPaintDevice eps(fileName, QSize(500, 400));
            eps.setColorMode(QPrinter::Color);
            eps.setPreviewPixmap(pixmap, compressionLevel);
            // ... perform your painting operations here ...
    }
    

Platforms:

EpsEngine can be used on any platform supported by Qt. Both Qt 5 and Qt 4 are supported.

License:

EpsEngine is available under two licenses: an open-source licence (GPL v. 3.0) and a commercial one. Please take a look at the Licensing section for more details.

Author:

Ion Vasilief