/usr/include/scribus/scimagestructs.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 140 141 142 143 144 145 146 147 148 149 | /*
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 SCIMAGESTRUCTS_H
#define SCIMAGESTRUCTS_H
#include <QImage>
#include <QList>
#include <QMap>
#include <QString>
#include "fpointarray.h"
#include "sccolor.h"
struct ImageLoadRequest
{
bool visible;
bool useMask;
ushort opacity;
QString blend;
bool operator==(const ImageLoadRequest &rhs) const
{
return visible == rhs.visible && useMask == rhs.useMask && opacity == rhs.opacity && blend == rhs.blend;
}
};
struct ImageEffect
{
int effectCode;
QString effectParameters;
};
typedef QList<ImageEffect> ScImageEffectList;
struct PSDHeader
{
uint signature;
ushort version;
uchar reserved[6];
ushort channel_count;
uint height;
uint width;
ushort depth;
ushort color_mode;
};
struct PSDLayer
{
QList<uint> channelLen;
QList<int> channelType;
int xpos;
int ypos;
int width;
int height;
ushort opacity;
uchar clipping;
uchar flags;
int maskXpos;
int maskYpos;
int maskWidth;
int maskHeight;
QString layerName;
QString blend;
QImage thumb;
QImage thumb_mask;
};
struct PSDDuotone_Color
{
QString Name;
ScColor Color;
FPointArray Curve;
};
class ExifValues
{
public:
ExifValues(void);
void init(void);
int width;
int height;
float ExposureTime;
float ApertureFNumber;
int ISOequivalent;
QString cameraName;
QString cameraVendor;
QString comment;
QString userComment;
QString artist;
QString copyright;
QString dateTime;
QImage thumbnail;
};
typedef enum
{
ImageTypeJPG = 0,
ImageTypeTIF = 1,
ImageTypePSD = 2,
ImageTypeEPS = 3,
ImageTypePDF = 4,
ImageTypeJPG2K = 5,
ImageTypeOther = 6,
ImageType7 = 7
} ImageTypeEnum;
typedef enum
{
ColorSpaceRGB = 0,
ColorSpaceCMYK = 1,
ColorSpaceGray = 2,
ColorSpaceDuotone = 3
} ColorSpaceEnum;
class ImageInfoRecord
{
public:
ImageInfoRecord(void);
void init(void);
ImageTypeEnum type; /* 0 = jpg, 1 = tiff, 2 = psd, 3 = eps/ps, 4 = pdf, 5 = jpg2000, 6 = other */
int xres;
int yres;
int BBoxX;
int BBoxH;
ColorSpaceEnum colorspace; /* 0 = RGB 1 = CMYK 2 = Grayscale 3 = Duotone */
bool valid;
bool isRequest;
bool progressive;
bool isEmbedded;
bool exifDataValid;
int lowResType; /* 0 = full Resolution, 1 = 72 dpi, 2 = 36 dpi */
double lowResScale;
int numberOfPages;
int actualPageNumber;
QMap<QString, FPointArray> PDSpathData;
QMap<int, ImageLoadRequest> RequestProps;
QString clipPath;
QString usedPath;
QString profileName;
QList<PSDLayer> layerInfo;
QList<PSDDuotone_Color> duotoneColors;
ExifValues exifInfo;
};
#endif
|