Spaces:
Running
Running
File size: 2,170 Bytes
a9694d2 |
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 |
//========================================================================
//
// AnnotStampImageHelper.h
//
// Copyright (C) 2021 Mahmoud Ahmed Khalil <[email protected]>
// Copyright (C) 2021 Albert Astals Cid <[email protected]>
//
// Licensed under GPLv2 or later
//
//========================================================================
#ifndef ANNOTSTAMPIMAGEHELPER_H
#define ANNOTSTAMPIMAGEHELPER_H
#include "Object.h"
class PDFDoc;
enum ColorSpace
{
DeviceGray,
DeviceRGB,
DeviceCMYK
};
/**
* This class is used only to load Image XObjects into stamp annotations. It takes in
* the image parameters in its constructors and creates a new Image XObject that gets
* added to the XRef table, so that the annotations that would like to use it be able
* to get its ref number.
*
* To have transparency in the image, you should first try to create the soft
* mask of the image, by creating a AnnotStampImageHelper object giving it the soft
* image data normally. You would then need to pass in the created soft mask Image XObject
* ref to the actual image you'd like to be created by this helper class.
*/
class POPPLER_PRIVATE_EXPORT AnnotStampImageHelper
{
public:
AnnotStampImageHelper(PDFDoc *docA, int widthA, int heightA, ColorSpace colorSpace, int bitsPerComponent, char *data, int dataLength);
AnnotStampImageHelper(PDFDoc *docA, int widthA, int heightA, ColorSpace colorSpace, int bitsPerComponent, char *data, int dataLength, Ref softMaskRef);
~AnnotStampImageHelper() { }
// Returns the ref to the created Image XObject
Ref getRef() const { return ref; }
// Returns the width of the image
int getWidth() const { return width; }
// Returns the height of the image
int getHeight() const { return height; }
// Removes the created Image XObject as well as its soft mask from the XRef Table
void removeAnnotStampImageObject();
private:
void initialize(PDFDoc *docA, int widthA, int heightA, ColorSpace colorSpace, int bitsPerComponent, char *data, int dataLength);
PDFDoc *doc;
Object imgObj;
Ref ref;
Ref sMaskRef;
int width;
int height;
};
#endif
|