KImgIO
eps.h
Go to the documentation of this file.00001 00007 #ifndef _EPS_H 00008 #define _EPS_H 00009 00010 00011 #include <QtGui/QImageIOPlugin> 00012 00013 class EPSHandler : public QImageIOHandler 00014 { 00015 public: 00016 EPSHandler(); 00017 00018 bool canRead() const; 00019 bool read(QImage *image); 00020 bool write(const QImage &image); 00021 00022 QByteArray name() const; 00023 00024 static bool canRead(QIODevice *device); 00025 }; 00026 00027 #endif 00028