X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=blobdiff_plain;f=lib%2Fpdf%2FInfoOutputDev.h;h=4198b7d7ef2f30cdb7361769318383c8625ac0a4;hp=699c4c76a1bd2c78805f9b2dfaa237ed9a9d8699;hb=fc713269e9d26d1be92f70e1ff0d508c94a65dba;hpb=0eaa557c36055770a90f6ea54c88f30010e1e5d9 diff --git a/lib/pdf/InfoOutputDev.h b/lib/pdf/InfoOutputDev.h index 699c4c7..4198b7d 100644 --- a/lib/pdf/InfoOutputDev.h +++ b/lib/pdf/InfoOutputDev.h @@ -41,12 +41,13 @@ #else #include "GHash.h" #endif +#include "../gfxdevice.h" +#include "../gfxtools.h" +#include "../gfxfont.h" +#include "../q.h" -struct AdvanceSample -{ - double advance; - struct AdvanceSample*next; -}; +#define INTERNAL_FONT_SIZE 1024.0 +#define GLYPH_IS_SPACE(g) ((!(g)->line || ((g)->line->type==gfx_moveTo && !(g)->line->next)) && (g)->advance) struct GlyphInfo { @@ -56,18 +57,23 @@ struct GlyphInfo double advance; double x1,y1,x2,y2; - double estimateAdvance(); - - AdvanceSample*advance_samples; + double advance_max; }; -struct FontInfo +class FontInfo { - FontInfo(); + gfxfont_t*gfxfont; + + char*id; +public: + FontInfo(char*id); ~FontInfo(); + gfxfont_t* getGfxFont(); + double lastx,lasty; int lastchar; + int lastadvance; double ascender,descender; @@ -77,9 +83,12 @@ struct FontInfo double max_size; int num_glyphs; GlyphInfo**glyphs; - int*charid2glyph; + dict_t**kerning; + SplashFont*splash_font; char seen; + int space_char; + float average_advance; }; extern char*getFontID(GfxFont*font); @@ -94,9 +103,13 @@ class InfoOutputDev: public OutputDev public: int x1,y1,x2,y2; int num_links; - int num_images; + int num_ppm_images; + int num_jpeg_images; int num_fonts; int num_polygons; + int num_textfields; + + void dumpfonts(gfxdevice_t*dev); InfoOutputDev(XRef*xref); virtual ~InfoOutputDev(); @@ -109,6 +122,9 @@ class InfoOutputDev: public OutputDev virtual void drawLink(Link *link, Catalog *catalog); virtual double getMaximumFontSize(char*id); virtual void updateFont(GfxState *state); + + virtual void saveState(GfxState *state); + virtual void restoreState(GfxState *state); virtual GBool beginType3Char(GfxState *state, double x, double y, double dx, double dy, CharCode code, Unicode *u, int uLen); virtual void type3D0(GfxState *state, double wx, double wy); @@ -140,6 +156,7 @@ class InfoOutputDev: public OutputDev Stream *maskStr, int maskWidth, int maskHeight, GfxImageColorMap *maskColorMap); + virtual FontInfo* getFont(char*id); };