/usr/include/scribus/scimage.h is in scribus-dev 1.4.6+dfsg-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 | /*
For general Scribus (>=1.3.2) copyright and licensing information please refer
to the COPYING file provided with the program. Following this notice may exist
a copyright and/or license notice that predates the release of Scribus 1.3.2
for which a new license (GPL+exception) is in place.
*/
#ifndef SCIMAGE_H
#define SCIMAGE_H
#include "scconfig.h"
#include "scribusapi.h"
#include "scimagestructs.h"
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <QImage>
#include <QString>
#include <QDataStream>
#include <QMap>
#include <QList>
#include <QVector>
#include <QFile>
#include <QDir>
#include <QStringList>
#include "fpointarray.h"
#include "sccolor.h"
class ScribusDoc;
class ScStreamFilter;
class CMSettings;
class SCRIBUS_API ScImage : private QImage
{
public:
ScImage();
ScImage(const QImage & image);
ScImage(const ScImage & image);
ScImage( int width, int height );
~ScImage();
enum RequestType
{
CMYKData = 0,
RGBData = 1,
RGBProof = 2,
RawData = 3,
Thumbnail = 4,
};
enum ImageEffectCode
{
EF_INVERT = 0,
EF_GRAYSCALE = 1,
EF_COLORIZE = 2,
EF_BRIGHTNESS = 3,
EF_CONTRAST = 4,
EF_SHARPEN = 5,
EF_BLUR = 6,
EF_SOLARIZE = 7,
EF_DUOTONE = 8,
EF_TRITONE = 9,
EF_QUADTONE = 10,
EF_GRADUATE = 11
};
void initialize();
const QImage& qImage();
QImage* qImagePtr();
QImage scaled(int h, int w, Qt::AspectRatioMode mode = Qt::IgnoreAspectRatio, Qt::TransformationMode transformMode = Qt::FastTransformation) const;
int height() const { return QImage::height(); }
int width() const { return QImage::width(); }
bool hasAlpha() const { return QImage::hasAlphaChannel(); }
// Routines for PDF/PS output of images
QByteArray ImageToArray();
void convertToGray(void);
bool writeRGBDataToFilter(ScStreamFilter* filter);
bool writeGrayDataToFilter(ScStreamFilter* filter, bool precal);
bool writeCMYKDataToFilter(ScStreamFilter* filter);
bool writePSImageToFilter(ScStreamFilter* filter, int pl);
bool writePSImageToFilter(ScStreamFilter* filter, const QByteArray& mask, int pl);
bool getAlpha(QString fn, int page, QByteArray& alpha, bool PDF, bool pdf14, int gsRes = 72, int scaleXSize = 0, int scaleYSize = 0);
bool Convert2JPG(QString fn, int Quality, bool isCMYK, bool isGray);
// Image effects
void applyEffect(const ScImageEffectList& effectsList, ColorList& colors, bool cmyk);
// Generate a low res image for user preview
void createLowRes(double scale);
// Scale this image in-place
void scaleImage(int width, int height);
// Retrieve an embedded ICC profile from the file path `fn', storing it in `profile'.
// TODO: Bad API. Should probably be static member returning an ICCProfile (custom class) or something like that.
void getEmbeddedProfile(const QString & fn, QByteArray *profile, int *components, int page = 0);
// Load an image into this ScImage instance
// TODO: document params, split into smaller functions
bool LoadPicture(const QString & fn, int page, const CMSettings& cmSettings, bool useEmbedded, bool useProf, RequestType requestType, int gsRes, bool *realCMYK = 0, bool showMsg = false);
ImageInfoRecord imgInfo;
private:
// Scale image in-place : case of 32bpp image (RGBA, RGB32, CMYK)
void scaleImage32bpp(int width, int height);
// Scale image in-place : generic case
void scaleImageGeneric(int width, int height);
// Image effects
void solarize(double factor, bool cmyk);
void blur(int radius = 0);
void sharpen(double radius= 0.0, double sigma = 1.0);
void contrast(int contrastValue, bool cmyk);
void brightness(int brightnessValue, bool cmyk);
void invert(bool cmyk);
void colorize(ScribusDoc* doc, ScColor color, int shade, bool cmyk);
void duotone(ScribusDoc* doc, ScColor color1, int shade1, FPointArray curve1, bool lin1, ScColor color2, int shade2, FPointArray curve2, bool lin2, bool cmyk);
void tritone(ScribusDoc* doc, ScColor color1, int shade1, FPointArray curve1, bool lin1, ScColor color2, int shade2, FPointArray curve2, bool lin2, ScColor color3, int shade3, FPointArray curve3, bool lin3, bool cmyk);
void quadtone(ScribusDoc* doc, ScColor color1, int shade1, FPointArray curve1, bool lin1, ScColor color2, int shade2, FPointArray curve2, bool lin2, ScColor color3, int shade3, FPointArray curve3, bool lin3, ScColor color4, int shade4, FPointArray curve4, bool lin4, bool cmyk);
void toGrayscale(bool cmyk);
void doGraduate(FPointArray curve, bool cmyk, bool linear);
void swapRGBA();
bool convolveImage(QImage *dest, const unsigned int order, const double *kernel);
int getOptimalKernelWidth(double radius, double sigma);
void applyCurve(const QVector<int>& curveTable, bool cmyk);
};
#endif
|