7 #ifndef SCIMGDATALOADER_GMAGICK_H
8 #define SCIMGDATALOADER_GMAGICK_H
10 #include "scimgdataloader.h"
11 #include <magick/api.h>
16 void initSupportedFormatList();
17 QString blendModeToString(
int compositeOp);
18 int blendModeToInt(QString compositeOp);
22 static bool gm_initialized;
23 bool readCMYK(Image *input,
RawImage *output,
int width,
int height);
24 bool readRGB(Image *input, QImage *output,
int width,
int height);
29 virtual bool preloadAlphaChannel(
const QString& fn,
int page,
int res,
bool& hasAlpha);
30 virtual void loadEmbeddedProfile(
const QString& fn,
int page = 0);
31 virtual bool loadPicture(
const QString& fn,
int page,
int res,
bool thumbnail);
32 virtual bool useRawImage() {
return m_useRawImage; }
33 virtual void initGraphicsMagick();
Definition: scimgdataloader.h:19
Definition: rawimage.h:15
Definition: scimgdataloader_gmagick.h:13