|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef CAIROOUTPUTDEV_H |
|
#define CAIROOUTPUTDEV_H |
|
|
|
#include <unordered_set> |
|
|
|
#include <cairo-ft.h> |
|
#include "OutputDev.h" |
|
#include "TextOutputDev.h" |
|
#include "GfxState.h" |
|
#include "StructElement.h" |
|
#include "StructTreeRoot.h" |
|
#include "Annot.h" |
|
#include "Link.h" |
|
|
|
class PDFDoc; |
|
class GfxState; |
|
class GfxPath; |
|
class Gfx8BitFont; |
|
struct GfxRGB; |
|
class CairoFontEngine; |
|
class CairoFont; |
|
|
|
|
|
|
|
|
|
|
|
|
|
class CairoImage |
|
{ |
|
public: |
|
|
|
CairoImage(double x1, double y1, double x2, double y2); |
|
|
|
|
|
~CairoImage(); |
|
|
|
CairoImage(const CairoImage &) = delete; |
|
CairoImage &operator=(const CairoImage &) = delete; |
|
|
|
|
|
void setImage(cairo_surface_t *image); |
|
|
|
|
|
cairo_surface_t *getImage() const { return image; } |
|
|
|
|
|
void getRect(double *xa1, double *ya1, double *xa2, double *ya2) |
|
{ |
|
*xa1 = x1; |
|
*ya1 = y1; |
|
*xa2 = x2; |
|
*ya2 = y2; |
|
} |
|
|
|
private: |
|
cairo_surface_t *image; |
|
double x1, y1; |
|
double x2, y2; |
|
}; |
|
|
|
|
|
|
|
|
|
|
|
class CairoOutputDev : public OutputDev |
|
{ |
|
public: |
|
|
|
CairoOutputDev(); |
|
|
|
|
|
~CairoOutputDev() override; |
|
|
|
|
|
|
|
|
|
|
|
bool upsideDown() override { return true; } |
|
|
|
|
|
bool useDrawChar() override { return true; } |
|
|
|
|
|
|
|
|
|
bool useTilingPatternFill() override { return true; } |
|
|
|
|
|
|
|
|
|
#if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1, 12, 0) |
|
bool useShadedFills(int type) override { return type <= 7; } |
|
#else |
|
bool useShadedFills(int type) override { return type > 1 && type < 4; } |
|
#endif |
|
|
|
|
|
bool useFillColorStop() override { return true; } |
|
|
|
|
|
|
|
bool interpretType3Chars() override { return false; } |
|
|
|
|
|
|
|
bool needClipToCropBox() override { return true; } |
|
|
|
|
|
|
|
|
|
void startPage(int pageNum, GfxState *state, XRef *xref) override; |
|
|
|
|
|
void endPage() override; |
|
|
|
|
|
void emitStructTree(); |
|
|
|
void beginForm(Object *obj, Ref id) override; |
|
void endForm(Object *obj, Ref id) override; |
|
|
|
|
|
void saveState(GfxState *state) override; |
|
void restoreState(GfxState *state) override; |
|
|
|
|
|
void updateAll(GfxState *state) override; |
|
void setDefaultCTM(const double *ctm) override; |
|
void updateCTM(GfxState *state, double m11, double m12, double m21, double m22, double m31, double m32) override; |
|
void updateLineDash(GfxState *state) override; |
|
void updateFlatness(GfxState *state) override; |
|
void updateLineJoin(GfxState *state) override; |
|
void updateLineCap(GfxState *state) override; |
|
void updateMiterLimit(GfxState *state) override; |
|
void updateLineWidth(GfxState *state) override; |
|
void updateFillColor(GfxState *state) override; |
|
void updateStrokeColor(GfxState *state) override; |
|
void updateFillOpacity(GfxState *state) override; |
|
void updateStrokeOpacity(GfxState *state) override; |
|
void updateFillColorStop(GfxState *state, double offset) override; |
|
void updateBlendMode(GfxState *state) override; |
|
|
|
|
|
void updateFont(GfxState *state) override; |
|
|
|
|
|
void stroke(GfxState *state) override; |
|
void fill(GfxState *state) override; |
|
void eoFill(GfxState *state) override; |
|
void clipToStrokePath(GfxState *state) override; |
|
bool tilingPatternFill(GfxState *state, Gfx *gfx, Catalog *cat, GfxTilingPattern *tPat, const double *mat, int x0, int y0, int x1, int y1, double xStep, double yStep) override; |
|
#if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1, 12, 0) |
|
bool functionShadedFill(GfxState *state, GfxFunctionShading *shading) override; |
|
#endif |
|
bool axialShadedFill(GfxState *state, GfxAxialShading *shading, double tMin, double tMax) override; |
|
bool axialShadedSupportExtend(GfxState *state, GfxAxialShading *shading) override; |
|
bool radialShadedFill(GfxState *state, GfxRadialShading *shading, double sMin, double sMax) override; |
|
bool radialShadedSupportExtend(GfxState *state, GfxRadialShading *shading) override; |
|
#if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1, 12, 0) |
|
bool gouraudTriangleShadedFill(GfxState *state, GfxGouraudTriangleShading *shading) override; |
|
bool patchMeshShadedFill(GfxState *state, GfxPatchMeshShading *shading) override; |
|
#endif |
|
|
|
|
|
void clip(GfxState *state) override; |
|
void eoClip(GfxState *state) override; |
|
|
|
|
|
void beginString(GfxState *state, const GooString *s) override; |
|
void endString(GfxState *state) override; |
|
void drawChar(GfxState *state, double x, double y, double dx, double dy, double originX, double originY, CharCode code, int nBytes, const Unicode *u, int uLen) override; |
|
void beginActualText(GfxState *state, const GooString *text) override; |
|
void endActualText(GfxState *state) override; |
|
|
|
bool beginType3Char(GfxState *state, double x, double y, double dx, double dy, CharCode code, const Unicode *u, int uLen) override; |
|
void endType3Char(GfxState *state) override; |
|
void beginTextObject(GfxState *state) override; |
|
void endTextObject(GfxState *state) override; |
|
|
|
void beginMarkedContent(const char *name, Dict *properties) override; |
|
void endMarkedContent(GfxState *state) override; |
|
|
|
|
|
void drawImageMask(GfxState *state, Object *ref, Stream *str, int width, int height, bool invert, bool interpolate, bool inlineImg) override; |
|
void setSoftMaskFromImageMask(GfxState *state, Object *ref, Stream *str, int width, int height, bool invert, bool inlineImg, double *baseMatrix) override; |
|
void unsetSoftMaskFromImageMask(GfxState *state, double *baseMatrix) override; |
|
void drawImageMaskPrescaled(GfxState *state, Object *ref, Stream *str, int width, int height, bool invert, bool interpolate, bool inlineImg); |
|
void drawImageMaskRegular(GfxState *state, Object *ref, Stream *str, int width, int height, bool invert, bool interpolate, bool inlineImg); |
|
|
|
void drawImage(GfxState *state, Object *ref, Stream *str, int width, int height, GfxImageColorMap *colorMap, bool interpolate, const int *maskColors, bool inlineImg) override; |
|
void drawSoftMaskedImage(GfxState *state, Object *ref, Stream *str, int width, int height, GfxImageColorMap *colorMap, bool interpolate, Stream *maskStr, int maskWidth, int maskHeight, GfxImageColorMap *maskColorMap, |
|
bool maskInterpolate) override; |
|
|
|
void drawMaskedImage(GfxState *state, Object *ref, Stream *str, int width, int height, GfxImageColorMap *colorMap, bool interpolate, Stream *maskStr, int maskWidth, int maskHeight, bool maskInvert, bool maskInterpolate) override; |
|
|
|
|
|
void beginTransparencyGroup(GfxState * , const double * , GfxColorSpace * , bool , bool , bool ) override; |
|
void endTransparencyGroup(GfxState * ) override; |
|
void popTransparencyGroup(); |
|
void paintTransparencyGroup(GfxState * , const double * ) override; |
|
void setSoftMask(GfxState * , const double * , bool , Function * , GfxColor * ) override; |
|
void clearSoftMask(GfxState * ) override; |
|
|
|
|
|
void type3D0(GfxState *state, double wx, double wy) override; |
|
void type3D1(GfxState *state, double wx, double wy, double llx, double lly, double urx, double ury) override; |
|
|
|
|
|
|
|
|
|
void startDoc(PDFDoc *docA, CairoFontEngine *fontEngine = nullptr); |
|
|
|
|
|
void startType3Render(GfxState *state, XRef *xref); |
|
|
|
bool isReverseVideo() { return false; } |
|
|
|
void setCairo(cairo_t *cr); |
|
void setTextPage(TextPage *text); |
|
void setPrinting(bool printingA) |
|
{ |
|
printing = printingA; |
|
needFontUpdate = true; |
|
} |
|
void copyAntialias(cairo_t *cr, cairo_t *source_cr); |
|
void setLogicalStructure(bool logStruct) { this->logicalStruct = logStruct; } |
|
|
|
enum Type3RenderType |
|
{ |
|
Type3RenderNone, |
|
Type3RenderMask, |
|
Type3RenderColor |
|
}; |
|
void setType3RenderType(Type3RenderType state) { t3_render_state = state; } |
|
void getType3GlyphWidth(double *wx, double *wy) |
|
{ |
|
*wx = t3_glyph_wx; |
|
*wy = t3_glyph_wy; |
|
} |
|
bool hasType3GlyphBBox() { return t3_glyph_has_bbox; } |
|
double *getType3GlyphBBox() { return t3_glyph_bbox; } |
|
bool type3GlyphHasColor() { return t3_glyph_has_color; } |
|
|
|
protected: |
|
void doPath(cairo_t *cairo, GfxState *state, const GfxPath *path); |
|
cairo_surface_t *downscaleSurface(cairo_surface_t *orig_surface); |
|
void getScaledSize(const cairo_matrix_t *matrix, int orig_width, int orig_height, int *scaledWidth, int *scaledHeight); |
|
cairo_filter_t getFilterForSurface(cairo_surface_t *image, bool interpolate); |
|
bool getStreamData(Stream *str, char **buffer, int *length); |
|
void setMimeData(GfxState *state, Stream *str, Object *ref, GfxImageColorMap *colorMap, cairo_surface_t *image, int height); |
|
void fillToStrokePathClip(GfxState *state); |
|
void alignStrokeCoords(const GfxSubpath *subpath, int i, double *x, double *y); |
|
AnnotLink *findLinkObject(const StructElement *elem); |
|
void quadToCairoRect(AnnotQuadrilaterals *quads, int idx, double destPageHeight, cairo_rectangle_t *rect); |
|
bool appendLinkDestRef(GooString *s, const LinkDest *dest); |
|
void appendLinkDestXY(GooString *s, const LinkDest *dest, double destPageHeight); |
|
bool beginLinkTag(AnnotLink *annotLink); |
|
bool beginLink(const StructElement *linkElem); |
|
void getStructElemAttributeString(const StructElement *elem); |
|
int getContentElementStructParents(const StructElement *element); |
|
bool checkIfStructElementNeeded(const StructElement *element); |
|
void emitStructElement(const StructElement *elem); |
|
void startFirstPage(int pageNum, GfxState *state, XRef *xrefA); |
|
#if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1, 14, 0) |
|
bool setMimeDataForJBIG2Globals(Stream *str, cairo_surface_t *image); |
|
#endif |
|
#if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1, 15, 10) |
|
bool setMimeDataForCCITTParams(Stream *str, cairo_surface_t *image, int height); |
|
#endif |
|
static void textStringToQuotedUtf8(const GooString *text, GooString *s); |
|
bool isPDF(); |
|
|
|
std::optional<GfxRGB> fill_color, stroke_color; |
|
cairo_pattern_t *fill_pattern, *stroke_pattern; |
|
double fill_opacity; |
|
double stroke_opacity; |
|
bool stroke_adjust; |
|
bool adjusted_stroke_width; |
|
bool align_stroke_coords; |
|
std::shared_ptr<CairoFont> currentFont; |
|
XRef *xref; |
|
|
|
struct StrokePathClip |
|
{ |
|
GfxPath *path; |
|
cairo_matrix_t ctm; |
|
double line_width; |
|
double *dashes; |
|
int dash_count; |
|
double dash_offset; |
|
cairo_line_cap_t cap; |
|
cairo_line_join_t join; |
|
double miter; |
|
int ref_count; |
|
} *strokePathClip; |
|
|
|
PDFDoc *doc; |
|
|
|
static FT_Library ft_lib; |
|
static std::once_flag ft_lib_once_flag; |
|
|
|
CairoFontEngine *fontEngine; |
|
bool fontEngine_owner; |
|
|
|
cairo_t *cairo; |
|
cairo_matrix_t orig_matrix; |
|
bool needFontUpdate; |
|
bool printing; |
|
bool use_show_text_glyphs; |
|
bool text_matrix_valid; |
|
cairo_glyph_t *glyphs; |
|
int glyphCount; |
|
cairo_text_cluster_t *clusters; |
|
int clusterCount; |
|
char *utf8; |
|
int utf8Count; |
|
int utf8Max; |
|
cairo_path_t *textClipPath; |
|
bool inUncoloredPattern; |
|
Type3RenderType t3_render_state; |
|
double t3_glyph_wx, t3_glyph_wy; |
|
bool t3_glyph_has_bbox; |
|
bool t3_glyph_has_color; |
|
bool has_color; |
|
double t3_glyph_bbox[4]; |
|
bool prescaleImages; |
|
bool logicalStruct; |
|
bool firstPage; |
|
int pdfPageNum; |
|
int cairoPageNum; |
|
std::vector<std::string> markedContentStack; |
|
std::vector<Annot *> annotations; |
|
std::set<std::string> emittedDestinations; |
|
std::map<int, int> pdfPageToCairoPageMap; |
|
|
|
TextPage *textPage; |
|
ActualText *actualText; |
|
|
|
cairo_pattern_t *group; |
|
cairo_pattern_t *shape; |
|
cairo_pattern_t *mask; |
|
cairo_matrix_t mask_matrix; |
|
cairo_t *cairo_shape; |
|
int knockoutCount; |
|
struct ColorSpaceStack |
|
{ |
|
bool knockout; |
|
GfxColorSpace *cs; |
|
cairo_matrix_t group_matrix; |
|
struct ColorSpaceStack *next; |
|
} *groupColorSpaceStack; |
|
|
|
struct SaveStateElement |
|
{ |
|
|
|
cairo_pattern_t *fill_pattern; |
|
cairo_pattern_t *stroke_pattern; |
|
double fill_opacity; |
|
double stroke_opacity; |
|
cairo_pattern_t *mask; |
|
cairo_matrix_t mask_matrix; |
|
Ref fontRef; |
|
}; |
|
std::vector<SaveStateElement> saveStateStack; |
|
|
|
std::map<Ref, std::map<std::string, std::unique_ptr<LinkDest>>> destsMap; |
|
std::map<Ref, int> pdfPageRefToCairoPageNumMap; |
|
std::vector<int> structParentsStack; |
|
int currentStructParents; |
|
|
|
struct StructParentsMcidHash |
|
{ |
|
size_t operator()(std::pair<int, int> x) const { return x.first << 16 | x.second; } |
|
}; |
|
std::unordered_set<std::pair<int, int>, StructParentsMcidHash> mcidEmitted; |
|
|
|
std::unordered_set<const StructElement *> structElementNeeded; |
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
class CairoImageOutputDev : public CairoOutputDev |
|
{ |
|
public: |
|
|
|
CairoImageOutputDev(); |
|
|
|
|
|
~CairoImageOutputDev() override; |
|
|
|
|
|
|
|
|
|
|
|
bool upsideDown() override { return true; } |
|
|
|
|
|
bool useDrawChar() override { return false; } |
|
|
|
|
|
|
|
|
|
bool useTilingPatternFill() override { return true; } |
|
|
|
|
|
|
|
|
|
#if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1, 11, 2) |
|
bool useShadedFills(int type) override { return type <= 7; } |
|
#else |
|
bool useShadedFills(int type) override { return type < 4; } |
|
#endif |
|
|
|
|
|
bool useFillColorStop() override { return false; } |
|
|
|
|
|
|
|
bool interpretType3Chars() override { return false; } |
|
|
|
|
|
bool needNonText() override { return true; } |
|
|
|
|
|
void saveState(GfxState *state) override { } |
|
void restoreState(GfxState *state) override { } |
|
|
|
|
|
void updateAll(GfxState *state) override { } |
|
void setDefaultCTM(const double *ctm) override { } |
|
void updateCTM(GfxState *state, double m11, double m12, double m21, double m22, double m31, double m32) override { } |
|
void updateLineDash(GfxState *state) override { } |
|
void updateFlatness(GfxState *state) override { } |
|
void updateLineJoin(GfxState *state) override { } |
|
void updateLineCap(GfxState *state) override { } |
|
void updateMiterLimit(GfxState *state) override { } |
|
void updateLineWidth(GfxState *state) override { } |
|
void updateFillColor(GfxState *state) override { } |
|
void updateStrokeColor(GfxState *state) override { } |
|
void updateFillOpacity(GfxState *state) override { } |
|
void updateStrokeOpacity(GfxState *state) override { } |
|
void updateBlendMode(GfxState *state) override { } |
|
|
|
|
|
void updateFont(GfxState *state) override { } |
|
|
|
|
|
void stroke(GfxState *state) override { } |
|
void fill(GfxState *state) override { } |
|
void eoFill(GfxState *state) override { } |
|
void clipToStrokePath(GfxState *state) override { } |
|
bool tilingPatternFill(GfxState *state, Gfx *gfx, Catalog *cat, GfxTilingPattern *tPat, const double *mat, int x0, int y0, int x1, int y1, double xStep, double yStep) override { return true; } |
|
bool axialShadedFill(GfxState *state, GfxAxialShading *shading, double tMin, double tMax) override { return true; } |
|
bool radialShadedFill(GfxState *state, GfxRadialShading *shading, double sMin, double sMax) override { return true; } |
|
|
|
|
|
void clip(GfxState *state) override { } |
|
void eoClip(GfxState *state) override { } |
|
|
|
|
|
void drawImageMask(GfxState *state, Object *ref, Stream *str, int width, int height, bool invert, bool interpolate, bool inlineImg) override; |
|
void drawImage(GfxState *state, Object *ref, Stream *str, int width, int height, GfxImageColorMap *colorMap, bool interpolate, const int *maskColors, bool inlineImg) override; |
|
void drawSoftMaskedImage(GfxState *state, Object *ref, Stream *str, int width, int height, GfxImageColorMap *colorMap, bool interpolate, Stream *maskStr, int maskWidth, int maskHeight, GfxImageColorMap *maskColorMap, |
|
bool maskInterpolate) override; |
|
void drawMaskedImage(GfxState *state, Object *ref, Stream *str, int width, int height, GfxImageColorMap *colorMap, bool interpolate, Stream *maskStr, int maskWidth, int maskHeight, bool maskInvert, bool maskInterpolate) override; |
|
void setSoftMaskFromImageMask(GfxState *state, Object *ref, Stream *str, int width, int height, bool invert, bool inlineImg, double *baseMatrix) override; |
|
void unsetSoftMaskFromImageMask(GfxState *state, double *baseMatrix) override { } |
|
|
|
|
|
void beginTransparencyGroup(GfxState * , const double * , GfxColorSpace * , bool , bool , bool ) override { } |
|
void endTransparencyGroup(GfxState * ) override { } |
|
void paintTransparencyGroup(GfxState * , const double * ) override { } |
|
void setSoftMask(GfxState * , const double * , bool , Function * , GfxColor * ) override { } |
|
void clearSoftMask(GfxState * ) override { } |
|
|
|
|
|
|
|
void setImageDrawDecideCbk(bool (*cbk)(int img_id, void *data), void *data) |
|
{ |
|
imgDrawCbk = cbk; |
|
imgDrawCbkData = data; |
|
} |
|
|
|
int getNumImages() const { return numImages; } |
|
CairoImage *getImage(int i) const { return images[i]; } |
|
|
|
private: |
|
void saveImage(CairoImage *image); |
|
void getBBox(GfxState *state, int width, int height, double *x1, double *y1, double *x2, double *y2); |
|
|
|
CairoImage **images; |
|
int numImages; |
|
int size; |
|
bool (*imgDrawCbk)(int img_id, void *data); |
|
void *imgDrawCbkData; |
|
}; |
|
|
|
#endif |
|
|