mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 13:00:08 +00:00
option ENABLE_SVG in cmake
This commit is contained in:
parent
827b0aa33b
commit
261aba67c3
@ -5,6 +5,8 @@ set(CMAKE_BUILD_TYPE Release CACHE STRING "Build configuration (Debug, Release,
|
|||||||
project(pdf2htmlEX)
|
project(pdf2htmlEX)
|
||||||
cmake_minimum_required(VERSION 2.6.0 FATAL_ERROR)
|
cmake_minimum_required(VERSION 2.6.0 FATAL_ERROR)
|
||||||
|
|
||||||
|
option(ENABLE_SVG "Enable SVG backend" OFF)
|
||||||
|
|
||||||
include_directories(${CMAKE_SOURCE_DIR}/src)
|
include_directories(${CMAKE_SOURCE_DIR}/src)
|
||||||
|
|
||||||
set(PDF2HTMLEX_VERSION "0.10")
|
set(PDF2HTMLEX_VERSION "0.10")
|
||||||
@ -26,14 +28,27 @@ include_directories(${POPPLER_INCLUDE_DIRS})
|
|||||||
link_directories(${POPPLER_LIBRARY_DIRS})
|
link_directories(${POPPLER_LIBRARY_DIRS})
|
||||||
set(PDF2HTMLEX_LIBS ${PDF2HTMLEX_LIBS} ${POPPLER_LIBRARIES})
|
set(PDF2HTMLEX_LIBS ${PDF2HTMLEX_LIBS} ${POPPLER_LIBRARIES})
|
||||||
|
|
||||||
# for SVG
|
if(ENABLE_SVG)
|
||||||
set(HAVE_CAIRO 1)
|
pkg_check_modules(CAIRO REQUIRED cairo>=1.10.0)
|
||||||
|
message("Trying to locate cairo-svg...")
|
||||||
# for Cairo* files
|
find_path(CAIRO_SVG_INCLUDE_PATH cairo-svg.h PATHS ${CAIRO_INCLUDE_DIRS} NO_DEFAULT_PATH)
|
||||||
pkg_check_modules(CAIRO REQUIRED cairo>=1.10.0)
|
if(CAIRO_SVG_INCLUDE_PATH)
|
||||||
include_directories(${CAIRO_INCLUDE_DIRS})
|
include_directories(${CAIRO_INCLUDE_DIRS})
|
||||||
link_directories(${CAIRO_LIBRARY_DIRS})
|
link_directories(${CAIRO_LIBRARY_DIRS})
|
||||||
set(PDF2HTMLEX_LIBS ${PDF2HTMLEX_LIBS} ${CAIRO_LIBRARIES})
|
set(PDF2HTMLEX_LIBS ${PDF2HTMLEX_LIBS} ${CAIRO_LIBRARIES})
|
||||||
|
set(ENABLE_SVG 1)
|
||||||
|
set(PDF2HTMLEX_SRC ${PDF2HTMLEX_SRC}
|
||||||
|
src/BackgroundRenderer/CairoOutputDev/CairoFontEngine.h
|
||||||
|
src/BackgroundRenderer/CairoOutputDev/CairoFontEngine.cc
|
||||||
|
src/BackgroundRenderer/CairoOutputDev/CairoRescaleBox.h
|
||||||
|
src/BackgroundRenderer/CairoOutputDev/CairoRescaleBox.cc
|
||||||
|
src/BackgroundRenderer/CairoOutputDev/CairoOutputDev.h
|
||||||
|
src/BackgroundRenderer/CairoOutputDev/CairoOutputDev.cc
|
||||||
|
)
|
||||||
|
else()
|
||||||
|
message(FATAL_ERROR "Error: no SVG support found in Cairo")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
find_package(Freetype REQUIRED)
|
find_package(Freetype REQUIRED)
|
||||||
include_directories(${FREETYPE_INCLUDE_DIRS})
|
include_directories(${FREETYPE_INCLUDE_DIRS})
|
||||||
@ -66,8 +81,7 @@ else()
|
|||||||
else()
|
else()
|
||||||
message(FATAL_ERROR "Error: cannot locate fontforge.h")
|
message(FATAL_ERROR "Error: cannot locate fontforge.h")
|
||||||
endif()
|
endif()
|
||||||
find_path(FF_CONFIG_INCLUDE_PATH config.h PATHS
|
find_path(FF_CONFIG_INCLUDE_PATH config.h PATHS ${FONTFORGE_INCLUDE_DIRS} NO_DEFAULT_PATH)
|
||||||
${FONTFORGE_INCLUDE_DIRS} NO_DEFAULT_PATH)
|
|
||||||
if(FF_CONFIG_INCLUDE_PATH)
|
if(FF_CONFIG_INCLUDE_PATH)
|
||||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -include ${FF_CONFIG_INCLUDE_PATH}/config.h")
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -include ${FF_CONFIG_INCLUDE_PATH}/config.h")
|
||||||
message("Found config.h: ${FF_CONFIG_INCLUDE_PATH}/config.h")
|
message("Found config.h: ${FF_CONFIG_INCLUDE_PATH}/config.h")
|
||||||
@ -153,7 +167,7 @@ configure_file (${CMAKE_SOURCE_DIR}/share/base.css.in ${CMAKE_SOURCE_DIR}/share/
|
|||||||
configure_file (${CMAKE_SOURCE_DIR}/share/fancy.css.in ${CMAKE_SOURCE_DIR}/share/fancy.css)
|
configure_file (${CMAKE_SOURCE_DIR}/share/fancy.css.in ${CMAKE_SOURCE_DIR}/share/fancy.css)
|
||||||
configure_file (${CMAKE_SOURCE_DIR}/share/pdf2htmlEX.js.in ${CMAKE_SOURCE_DIR}/share/pdf2htmlEX.js)
|
configure_file (${CMAKE_SOURCE_DIR}/share/pdf2htmlEX.js.in ${CMAKE_SOURCE_DIR}/share/pdf2htmlEX.js)
|
||||||
|
|
||||||
add_executable(pdf2htmlEX
|
set(PDF2HTMLEX_SRC ${PDF2HTMLEX_SRC}
|
||||||
src/Param.h
|
src/Param.h
|
||||||
src/pdf2htmlEX-config.h
|
src/pdf2htmlEX-config.h
|
||||||
src/pdf2htmlEX.cc
|
src/pdf2htmlEX.cc
|
||||||
@ -171,12 +185,6 @@ add_executable(pdf2htmlEX
|
|||||||
src/BackgroundRenderer/SplashBackgroundRenderer.cc
|
src/BackgroundRenderer/SplashBackgroundRenderer.cc
|
||||||
src/BackgroundRenderer/CairoBackgroundRenderer.h
|
src/BackgroundRenderer/CairoBackgroundRenderer.h
|
||||||
src/BackgroundRenderer/CairoBackgroundRenderer.cc
|
src/BackgroundRenderer/CairoBackgroundRenderer.cc
|
||||||
src/CairoOutputDev/CairoFontEngine.h
|
|
||||||
src/CairoOutputDev/CairoFontEngine.cc
|
|
||||||
src/CairoOutputDev/CairoRescaleBox.h
|
|
||||||
src/CairoOutputDev/CairoRescaleBox.cc
|
|
||||||
src/CairoOutputDev/CairoOutputDev.h
|
|
||||||
src/CairoOutputDev/CairoOutputDev.cc
|
|
||||||
src/util/const.h
|
src/util/const.h
|
||||||
src/util/const.cc
|
src/util/const.cc
|
||||||
src/util/css_const.h
|
src/util/css_const.h
|
||||||
@ -211,6 +219,8 @@ add_executable(pdf2htmlEX
|
|||||||
src/TmpFiles.h
|
src/TmpFiles.h
|
||||||
src/TmpFiles.cc
|
src/TmpFiles.cc
|
||||||
)
|
)
|
||||||
|
|
||||||
|
add_executable(pdf2htmlEX ${PDF2HTMLEX_SRC})
|
||||||
target_link_libraries(pdf2htmlEX ${PDF2HTMLEX_LIBS})
|
target_link_libraries(pdf2htmlEX ${PDF2HTMLEX_LIBS})
|
||||||
|
|
||||||
install (TARGETS pdf2htmlEX DESTINATION bin)
|
install (TARGETS pdf2htmlEX DESTINATION bin)
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
#include "pdf2htmlEX-config.h"
|
#include "pdf2htmlEX-config.h"
|
||||||
|
|
||||||
#if HAVE_CAIRO
|
#if ENABLE_SVG
|
||||||
|
|
||||||
#include "CairoBackgroundRenderer.h"
|
#include "CairoBackgroundRenderer.h"
|
||||||
|
|
||||||
@ -27,6 +27,6 @@ namespace pdf2htmlEX {
|
|||||||
typedef SplashBackgroundRenderer BackgroundRenderer;
|
typedef SplashBackgroundRenderer BackgroundRenderer;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // HAVE_CAIRO
|
#endif // ENABLE_SVG
|
||||||
|
|
||||||
#endif //BACKGROUND_RENDERER_H__
|
#endif //BACKGROUND_RENDERER_H__
|
||||||
|
@ -16,13 +16,13 @@
|
|||||||
#include "pdf2htmlEX-config.h"
|
#include "pdf2htmlEX-config.h"
|
||||||
|
|
||||||
namespace pdf2htmlEX {
|
namespace pdf2htmlEX {
|
||||||
#if HAVE_CAIRO
|
#if ENABLE_SVG
|
||||||
class CairoBackgroundRenderer;
|
class CairoBackgroundRenderer;
|
||||||
typedef CairoBackgroundRenderer BackgroundRenderer;
|
typedef CairoBackgroundRenderer BackgroundRenderer;
|
||||||
#else
|
#else
|
||||||
class SplashBackgroundRenderer;
|
class SplashBackgroundRenderer;
|
||||||
typedef SplashBackgroundRenderer BackgroundRenderer;
|
typedef SplashBackgroundRenderer BackgroundRenderer;
|
||||||
#endif // HAVE_CAIRO
|
#endif // ENABLE_SVG
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
|
|
||||||
#include "Base64Stream.h"
|
#include "Base64Stream.h"
|
||||||
|
|
||||||
#if HAVE_CAIRO
|
#if ENABLE_SVG
|
||||||
|
|
||||||
#include "CairoBackgroundRenderer.h"
|
#include "CairoBackgroundRenderer.h"
|
||||||
|
|
||||||
@ -121,5 +121,5 @@ void CairoBackgroundRenderer::embed_image(int pageno)
|
|||||||
|
|
||||||
} // namespace pdf2htmlEX
|
} // namespace pdf2htmlEX
|
||||||
|
|
||||||
#endif // HAVE_CAIRO
|
#endif // ENABLE_SVG
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
#ifndef CAIRO_BACKGROUND_RENDERER_H__
|
#ifndef CAIRO_BACKGROUND_RENDERER_H__
|
||||||
#define CAIRO_BACKGROUND_RENDERER_H__
|
#define CAIRO_BACKGROUND_RENDERER_H__
|
||||||
|
|
||||||
#include <CairoOutputDev/CairoOutputDev.h>
|
#include <BackgroundRenderer/CairoOutputDev/CairoOutputDev.h>
|
||||||
#include <cairo.h>
|
#include <cairo.h>
|
||||||
#include <cairo-svg.h>
|
#include <cairo-svg.h>
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
// Copyright (C) 2005-2007 Jeff Muizelaar <jeff@infidigm.net>
|
// Copyright (C) 2005-2007 Jeff Muizelaar <jeff@infidigm.net>
|
||||||
// Copyright (C) 2005, 2006 Kristian Høgsberg <krh@redhat.com>
|
// Copyright (C) 2005, 2006 Kristian Høgsberg <krh@redhat.com>
|
||||||
// Copyright (C) 2005 Martin Kretzschmar <martink@gnome.org>
|
// Copyright (C) 2005 Martin Kretzschmar <martink@gnome.org>
|
||||||
// Copyright (C) 2005, 2009, 2012 Albert Astals Cid <aacid@kde.org>
|
// Copyright (C) 2005, 2009, 2012, 2013 Albert Astals Cid <aacid@kde.org>
|
||||||
// Copyright (C) 2006, 2007, 2010, 2011 Carlos Garcia Campos <carlosgc@gnome.org>
|
// Copyright (C) 2006, 2007, 2010, 2011 Carlos Garcia Campos <carlosgc@gnome.org>
|
||||||
// Copyright (C) 2007 Koji Otani <sho@bbr.jp>
|
// Copyright (C) 2007 Koji Otani <sho@bbr.jp>
|
||||||
// Copyright (C) 2008, 2009 Chris Wilson <chris@chris-wilson.co.uk>
|
// Copyright (C) 2008, 2009 Chris Wilson <chris@chris-wilson.co.uk>
|
||||||
@ -26,15 +26,15 @@
|
|||||||
// Copyright (C) 2010 Suzuki Toshiya <mpsuzuki@hiroshima-u.ac.jp>
|
// Copyright (C) 2010 Suzuki Toshiya <mpsuzuki@hiroshima-u.ac.jp>
|
||||||
// Copyright (C) 2010 Jan Kümmel <jan+freedesktop@snorc.org>
|
// Copyright (C) 2010 Jan Kümmel <jan+freedesktop@snorc.org>
|
||||||
// Copyright (C) 2012 Hib Eris <hib@hiberis.nl>
|
// Copyright (C) 2012 Hib Eris <hib@hiberis.nl>
|
||||||
|
// Copyright (C) 2013 Thomas Freitag <Thomas.Freitag@alfa.de>
|
||||||
//
|
//
|
||||||
// To see a description of the changes please see the Changelog file that
|
// To see a description of the changes please see the Changelog file that
|
||||||
// came with your tarball or type make ChangeLog if you are building from git
|
// came with your tarball or type make ChangeLog if you are building from git
|
||||||
//
|
//
|
||||||
//========================================================================
|
//========================================================================
|
||||||
|
|
||||||
#include <config.h>
|
#include <poppler-config.h>
|
||||||
|
|
||||||
#include "config.h"
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include "CairoFontEngine.h"
|
#include "CairoFontEngine.h"
|
||||||
#include "CairoOutputDev.h"
|
#include "CairoOutputDev.h"
|
||||||
@ -58,6 +58,16 @@
|
|||||||
#pragma implementation
|
#pragma implementation
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/*
|
||||||
|
* multi thread disabled by WangLu
|
||||||
|
#if MULTITHREADED
|
||||||
|
# define fontEngineLocker() MutexLocker locker(&mutex)
|
||||||
|
#else
|
||||||
|
*/
|
||||||
|
# define fontEngineLocker()
|
||||||
|
/*
|
||||||
|
#endif
|
||||||
|
*/
|
||||||
|
|
||||||
//------------------------------------------------------------------------
|
//------------------------------------------------------------------------
|
||||||
// CairoFont
|
// CairoFont
|
||||||
@ -558,6 +568,7 @@ typedef struct _type3_font_info {
|
|||||||
PDFDoc *doc;
|
PDFDoc *doc;
|
||||||
CairoFontEngine *fontEngine;
|
CairoFontEngine *fontEngine;
|
||||||
GBool printing;
|
GBool printing;
|
||||||
|
XRef *xref;
|
||||||
} type3_font_info_t;
|
} type3_font_info_t;
|
||||||
|
|
||||||
static void
|
static void
|
||||||
@ -645,7 +656,7 @@ _render_type3_glyph (cairo_scaled_font_t *scaled_font,
|
|||||||
box.y2 = mat[3];
|
box.y2 = mat[3];
|
||||||
gfx = new Gfx(info->doc, output_dev, resDict, &box, NULL);
|
gfx = new Gfx(info->doc, output_dev, resDict, &box, NULL);
|
||||||
output_dev->startDoc(info->doc, info->fontEngine);
|
output_dev->startDoc(info->doc, info->fontEngine);
|
||||||
output_dev->startPage (1, gfx->getState());
|
output_dev->startPage (1, gfx->getState(), gfx->getXRef());
|
||||||
output_dev->setInType3Char(gTrue);
|
output_dev->setInType3Char(gTrue);
|
||||||
gfx->display(charProcs->getVal(glyph, &charProc));
|
gfx->display(charProcs->getVal(glyph, &charProc));
|
||||||
|
|
||||||
@ -674,7 +685,7 @@ _render_type3_glyph (cairo_scaled_font_t *scaled_font,
|
|||||||
|
|
||||||
CairoType3Font *CairoType3Font::create(GfxFont *gfxFont, PDFDoc *doc,
|
CairoType3Font *CairoType3Font::create(GfxFont *gfxFont, PDFDoc *doc,
|
||||||
CairoFontEngine *fontEngine,
|
CairoFontEngine *fontEngine,
|
||||||
GBool printing) {
|
GBool printing, XRef *xref) {
|
||||||
Object refObj, strObj;
|
Object refObj, strObj;
|
||||||
type3_font_info_t *info;
|
type3_font_info_t *info;
|
||||||
cairo_font_face_t *font_face;
|
cairo_font_face_t *font_face;
|
||||||
@ -697,6 +708,7 @@ CairoType3Font *CairoType3Font::create(GfxFont *gfxFont, PDFDoc *doc,
|
|||||||
info->doc = doc;
|
info->doc = doc;
|
||||||
info->fontEngine = fontEngine;
|
info->fontEngine = fontEngine;
|
||||||
info->printing = printing;
|
info->printing = printing;
|
||||||
|
info->xref = xref;
|
||||||
|
|
||||||
cairo_font_face_set_user_data (font_face, &type3_font_key, (void *) info, _free_type3_font_info);
|
cairo_font_face_set_user_data (font_face, &type3_font_key, (void *) info, _free_type3_font_info);
|
||||||
|
|
||||||
@ -714,7 +726,7 @@ CairoType3Font *CairoType3Font::create(GfxFont *gfxFont, PDFDoc *doc,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return new CairoType3Font(ref, doc, font_face, codeToGID, codeToGIDLen, printing);
|
return new CairoType3Font(ref, doc, font_face, codeToGID, codeToGIDLen, printing, xref);
|
||||||
}
|
}
|
||||||
|
|
||||||
CairoType3Font::CairoType3Font(Ref ref,
|
CairoType3Font::CairoType3Font(Ref ref,
|
||||||
@ -722,7 +734,7 @@ CairoType3Font::CairoType3Font(Ref ref,
|
|||||||
cairo_font_face_t *cairo_font_face,
|
cairo_font_face_t *cairo_font_face,
|
||||||
int *codeToGID,
|
int *codeToGID,
|
||||||
Guint codeToGIDLen,
|
Guint codeToGIDLen,
|
||||||
GBool printing) : CairoFont(ref,
|
GBool printing, XRef *xref) : CairoFont(ref,
|
||||||
cairo_font_face,
|
cairo_font_face,
|
||||||
codeToGID,
|
codeToGID,
|
||||||
codeToGIDLen,
|
codeToGIDLen,
|
||||||
@ -755,6 +767,12 @@ CairoFontEngine::CairoFontEngine(FT_Library libA) {
|
|||||||
FT_Library_Version(lib, &major, &minor, &patch);
|
FT_Library_Version(lib, &major, &minor, &patch);
|
||||||
useCIDs = major > 2 ||
|
useCIDs = major > 2 ||
|
||||||
(major == 2 && (minor > 1 || (minor == 1 && patch > 7)));
|
(major == 2 && (minor > 1 || (minor == 1 && patch > 7)));
|
||||||
|
/*
|
||||||
|
* multi thread disabled by WangLu
|
||||||
|
#if MULTITHREADED
|
||||||
|
gInitMutex(&mutex);
|
||||||
|
#endif
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
CairoFontEngine::~CairoFontEngine() {
|
CairoFontEngine::~CairoFontEngine() {
|
||||||
@ -764,15 +782,22 @@ CairoFontEngine::~CairoFontEngine() {
|
|||||||
if (fontCache[i])
|
if (fontCache[i])
|
||||||
delete fontCache[i];
|
delete fontCache[i];
|
||||||
}
|
}
|
||||||
|
/*
|
||||||
|
* multi thread disabled by WangLu
|
||||||
|
#if MULTITHREADED
|
||||||
|
gDestroyMutex(&mutex);
|
||||||
|
#endif
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
CairoFont *
|
CairoFont *
|
||||||
CairoFontEngine::getFont(GfxFont *gfxFont, PDFDoc *doc, GBool printing) {
|
CairoFontEngine::getFont(GfxFont *gfxFont, PDFDoc *doc, GBool printing, XRef *xref) {
|
||||||
int i, j;
|
int i, j;
|
||||||
Ref ref;
|
Ref ref;
|
||||||
CairoFont *font;
|
CairoFont *font;
|
||||||
GfxFontType fontType;
|
GfxFontType fontType;
|
||||||
|
|
||||||
|
fontEngineLocker();
|
||||||
ref = *gfxFont->getID();
|
ref = *gfxFont->getID();
|
||||||
|
|
||||||
for (i = 0; i < cairoFontCacheSize; ++i) {
|
for (i = 0; i < cairoFontCacheSize; ++i) {
|
||||||
@ -788,9 +813,9 @@ CairoFontEngine::getFont(GfxFont *gfxFont, PDFDoc *doc, GBool printing) {
|
|||||||
|
|
||||||
fontType = gfxFont->getType();
|
fontType = gfxFont->getType();
|
||||||
if (fontType == fontType3)
|
if (fontType == fontType3)
|
||||||
font = CairoType3Font::create (gfxFont, doc, this, printing);
|
font = CairoType3Font::create (gfxFont, doc, this, printing, xref);
|
||||||
else
|
else
|
||||||
font = CairoFreeTypeFont::create (gfxFont, doc->getXRef(), lib, useCIDs);
|
font = CairoFreeTypeFont::create (gfxFont, xref, lib, useCIDs);
|
||||||
|
|
||||||
//XXX: if font is null should we still insert it into the cache?
|
//XXX: if font is null should we still insert it into the cache?
|
||||||
if (fontCache[cairoFontCacheSize - 1]) {
|
if (fontCache[cairoFontCacheSize - 1]) {
|
||||||
|
@ -19,6 +19,7 @@
|
|||||||
// Copyright (C) 2006, 2007 Jeff Muizelaar <jeff@infidigm.net>
|
// Copyright (C) 2006, 2007 Jeff Muizelaar <jeff@infidigm.net>
|
||||||
// Copyright (C) 2006, 2010 Carlos Garcia Campos <carlosgc@gnome.org>
|
// Copyright (C) 2006, 2010 Carlos Garcia Campos <carlosgc@gnome.org>
|
||||||
// Copyright (C) 2008 Adrian Johnson <ajohnson@redneon.com>
|
// Copyright (C) 2008 Adrian Johnson <ajohnson@redneon.com>
|
||||||
|
// Copyright (C) 2013 Thomas Freitag <Thomas.Freitag@alfa.de>
|
||||||
//
|
//
|
||||||
// To see a description of the changes please see the Changelog file that
|
// To see a description of the changes please see the Changelog file that
|
||||||
// came with your tarball or type make ChangeLog if you are building from git
|
// came with your tarball or type make ChangeLog if you are building from git
|
||||||
@ -32,6 +33,7 @@
|
|||||||
#pragma interface
|
#pragma interface
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include "poppler-config.h"
|
||||||
#include "goo/gtypes.h"
|
#include "goo/gtypes.h"
|
||||||
#include <cairo-ft.h>
|
#include <cairo-ft.h>
|
||||||
|
|
||||||
@ -85,7 +87,7 @@ class CairoType3Font : public CairoFont {
|
|||||||
public:
|
public:
|
||||||
static CairoType3Font *create(GfxFont *gfxFont, PDFDoc *doc,
|
static CairoType3Font *create(GfxFont *gfxFont, PDFDoc *doc,
|
||||||
CairoFontEngine *fontEngine,
|
CairoFontEngine *fontEngine,
|
||||||
GBool printing);
|
GBool printing, XRef *xref);
|
||||||
virtual ~CairoType3Font();
|
virtual ~CairoType3Font();
|
||||||
|
|
||||||
virtual GBool matches(Ref &other, GBool printing);
|
virtual GBool matches(Ref &other, GBool printing);
|
||||||
@ -94,7 +96,7 @@ private:
|
|||||||
CairoType3Font(Ref ref, PDFDoc *doc,
|
CairoType3Font(Ref ref, PDFDoc *doc,
|
||||||
cairo_font_face_t *cairo_font_face,
|
cairo_font_face_t *cairo_font_face,
|
||||||
int *codeToGID, Guint codeToGIDLen,
|
int *codeToGID, Guint codeToGIDLen,
|
||||||
GBool printing);
|
GBool printing, XRef *xref);
|
||||||
PDFDoc *doc;
|
PDFDoc *doc;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -113,12 +115,18 @@ public:
|
|||||||
CairoFontEngine(FT_Library libA);
|
CairoFontEngine(FT_Library libA);
|
||||||
~CairoFontEngine();
|
~CairoFontEngine();
|
||||||
|
|
||||||
CairoFont *getFont(GfxFont *gfxFont, PDFDoc *doc, GBool printing);
|
CairoFont *getFont(GfxFont *gfxFont, PDFDoc *doc, GBool printing, XRef *xref);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
CairoFont *fontCache[cairoFontCacheSize];
|
CairoFont *fontCache[cairoFontCacheSize];
|
||||||
FT_Library lib;
|
FT_Library lib;
|
||||||
GBool useCIDs;
|
GBool useCIDs;
|
||||||
|
/*
|
||||||
|
* multi thread disabled by WangLu
|
||||||
|
#if MULTITHREADED
|
||||||
|
GooMutex mutex;
|
||||||
|
#endif
|
||||||
|
*/
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -18,22 +18,23 @@
|
|||||||
// Copyright (C) 2005, 2006 Kristian Høgsberg <krh@redhat.com>
|
// Copyright (C) 2005, 2006 Kristian Høgsberg <krh@redhat.com>
|
||||||
// Copyright (C) 2005, 2009, 2012 Albert Astals Cid <aacid@kde.org>
|
// Copyright (C) 2005, 2009, 2012 Albert Astals Cid <aacid@kde.org>
|
||||||
// Copyright (C) 2005 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
|
// Copyright (C) 2005 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
|
||||||
// Copyright (C) 2006-2011 Carlos Garcia Campos <carlosgc@gnome.org>
|
// Copyright (C) 2006-2011, 2013 Carlos Garcia Campos <carlosgc@gnome.org>
|
||||||
// Copyright (C) 2008 Carl Worth <cworth@cworth.org>
|
// Copyright (C) 2008 Carl Worth <cworth@cworth.org>
|
||||||
// Copyright (C) 2008-2012 Adrian Johnson <ajohnson@redneon.com>
|
// Copyright (C) 2008-2013 Adrian Johnson <ajohnson@redneon.com>
|
||||||
// Copyright (C) 2008 Michael Vrable <mvrable@cs.ucsd.edu>
|
// Copyright (C) 2008 Michael Vrable <mvrable@cs.ucsd.edu>
|
||||||
// Copyright (C) 2008, 2009 Chris Wilson <chris@chris-wilson.co.uk>
|
// Copyright (C) 2008, 2009 Chris Wilson <chris@chris-wilson.co.uk>
|
||||||
// Copyright (C) 2008 Hib Eris <hib@hiberis.nl>
|
// Copyright (C) 2008, 2012 Hib Eris <hib@hiberis.nl>
|
||||||
// Copyright (C) 2009, 2010 David Benjamin <davidben@mit.edu>
|
// Copyright (C) 2009, 2010 David Benjamin <davidben@mit.edu>
|
||||||
// Copyright (C) 2011, 2012 Thomas Freitag <Thomas.Freitag@alfa.de>
|
// Copyright (C) 2011-2013 Thomas Freitag <Thomas.Freitag@alfa.de>
|
||||||
// Copyright (C) 2012 Patrick Pfeifer <p2000@mailinator.com>
|
// Copyright (C) 2012 Patrick Pfeifer <p2000@mailinator.com>
|
||||||
|
// Copyright (C) 2012 Jason Crain <jason@aquaticape.us>
|
||||||
//
|
//
|
||||||
// To see a description of the changes please see the Changelog file that
|
// To see a description of the changes please see the Changelog file that
|
||||||
// came with your tarball or type make ChangeLog if you are building from git
|
// came with your tarball or type make ChangeLog if you are building from git
|
||||||
//
|
//
|
||||||
//========================================================================
|
//========================================================================
|
||||||
|
|
||||||
#include <config.h>
|
#include <poppler-config.h>
|
||||||
|
|
||||||
#ifdef USE_GCC_PRAGMAS
|
#ifdef USE_GCC_PRAGMAS
|
||||||
#pragma implementation
|
#pragma implementation
|
||||||
@ -43,9 +44,9 @@
|
|||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <cairo.h>
|
#include <cairo.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
#include "goo/gfile.h"
|
#include "goo/gfile.h"
|
||||||
#include "goo/gtypes_p.h"
|
|
||||||
#include "GlobalParams.h"
|
#include "GlobalParams.h"
|
||||||
#include "Error.h"
|
#include "Error.h"
|
||||||
#include "Object.h"
|
#include "Object.h"
|
||||||
@ -61,7 +62,7 @@
|
|||||||
#include "CairoOutputDev.h"
|
#include "CairoOutputDev.h"
|
||||||
#include "CairoFontEngine.h"
|
#include "CairoFontEngine.h"
|
||||||
#include "CairoRescaleBox.h"
|
#include "CairoRescaleBox.h"
|
||||||
#include "UTF.h"
|
#include "UnicodeMap.h"
|
||||||
//------------------------------------------------------------------------
|
//------------------------------------------------------------------------
|
||||||
|
|
||||||
// #define LOG_CAIRO
|
// #define LOG_CAIRO
|
||||||
@ -143,6 +144,7 @@ CairoOutputDev::CairoOutputDev() {
|
|||||||
prescaleImages = gTrue;
|
prescaleImages = gTrue;
|
||||||
printing = gTrue;
|
printing = gTrue;
|
||||||
use_show_text_glyphs = gFalse;
|
use_show_text_glyphs = gFalse;
|
||||||
|
inUncoloredPattern = gFalse;
|
||||||
inType3Char = gFalse;
|
inType3Char = gFalse;
|
||||||
t3_glyph_has_bbox = gFalse;
|
t3_glyph_has_bbox = gFalse;
|
||||||
|
|
||||||
@ -162,6 +164,7 @@ CairoOutputDev::CairoOutputDev() {
|
|||||||
stroke_adjust = globalParams->getStrokeAdjust();
|
stroke_adjust = globalParams->getStrokeAdjust();
|
||||||
align_stroke_coords = gFalse;
|
align_stroke_coords = gFalse;
|
||||||
adjusted_stroke_width = gFalse;
|
adjusted_stroke_width = gFalse;
|
||||||
|
xref = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
CairoOutputDev::~CairoOutputDev() {
|
CairoOutputDev::~CairoOutputDev() {
|
||||||
@ -234,18 +237,24 @@ void CairoOutputDev::startDoc(PDFDoc *docA,
|
|||||||
fontEngine = new CairoFontEngine(ft_lib);
|
fontEngine = new CairoFontEngine(ft_lib);
|
||||||
fontEngine_owner = gTrue;
|
fontEngine_owner = gTrue;
|
||||||
}
|
}
|
||||||
|
xref = doc->getXRef();
|
||||||
}
|
}
|
||||||
|
|
||||||
void CairoOutputDev::startPage(int pageNum, GfxState *state) {
|
void CairoOutputDev::startPage(int pageNum, GfxState *state, XRef *xrefA) {
|
||||||
/* set up some per page defaults */
|
/* set up some per page defaults */
|
||||||
cairo_pattern_destroy(fill_pattern);
|
cairo_pattern_destroy(fill_pattern);
|
||||||
cairo_pattern_destroy(stroke_pattern);
|
cairo_pattern_destroy(stroke_pattern);
|
||||||
|
|
||||||
fill_pattern = cairo_pattern_create_rgb(0., 0., 0.);
|
fill_pattern = cairo_pattern_create_rgb(0., 0., 0.);
|
||||||
|
fill_color.r = fill_color.g = fill_color.b = 0;
|
||||||
stroke_pattern = cairo_pattern_reference(fill_pattern);
|
stroke_pattern = cairo_pattern_reference(fill_pattern);
|
||||||
|
stroke_color.r = stroke_color.g = stroke_color.b = 0;
|
||||||
|
|
||||||
if (text)
|
if (text)
|
||||||
text->startPage(state);
|
text->startPage(state);
|
||||||
|
if (xrefA != NULL) {
|
||||||
|
xref = xrefA;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void CairoOutputDev::endPage() {
|
void CairoOutputDev::endPage() {
|
||||||
@ -453,6 +462,9 @@ void CairoOutputDev::updateLineWidth(GfxState *state) {
|
|||||||
void CairoOutputDev::updateFillColor(GfxState *state) {
|
void CairoOutputDev::updateFillColor(GfxState *state) {
|
||||||
GfxRGB color = fill_color;
|
GfxRGB color = fill_color;
|
||||||
|
|
||||||
|
if (inUncoloredPattern)
|
||||||
|
return;
|
||||||
|
|
||||||
state->getFillRGB(&fill_color);
|
state->getFillRGB(&fill_color);
|
||||||
if (cairo_pattern_get_type (fill_pattern) != CAIRO_PATTERN_TYPE_SOLID ||
|
if (cairo_pattern_get_type (fill_pattern) != CAIRO_PATTERN_TYPE_SOLID ||
|
||||||
color.r != fill_color.r ||
|
color.r != fill_color.r ||
|
||||||
@ -473,6 +485,9 @@ void CairoOutputDev::updateFillColor(GfxState *state) {
|
|||||||
void CairoOutputDev::updateStrokeColor(GfxState *state) {
|
void CairoOutputDev::updateStrokeColor(GfxState *state) {
|
||||||
GfxRGB color = stroke_color;
|
GfxRGB color = stroke_color;
|
||||||
|
|
||||||
|
if (inUncoloredPattern)
|
||||||
|
return;
|
||||||
|
|
||||||
state->getStrokeRGB(&stroke_color);
|
state->getStrokeRGB(&stroke_color);
|
||||||
if (cairo_pattern_get_type (fill_pattern) != CAIRO_PATTERN_TYPE_SOLID ||
|
if (cairo_pattern_get_type (fill_pattern) != CAIRO_PATTERN_TYPE_SOLID ||
|
||||||
color.r != stroke_color.r ||
|
color.r != stroke_color.r ||
|
||||||
@ -493,6 +508,9 @@ void CairoOutputDev::updateStrokeColor(GfxState *state) {
|
|||||||
void CairoOutputDev::updateFillOpacity(GfxState *state) {
|
void CairoOutputDev::updateFillOpacity(GfxState *state) {
|
||||||
double opacity = fill_opacity;
|
double opacity = fill_opacity;
|
||||||
|
|
||||||
|
if (inUncoloredPattern)
|
||||||
|
return;
|
||||||
|
|
||||||
fill_opacity = state->getFillOpacity();
|
fill_opacity = state->getFillOpacity();
|
||||||
if (opacity != fill_opacity) {
|
if (opacity != fill_opacity) {
|
||||||
cairo_pattern_destroy(fill_pattern);
|
cairo_pattern_destroy(fill_pattern);
|
||||||
@ -508,6 +526,9 @@ void CairoOutputDev::updateFillOpacity(GfxState *state) {
|
|||||||
void CairoOutputDev::updateStrokeOpacity(GfxState *state) {
|
void CairoOutputDev::updateStrokeOpacity(GfxState *state) {
|
||||||
double opacity = stroke_opacity;
|
double opacity = stroke_opacity;
|
||||||
|
|
||||||
|
if (inUncoloredPattern)
|
||||||
|
return;
|
||||||
|
|
||||||
stroke_opacity = state->getStrokeOpacity();
|
stroke_opacity = state->getStrokeOpacity();
|
||||||
if (opacity != stroke_opacity) {
|
if (opacity != stroke_opacity) {
|
||||||
cairo_pattern_destroy(stroke_pattern);
|
cairo_pattern_destroy(stroke_pattern);
|
||||||
@ -521,6 +542,9 @@ void CairoOutputDev::updateStrokeOpacity(GfxState *state) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void CairoOutputDev::updateFillColorStop(GfxState *state, double offset) {
|
void CairoOutputDev::updateFillColorStop(GfxState *state, double offset) {
|
||||||
|
if (inUncoloredPattern)
|
||||||
|
return;
|
||||||
|
|
||||||
state->getFillRGB(&fill_color);
|
state->getFillRGB(&fill_color);
|
||||||
|
|
||||||
cairo_pattern_add_color_stop_rgba(fill_pattern, offset,
|
cairo_pattern_add_color_stop_rgba(fill_pattern, offset,
|
||||||
@ -599,7 +623,7 @@ void CairoOutputDev::updateFont(GfxState *state) {
|
|||||||
if (text)
|
if (text)
|
||||||
text->updateFont(state);
|
text->updateFont(state);
|
||||||
|
|
||||||
currentFont = fontEngine->getFont (state->getFont(), doc, printing);
|
currentFont = fontEngine->getFont (state->getFont(), doc, printing, xref);
|
||||||
|
|
||||||
if (!currentFont)
|
if (!currentFont)
|
||||||
return;
|
return;
|
||||||
@ -802,7 +826,7 @@ void CairoOutputDev::eoFill(GfxState *state) {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
GBool CairoOutputDev::tilingPatternFill(GfxState *state, Gfx *gfx1, Catalog *cat, Object *str,
|
GBool CairoOutputDev::tilingPatternFill(GfxState *state, Gfx *gfxA, Catalog *cat, Object *str,
|
||||||
double *pmat, int paintType, int /*tilingType*/, Dict *resDict,
|
double *pmat, int paintType, int /*tilingType*/, Dict *resDict,
|
||||||
double *mat, double *bbox,
|
double *mat, double *bbox,
|
||||||
int x0, int y0, int x1, int y1,
|
int x0, int y0, int x1, int y1,
|
||||||
@ -843,8 +867,12 @@ GBool CairoOutputDev::tilingPatternFill(GfxState *state, Gfx *gfx1, Catalog *cat
|
|||||||
box.x2 = bbox[2]; box.y2 = bbox[3];
|
box.x2 = bbox[2]; box.y2 = bbox[3];
|
||||||
strokePathTmp = strokePathClip;
|
strokePathTmp = strokePathClip;
|
||||||
strokePathClip = NULL;
|
strokePathClip = NULL;
|
||||||
gfx = new Gfx(doc, this, resDict, &box, NULL);
|
gfx = new Gfx(doc, this, resDict, &box, NULL, NULL, NULL, gfxA->getXRef());
|
||||||
|
if (paintType == 2)
|
||||||
|
inUncoloredPattern = gTrue;
|
||||||
gfx->display(str);
|
gfx->display(str);
|
||||||
|
if (paintType == 2)
|
||||||
|
inUncoloredPattern = gFalse;
|
||||||
delete gfx;
|
delete gfx;
|
||||||
strokePathClip = strokePathTmp;
|
strokePathClip = strokePathTmp;
|
||||||
|
|
||||||
@ -945,10 +973,21 @@ GBool CairoOutputDev::gouraudTriangleShadedFill(GfxState *state, GfxGouraudTrian
|
|||||||
fill_pattern = cairo_pattern_create_mesh ();
|
fill_pattern = cairo_pattern_create_mesh ();
|
||||||
|
|
||||||
for (i = 0; i < shading->getNTriangles(); i++) {
|
for (i = 0; i < shading->getNTriangles(); i++) {
|
||||||
shading->getTriangle(i,
|
if (shading->isParameterized()) {
|
||||||
&x0, &y0, &color[0],
|
double color0, color1, color2;
|
||||||
&x1, &y1, &color[1],
|
shading->getTriangle(i, &x0, &y0, &color0,
|
||||||
&x2, &y2, &color[2]);
|
&x1, &y1, &color1,
|
||||||
|
&x2, &y2, &color2);
|
||||||
|
shading->getParameterizedColor(color0, &color[0]);
|
||||||
|
shading->getParameterizedColor(color1, &color[1]);
|
||||||
|
shading->getParameterizedColor(color2, &color[2]);
|
||||||
|
} else {
|
||||||
|
shading->getTriangle(i,
|
||||||
|
&x0, &y0, &color[0],
|
||||||
|
&x1, &y1, &color[1],
|
||||||
|
&x2, &y2, &color[2]);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
cairo_mesh_pattern_begin_patch (fill_pattern);
|
cairo_mesh_pattern_begin_patch (fill_pattern);
|
||||||
|
|
||||||
@ -1169,6 +1208,8 @@ void CairoOutputDev::drawChar(GfxState *state, double x, double y,
|
|||||||
glyphs[glyphCount].y = y - originY;
|
glyphs[glyphCount].y = y - originY;
|
||||||
glyphCount++;
|
glyphCount++;
|
||||||
if (use_show_text_glyphs) {
|
if (use_show_text_glyphs) {
|
||||||
|
GooString enc("UTF-8");
|
||||||
|
UnicodeMap *utf8Map = globalParams->getUnicodeMap(&enc);
|
||||||
if (utf8Max - utf8Count < uLen*6) {
|
if (utf8Max - utf8Count < uLen*6) {
|
||||||
// utf8 encoded characters can be up to 6 bytes
|
// utf8 encoded characters can be up to 6 bytes
|
||||||
if (utf8Max > uLen*6)
|
if (utf8Max > uLen*6)
|
||||||
@ -1179,7 +1220,7 @@ void CairoOutputDev::drawChar(GfxState *state, double x, double y,
|
|||||||
}
|
}
|
||||||
clusters[clusterCount].num_bytes = 0;
|
clusters[clusterCount].num_bytes = 0;
|
||||||
for (int i = 0; i < uLen; i++) {
|
for (int i = 0; i < uLen; i++) {
|
||||||
int size = mapUTF8 (u[i], utf8 + utf8Count, utf8Max - utf8Count);
|
int size = utf8Map->mapUnicode(u[i], utf8 + utf8Count, utf8Max - utf8Count);
|
||||||
utf8Count += size;
|
utf8Count += size;
|
||||||
clusters[clusterCount].num_bytes += size;
|
clusters[clusterCount].num_bytes += size;
|
||||||
}
|
}
|
||||||
@ -1536,7 +1577,7 @@ void CairoOutputDev::setSoftMask(GfxState * state, double * bbox, GBool alpha,
|
|||||||
|
|
||||||
LOG(printf ("set softMask\n"));
|
LOG(printf ("set softMask\n"));
|
||||||
|
|
||||||
if (alpha == false) {
|
if (!alpha || transferFunc) {
|
||||||
/* We need to mask according to the luminocity of the group.
|
/* We need to mask according to the luminocity of the group.
|
||||||
* So we paint the group to an image surface convert it to a luminocity map
|
* So we paint the group to an image surface convert it to a luminocity map
|
||||||
* and then use that as the mask. */
|
* and then use that as the mask. */
|
||||||
@ -1579,13 +1620,15 @@ void CairoOutputDev::setSoftMask(GfxState * state, double * bbox, GBool alpha,
|
|||||||
cairo_t *maskCtx = cairo_create(source);
|
cairo_t *maskCtx = cairo_create(source);
|
||||||
|
|
||||||
//XXX: hopefully this uses the correct color space */
|
//XXX: hopefully this uses the correct color space */
|
||||||
GfxRGB backdropColorRGB;
|
if (!alpha) {
|
||||||
groupColorSpaceStack->cs->getRGB(backdropColor, &backdropColorRGB);
|
GfxRGB backdropColorRGB;
|
||||||
/* paint the backdrop */
|
groupColorSpaceStack->cs->getRGB(backdropColor, &backdropColorRGB);
|
||||||
cairo_set_source_rgb(maskCtx,
|
/* paint the backdrop */
|
||||||
colToDbl(backdropColorRGB.r),
|
cairo_set_source_rgb(maskCtx,
|
||||||
colToDbl(backdropColorRGB.g),
|
colToDbl(backdropColorRGB.r),
|
||||||
colToDbl(backdropColorRGB.b));
|
colToDbl(backdropColorRGB.g),
|
||||||
|
colToDbl(backdropColorRGB.b));
|
||||||
|
}
|
||||||
cairo_paint(maskCtx);
|
cairo_paint(maskCtx);
|
||||||
|
|
||||||
/* Copy source ctm to mask ctm and translate origin so that the
|
/* Copy source ctm to mask ctm and translate origin so that the
|
||||||
@ -1612,15 +1655,14 @@ void CairoOutputDev::setSoftMask(GfxState * state, double * bbox, GBool alpha,
|
|||||||
int stride = cairo_image_surface_get_stride(source)/4;
|
int stride = cairo_image_surface_get_stride(source)/4;
|
||||||
for (int y=0; y<height; y++) {
|
for (int y=0; y<height; y++) {
|
||||||
for (int x=0; x<width; x++) {
|
for (int x=0; x<width; x++) {
|
||||||
int lum;
|
int lum = alpha ? fill_opacity : luminocity(source_data[y*stride + x]);
|
||||||
lum = luminocity(source_data[y*stride + x]);
|
if (transferFunc) {
|
||||||
if (transferFunc) {
|
double lum_in, lum_out;
|
||||||
double lum_in, lum_out;
|
lum_in = lum/256.0;
|
||||||
lum_in = lum/256.0;
|
transferFunc->transform(&lum_in, &lum_out);
|
||||||
transferFunc->transform(&lum_in, &lum_out);
|
lum = (int)(lum_out * 255.0 + 0.5);
|
||||||
lum = (int)(lum_out * 255.0 + 0.5);
|
}
|
||||||
}
|
source_data[y*stride + x] = lum << 24;
|
||||||
source_data[y*stride + x] = lum << 24;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
cairo_surface_mark_dirty (source);
|
cairo_surface_mark_dirty (source);
|
||||||
@ -1640,7 +1682,7 @@ void CairoOutputDev::setSoftMask(GfxState * state, double * bbox, GBool alpha,
|
|||||||
}
|
}
|
||||||
|
|
||||||
cairo_surface_destroy(source);
|
cairo_surface_destroy(source);
|
||||||
} else {
|
} else if (alpha) {
|
||||||
mask = cairo_pattern_reference(group);
|
mask = cairo_pattern_reference(group);
|
||||||
cairo_get_matrix(cairo, &mask_matrix);
|
cairo_get_matrix(cairo, &mask_matrix);
|
||||||
}
|
}
|
||||||
@ -1694,27 +1736,26 @@ get_singular_values (const cairo_matrix_t *matrix,
|
|||||||
*minor = sqrt (f - delta);
|
*minor = sqrt (f - delta);
|
||||||
}
|
}
|
||||||
|
|
||||||
void CairoOutputDev::getScaledSize(int orig_width,
|
void CairoOutputDev::getScaledSize(const cairo_matrix_t *matrix,
|
||||||
int orig_height,
|
int orig_width,
|
||||||
int *scaledWidth,
|
int orig_height,
|
||||||
int *scaledHeight) {
|
int *scaledWidth,
|
||||||
cairo_matrix_t matrix;
|
int *scaledHeight)
|
||||||
cairo_get_matrix(cairo, &matrix);
|
{
|
||||||
|
|
||||||
double xScale;
|
double xScale;
|
||||||
double yScale;
|
double yScale;
|
||||||
if (orig_width > orig_height)
|
if (orig_width > orig_height)
|
||||||
get_singular_values (&matrix, &xScale, &yScale);
|
get_singular_values (matrix, &xScale, &yScale);
|
||||||
else
|
else
|
||||||
get_singular_values (&matrix, &yScale, &xScale);
|
get_singular_values (matrix, &yScale, &xScale);
|
||||||
|
|
||||||
int tx, tx2, ty, ty2; /* the integer co-oridinates of the resulting image */
|
int tx, tx2, ty, ty2; /* the integer co-oridinates of the resulting image */
|
||||||
if (xScale >= 0) {
|
if (xScale >= 0) {
|
||||||
tx = splashRound(matrix.x0 - 0.01);
|
tx = splashRound(matrix->x0 - 0.01);
|
||||||
tx2 = splashRound(matrix.x0 + xScale + 0.01) - 1;
|
tx2 = splashRound(matrix->x0 + xScale + 0.01) - 1;
|
||||||
} else {
|
} else {
|
||||||
tx = splashRound(matrix.x0 + 0.01) - 1;
|
tx = splashRound(matrix->x0 + 0.01) - 1;
|
||||||
tx2 = splashRound(matrix.x0 + xScale - 0.01);
|
tx2 = splashRound(matrix->x0 + xScale - 0.01);
|
||||||
}
|
}
|
||||||
*scaledWidth = abs(tx2 - tx) + 1;
|
*scaledWidth = abs(tx2 - tx) + 1;
|
||||||
//scaledWidth = splashRound(fabs(xScale));
|
//scaledWidth = splashRound(fabs(xScale));
|
||||||
@ -1725,11 +1766,11 @@ void CairoOutputDev::getScaledSize(int orig_width,
|
|||||||
*scaledWidth = 1;
|
*scaledWidth = 1;
|
||||||
}
|
}
|
||||||
if (yScale >= 0) {
|
if (yScale >= 0) {
|
||||||
ty = splashFloor(matrix.y0 + 0.01);
|
ty = splashFloor(matrix->y0 + 0.01);
|
||||||
ty2 = splashCeil(matrix.y0 + yScale - 0.01);
|
ty2 = splashCeil(matrix->y0 + yScale - 0.01);
|
||||||
} else {
|
} else {
|
||||||
ty = splashCeil(matrix.y0 - 0.01);
|
ty = splashCeil(matrix->y0 - 0.01);
|
||||||
ty2 = splashFloor(matrix.y0 + yScale + 0.01);
|
ty2 = splashFloor(matrix->y0 + yScale + 0.01);
|
||||||
}
|
}
|
||||||
*scaledHeight = abs(ty2 - ty);
|
*scaledHeight = abs(ty2 - ty);
|
||||||
if (*scaledHeight == 0) {
|
if (*scaledHeight == 0) {
|
||||||
@ -1737,49 +1778,6 @@ void CairoOutputDev::getScaledSize(int orig_width,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
cairo_surface_t *CairoOutputDev::downscaleSurface(cairo_surface_t *orig_surface) {
|
|
||||||
cairo_surface_t *dest_surface;
|
|
||||||
unsigned char *dest_buffer;
|
|
||||||
int dest_stride;
|
|
||||||
unsigned char *orig_buffer;
|
|
||||||
int orig_width, orig_height;
|
|
||||||
int orig_stride;
|
|
||||||
int scaledHeight;
|
|
||||||
int scaledWidth;
|
|
||||||
GBool res;
|
|
||||||
|
|
||||||
if (printing)
|
|
||||||
return NULL;
|
|
||||||
|
|
||||||
orig_width = cairo_image_surface_get_width (orig_surface);
|
|
||||||
orig_height = cairo_image_surface_get_height (orig_surface);
|
|
||||||
getScaledSize (orig_width, orig_height, &scaledWidth, &scaledHeight);
|
|
||||||
if (scaledWidth >= orig_width || scaledHeight >= orig_height)
|
|
||||||
return NULL;
|
|
||||||
|
|
||||||
dest_surface = cairo_surface_create_similar (orig_surface,
|
|
||||||
cairo_surface_get_content (orig_surface),
|
|
||||||
scaledWidth, scaledHeight);
|
|
||||||
dest_buffer = cairo_image_surface_get_data (dest_surface);
|
|
||||||
dest_stride = cairo_image_surface_get_stride (dest_surface);
|
|
||||||
|
|
||||||
orig_buffer = cairo_image_surface_get_data (orig_surface);
|
|
||||||
orig_stride = cairo_image_surface_get_stride (orig_surface);
|
|
||||||
|
|
||||||
res = downscale_box_filter((uint32_t *)orig_buffer,
|
|
||||||
orig_stride, orig_width, orig_height,
|
|
||||||
scaledWidth, scaledHeight, 0, 0,
|
|
||||||
scaledWidth, scaledHeight,
|
|
||||||
(uint32_t *)dest_buffer, dest_stride);
|
|
||||||
if (!res) {
|
|
||||||
cairo_surface_destroy (dest_surface);
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
return dest_surface;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
cairo_filter_t
|
cairo_filter_t
|
||||||
CairoOutputDev::getFilterForSurface(cairo_surface_t *image,
|
CairoOutputDev::getFilterForSurface(cairo_surface_t *image,
|
||||||
GBool interpolate)
|
GBool interpolate)
|
||||||
@ -1792,8 +1790,14 @@ CairoOutputDev::getFilterForSurface(cairo_surface_t *image,
|
|||||||
if (orig_width == 0 || orig_height == 0)
|
if (orig_width == 0 || orig_height == 0)
|
||||||
return CAIRO_FILTER_NEAREST;
|
return CAIRO_FILTER_NEAREST;
|
||||||
|
|
||||||
|
/* When printing, don't change the interpolation. */
|
||||||
|
if (printing)
|
||||||
|
return CAIRO_FILTER_NEAREST;
|
||||||
|
|
||||||
|
cairo_matrix_t matrix;
|
||||||
|
cairo_get_matrix(cairo, &matrix);
|
||||||
int scaled_width, scaled_height;
|
int scaled_width, scaled_height;
|
||||||
getScaledSize (orig_width, orig_height, &scaled_width, &scaled_height);
|
getScaledSize (&matrix, orig_width, orig_height, &scaled_width, &scaled_height);
|
||||||
|
|
||||||
/* When scale factor is >= 400% we don't interpolate. See bugs #25268, #9860 */
|
/* When scale factor is >= 400% we don't interpolate. See bugs #25268, #9860 */
|
||||||
if (scaled_width / orig_width >= 4 || scaled_height / orig_height >= 4)
|
if (scaled_width / orig_width >= 4 || scaled_height / orig_height >= 4)
|
||||||
@ -2611,9 +2615,7 @@ void CairoOutputDev::drawSoftMaskedImage(GfxState *state, Object *ref, Stream *s
|
|||||||
|
|
||||||
cairo_set_source (cairo, pattern);
|
cairo_set_source (cairo, pattern);
|
||||||
if (!printing) {
|
if (!printing) {
|
||||||
cairo_rectangle (cairo, 0., 0.,
|
cairo_rectangle (cairo, 0., 0., 1., 1.);
|
||||||
MIN (width, maskWidth) / (double)width,
|
|
||||||
MIN (height, maskHeight) / (double)height);
|
|
||||||
cairo_clip (cairo);
|
cairo_clip (cairo);
|
||||||
}
|
}
|
||||||
cairo_mask (cairo, maskPattern);
|
cairo_mask (cairo, maskPattern);
|
||||||
@ -2622,9 +2624,7 @@ void CairoOutputDev::drawSoftMaskedImage(GfxState *state, Object *ref, Stream *s
|
|||||||
cairo_pop_group_to_source (cairo);
|
cairo_pop_group_to_source (cairo);
|
||||||
cairo_save (cairo);
|
cairo_save (cairo);
|
||||||
if (!printing) {
|
if (!printing) {
|
||||||
cairo_rectangle (cairo, 0., 0.,
|
cairo_rectangle (cairo, 0., 0., 1., 1.);
|
||||||
MIN (width, maskWidth) / (double)width,
|
|
||||||
MIN (height, maskHeight) / (double)height);
|
|
||||||
cairo_clip (cairo);
|
cairo_clip (cairo);
|
||||||
}
|
}
|
||||||
cairo_paint_with_alpha (cairo, fill_opacity);
|
cairo_paint_with_alpha (cairo, fill_opacity);
|
||||||
@ -2635,9 +2635,7 @@ void CairoOutputDev::drawSoftMaskedImage(GfxState *state, Object *ref, Stream *s
|
|||||||
cairo_save (cairo_shape);
|
cairo_save (cairo_shape);
|
||||||
cairo_set_source (cairo_shape, pattern);
|
cairo_set_source (cairo_shape, pattern);
|
||||||
if (!printing) {
|
if (!printing) {
|
||||||
cairo_rectangle (cairo_shape, 0., 0.,
|
cairo_rectangle (cairo_shape, 0., 0., 1., 1.);
|
||||||
MIN (width, maskWidth) / (double)width,
|
|
||||||
MIN (height, maskHeight) / (double)height);
|
|
||||||
cairo_fill (cairo_shape);
|
cairo_fill (cairo_shape);
|
||||||
} else {
|
} else {
|
||||||
cairo_mask (cairo_shape, pattern);
|
cairo_mask (cairo_shape, pattern);
|
||||||
@ -2725,63 +2723,119 @@ void CairoOutputDev::setMimeData(Stream *str, Object *ref, cairo_surface_t *imag
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void CairoOutputDev::drawImage(GfxState *state, Object *ref, Stream *str,
|
class RescaleDrawImage : public CairoRescaleBox {
|
||||||
int width, int height,
|
private:
|
||||||
GfxImageColorMap *colorMap,
|
|
||||||
GBool interpolate,
|
|
||||||
int *maskColors, GBool inlineImg)
|
|
||||||
{
|
|
||||||
cairo_surface_t *image;
|
|
||||||
cairo_pattern_t *pattern, *maskPattern;
|
|
||||||
ImageStream *imgStr;
|
ImageStream *imgStr;
|
||||||
cairo_matrix_t matrix;
|
GfxRGB *lookup;
|
||||||
unsigned char *buffer;
|
int width;
|
||||||
int stride, i;
|
GfxImageColorMap *colorMap;
|
||||||
GfxRGB *lookup = NULL;
|
int *maskColors;
|
||||||
cairo_filter_t filter = CAIRO_FILTER_BILINEAR;
|
int current_row;
|
||||||
|
|
||||||
/* TODO: Do we want to cache these? */
|
public:
|
||||||
imgStr = new ImageStream(str, width,
|
cairo_surface_t *getSourceImage(Stream *str,
|
||||||
colorMap->getNumPixelComps(),
|
int widthA, int height,
|
||||||
colorMap->getBits());
|
int scaledWidth, int scaledHeight,
|
||||||
imgStr->reset();
|
GBool printing,
|
||||||
|
GfxImageColorMap *colorMapA,
|
||||||
|
int *maskColorsA) {
|
||||||
|
cairo_surface_t *image = NULL;
|
||||||
|
int i;
|
||||||
|
|
||||||
|
lookup = NULL;
|
||||||
|
colorMap = colorMapA;
|
||||||
|
maskColors = maskColorsA;
|
||||||
|
width = widthA;
|
||||||
|
current_row = -1;
|
||||||
|
|
||||||
|
/* TODO: Do we want to cache these? */
|
||||||
|
imgStr = new ImageStream(str, width,
|
||||||
|
colorMap->getNumPixelComps(),
|
||||||
|
colorMap->getBits());
|
||||||
|
imgStr->reset();
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
/* ICCBased color space doesn't do any color correction
|
/* ICCBased color space doesn't do any color correction
|
||||||
* so check its underlying color space as well */
|
* so check its underlying color space as well */
|
||||||
int is_identity_transform;
|
int is_identity_transform;
|
||||||
is_identity_transform = colorMap->getColorSpace()->getMode() == csDeviceRGB ||
|
is_identity_transform = colorMap->getColorSpace()->getMode() == csDeviceRGB ||
|
||||||
(colorMap->getColorSpace()->getMode() == csICCBased &&
|
(colorMap->getColorSpace()->getMode() == csICCBased &&
|
||||||
((GfxICCBasedColorSpace*)colorMap->getColorSpace())->getAlt()->getMode() == csDeviceRGB);
|
((GfxICCBasedColorSpace*)colorMap->getColorSpace())->getAlt()->getMode() == csDeviceRGB);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
image = cairo_image_surface_create (maskColors ?
|
// special case for one-channel (monochrome/gray/separation) images:
|
||||||
CAIRO_FORMAT_ARGB32 :
|
// build a lookup table here
|
||||||
CAIRO_FORMAT_RGB24,
|
if (colorMap->getNumPixelComps() == 1) {
|
||||||
width, height);
|
int n;
|
||||||
if (cairo_surface_status (image))
|
Guchar pix;
|
||||||
goto cleanup;
|
|
||||||
|
|
||||||
// special case for one-channel (monochrome/gray/separation) images:
|
n = 1 << colorMap->getBits();
|
||||||
// build a lookup table here
|
lookup = (GfxRGB *)gmallocn(n, sizeof(GfxRGB));
|
||||||
if (colorMap->getNumPixelComps() == 1) {
|
for (i = 0; i < n; ++i) {
|
||||||
int n;
|
pix = (Guchar)i;
|
||||||
Guchar pix;
|
|
||||||
|
|
||||||
n = 1 << colorMap->getBits();
|
colorMap->getRGB(&pix, &lookup[i]);
|
||||||
lookup = (GfxRGB *)gmallocn(n, sizeof(GfxRGB));
|
}
|
||||||
for (i = 0; i < n; ++i) {
|
|
||||||
pix = (Guchar)i;
|
|
||||||
|
|
||||||
colorMap->getRGB(&pix, &lookup[i]);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (printing || scaledWidth >= width || scaledHeight >= height) {
|
||||||
|
// No downscaling. Create cairo image containing the source image data.
|
||||||
|
unsigned char *buffer;
|
||||||
|
int stride;
|
||||||
|
|
||||||
|
image = cairo_image_surface_create (maskColors ?
|
||||||
|
CAIRO_FORMAT_ARGB32 :
|
||||||
|
CAIRO_FORMAT_RGB24,
|
||||||
|
width, height);
|
||||||
|
if (cairo_surface_status (image))
|
||||||
|
goto cleanup;
|
||||||
|
|
||||||
|
buffer = cairo_image_surface_get_data (image);
|
||||||
|
stride = cairo_image_surface_get_stride (image);
|
||||||
|
for (int y = 0; y < height; y++) {
|
||||||
|
uint32_t *dest = (uint32_t *) (buffer + y * stride);
|
||||||
|
getRow(y, dest);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// // Downscaling required. Create cairo image the size of the
|
||||||
|
// rescaled image and // downscale the source image data into
|
||||||
|
// the cairo image. downScaleImage() will call getRow() to read
|
||||||
|
// source image data from the image stream. This avoids having
|
||||||
|
// to create an image the size of the source image which may
|
||||||
|
// exceed cairo's 32676x32767 image size limit (and also saves a
|
||||||
|
// lot of memory).
|
||||||
|
image = cairo_image_surface_create (maskColors ?
|
||||||
|
CAIRO_FORMAT_ARGB32 :
|
||||||
|
CAIRO_FORMAT_RGB24,
|
||||||
|
scaledWidth, scaledHeight);
|
||||||
|
if (cairo_surface_status (image))
|
||||||
|
goto cleanup;
|
||||||
|
|
||||||
|
downScaleImage(width, height,
|
||||||
|
scaledWidth, scaledHeight,
|
||||||
|
0, 0, scaledWidth, scaledHeight,
|
||||||
|
image);
|
||||||
|
}
|
||||||
|
cairo_surface_mark_dirty (image);
|
||||||
|
|
||||||
|
cleanup:
|
||||||
|
gfree(lookup);
|
||||||
|
imgStr->close();
|
||||||
|
delete imgStr;
|
||||||
|
return image;
|
||||||
}
|
}
|
||||||
|
|
||||||
buffer = cairo_image_surface_get_data (image);
|
void getRow(int row_num, uint32_t *row_data) {
|
||||||
stride = cairo_image_surface_get_stride (image);
|
int i;
|
||||||
for (int y = 0; y < height; y++) {
|
Guchar *pix;
|
||||||
uint32_t *dest = (uint32_t *) (buffer + y * stride);
|
|
||||||
Guchar *pix = imgStr->getLine();
|
if (row_num <= current_row)
|
||||||
|
return;
|
||||||
|
|
||||||
|
while (current_row < row_num) {
|
||||||
|
pix = imgStr->getLine();
|
||||||
|
current_row++;
|
||||||
|
}
|
||||||
|
|
||||||
if (lookup) {
|
if (lookup) {
|
||||||
Guchar *p = pix;
|
Guchar *p = pix;
|
||||||
@ -2789,54 +2843,64 @@ void CairoOutputDev::drawImage(GfxState *state, Object *ref, Stream *str,
|
|||||||
|
|
||||||
for (i = 0; i < width; i++) {
|
for (i = 0; i < width; i++) {
|
||||||
rgb = lookup[*p];
|
rgb = lookup[*p];
|
||||||
dest[i] =
|
row_data[i] =
|
||||||
((int) colToByte(rgb.r) << 16) |
|
((int) colToByte(rgb.r) << 16) |
|
||||||
((int) colToByte(rgb.g) << 8) |
|
((int) colToByte(rgb.g) << 8) |
|
||||||
((int) colToByte(rgb.b) << 0);
|
((int) colToByte(rgb.b) << 0);
|
||||||
p++;
|
p++;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
colorMap->getRGBLine (pix, dest, width);
|
colorMap->getRGBLine (pix, row_data, width);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (maskColors) {
|
if (maskColors) {
|
||||||
for (int x = 0; x < width; x++) {
|
for (int x = 0; x < width; x++) {
|
||||||
bool is_opaque = false;
|
bool is_opaque = false;
|
||||||
for (int i = 0; i < colorMap->getNumPixelComps(); ++i) {
|
for (int i = 0; i < colorMap->getNumPixelComps(); ++i) {
|
||||||
if (pix[i] < maskColors[2*i] ||
|
if (pix[i] < maskColors[2*i] ||
|
||||||
pix[i] > maskColors[2*i+1]) {
|
pix[i] > maskColors[2*i+1]) {
|
||||||
is_opaque = true;
|
is_opaque = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (is_opaque)
|
if (is_opaque)
|
||||||
*dest |= 0xff000000;
|
*row_data |= 0xff000000;
|
||||||
else
|
else
|
||||||
*dest = 0;
|
*row_data = 0;
|
||||||
dest++;
|
row_data++;
|
||||||
pix += colorMap->getNumPixelComps();
|
pix += colorMap->getNumPixelComps();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
gfree(lookup);
|
|
||||||
|
|
||||||
LOG (printf ("drawImage %dx%d\n", width, height));
|
};
|
||||||
|
|
||||||
cairo_surface_t *scaled_surface;
|
void CairoOutputDev::drawImage(GfxState *state, Object *ref, Stream *str,
|
||||||
|
int widthA, int heightA,
|
||||||
|
GfxImageColorMap *colorMap,
|
||||||
|
GBool interpolate,
|
||||||
|
int *maskColors, GBool inlineImg)
|
||||||
|
{
|
||||||
|
cairo_surface_t *image;
|
||||||
|
cairo_pattern_t *pattern, *maskPattern;
|
||||||
|
cairo_matrix_t matrix;
|
||||||
|
int width, height;
|
||||||
|
int scaledWidth, scaledHeight;
|
||||||
|
cairo_filter_t filter = CAIRO_FILTER_BILINEAR;
|
||||||
|
RescaleDrawImage rescale;
|
||||||
|
|
||||||
scaled_surface = downscaleSurface (image);
|
LOG (printf ("drawImage %dx%d\n", widthA, heightA));
|
||||||
if (scaled_surface) {
|
|
||||||
if (cairo_surface_status (scaled_surface))
|
cairo_get_matrix(cairo, &matrix);
|
||||||
goto cleanup;
|
getScaledSize (&matrix, widthA, heightA, &scaledWidth, &scaledHeight);
|
||||||
cairo_surface_destroy (image);
|
image = rescale.getSourceImage(str, widthA, heightA, scaledWidth, scaledHeight, printing, colorMap, maskColors);
|
||||||
image = scaled_surface;
|
if (!image)
|
||||||
width = cairo_image_surface_get_width (image);
|
return;
|
||||||
height = cairo_image_surface_get_height (image);
|
|
||||||
} else {
|
width = cairo_image_surface_get_width (image);
|
||||||
|
height = cairo_image_surface_get_height (image);
|
||||||
|
if (width == widthA && height == heightA)
|
||||||
filter = getFilterForSurface (image, interpolate);
|
filter = getFilterForSurface (image, interpolate);
|
||||||
}
|
|
||||||
|
|
||||||
cairo_surface_mark_dirty (image);
|
|
||||||
|
|
||||||
if (!inlineImg) /* don't read stream twice if it is an inline image */
|
if (!inlineImg) /* don't read stream twice if it is an inline image */
|
||||||
setMimeData(str, ref, image);
|
setMimeData(str, ref, image);
|
||||||
@ -2844,7 +2908,7 @@ void CairoOutputDev::drawImage(GfxState *state, Object *ref, Stream *str,
|
|||||||
pattern = cairo_pattern_create_for_surface (image);
|
pattern = cairo_pattern_create_for_surface (image);
|
||||||
cairo_surface_destroy (image);
|
cairo_surface_destroy (image);
|
||||||
if (cairo_pattern_status (pattern))
|
if (cairo_pattern_status (pattern))
|
||||||
goto cleanup;
|
return;
|
||||||
|
|
||||||
cairo_pattern_set_filter (pattern, filter);
|
cairo_pattern_set_filter (pattern, filter);
|
||||||
|
|
||||||
@ -2856,7 +2920,7 @@ void CairoOutputDev::drawImage(GfxState *state, Object *ref, Stream *str,
|
|||||||
cairo_pattern_set_matrix (pattern, &matrix);
|
cairo_pattern_set_matrix (pattern, &matrix);
|
||||||
if (cairo_pattern_status (pattern)) {
|
if (cairo_pattern_status (pattern)) {
|
||||||
cairo_pattern_destroy (pattern);
|
cairo_pattern_destroy (pattern);
|
||||||
goto cleanup;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!mask && fill_opacity != 1.0) {
|
if (!mask && fill_opacity != 1.0) {
|
||||||
@ -2899,10 +2963,6 @@ void CairoOutputDev::drawImage(GfxState *state, Object *ref, Stream *str,
|
|||||||
}
|
}
|
||||||
|
|
||||||
cairo_pattern_destroy (pattern);
|
cairo_pattern_destroy (pattern);
|
||||||
|
|
||||||
cleanup:
|
|
||||||
imgStr->close();
|
|
||||||
delete imgStr;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -2935,7 +2995,35 @@ void CairoImageOutputDev::saveImage(CairoImage *image)
|
|||||||
images = (CairoImage **) greallocn (images, size, sizeof (CairoImage *));
|
images = (CairoImage **) greallocn (images, size, sizeof (CairoImage *));
|
||||||
}
|
}
|
||||||
images[numImages++] = image;
|
images[numImages++] = image;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void CairoImageOutputDev::getBBox(GfxState *state, int width, int height,
|
||||||
|
double *x1, double *y1, double *x2, double *y2)
|
||||||
|
{
|
||||||
|
double *ctm = state->getCTM();
|
||||||
|
cairo_matrix_t matrix;
|
||||||
|
cairo_matrix_init(&matrix,
|
||||||
|
ctm[0], ctm[1],
|
||||||
|
-ctm[2], -ctm[3],
|
||||||
|
ctm[2] + ctm[4], ctm[3] + ctm[5]);
|
||||||
|
|
||||||
|
int scaledWidth, scaledHeight;
|
||||||
|
getScaledSize (&matrix, width, height, &scaledWidth, &scaledHeight);
|
||||||
|
|
||||||
|
if (matrix.xx >= 0) {
|
||||||
|
*x1 = matrix.x0;
|
||||||
|
} else {
|
||||||
|
*x1 = matrix.x0 - scaledWidth;
|
||||||
|
}
|
||||||
|
*x2 = *x1 + scaledWidth;
|
||||||
|
|
||||||
|
if (matrix.yy >= 0) {
|
||||||
|
*y1 = matrix.y0;
|
||||||
|
} else {
|
||||||
|
*y1 = matrix.y0 - scaledHeight;
|
||||||
|
}
|
||||||
|
*y2 = *y1 + scaledHeight;
|
||||||
|
}
|
||||||
|
|
||||||
void CairoImageOutputDev::drawImageMask(GfxState *state, Object *ref, Stream *str,
|
void CairoImageOutputDev::drawImageMask(GfxState *state, Object *ref, Stream *str,
|
||||||
int width, int height, GBool invert,
|
int width, int height, GBool invert,
|
||||||
@ -2944,22 +3032,9 @@ void CairoImageOutputDev::drawImageMask(GfxState *state, Object *ref, Stream *st
|
|||||||
cairo_t *cr;
|
cairo_t *cr;
|
||||||
cairo_surface_t *surface;
|
cairo_surface_t *surface;
|
||||||
double x1, y1, x2, y2;
|
double x1, y1, x2, y2;
|
||||||
double *ctm;
|
|
||||||
double mat[6];
|
|
||||||
CairoImage *image;
|
CairoImage *image;
|
||||||
|
|
||||||
ctm = state->getCTM();
|
getBBox(state, width, height, &x1, &y1, &x2, &y2);
|
||||||
|
|
||||||
mat[0] = ctm[0];
|
|
||||||
mat[1] = ctm[1];
|
|
||||||
mat[2] = -ctm[2];
|
|
||||||
mat[3] = -ctm[3];
|
|
||||||
mat[4] = ctm[2] + ctm[4];
|
|
||||||
mat[5] = ctm[3] + ctm[5];
|
|
||||||
x1 = mat[4];
|
|
||||||
y1 = mat[5];
|
|
||||||
x2 = x1 + width;
|
|
||||||
y2 = y1 + height;
|
|
||||||
|
|
||||||
image = new CairoImage (x1, y1, x2, y2);
|
image = new CairoImage (x1, y1, x2, y2);
|
||||||
saveImage (image);
|
saveImage (image);
|
||||||
@ -2980,6 +3055,39 @@ void CairoImageOutputDev::drawImageMask(GfxState *state, Object *ref, Stream *st
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void CairoImageOutputDev::setSoftMaskFromImageMask(GfxState *state, Object *ref, Stream *str,
|
||||||
|
int width, int height, GBool invert,
|
||||||
|
GBool inlineImg, double *baseMatrix)
|
||||||
|
{
|
||||||
|
cairo_t *cr;
|
||||||
|
cairo_surface_t *surface;
|
||||||
|
double x1, y1, x2, y2;
|
||||||
|
CairoImage *image;
|
||||||
|
|
||||||
|
getBBox(state, width, height, &x1, &y1, &x2, &y2);
|
||||||
|
|
||||||
|
image = new CairoImage (x1, y1, x2, y2);
|
||||||
|
saveImage (image);
|
||||||
|
|
||||||
|
if (imgDrawCbk && imgDrawCbk (numImages - 1, imgDrawCbkData)) {
|
||||||
|
surface = cairo_image_surface_create (CAIRO_FORMAT_ARGB32, width, height);
|
||||||
|
cr = cairo_create (surface);
|
||||||
|
setCairo (cr);
|
||||||
|
cairo_translate (cr, 0, height);
|
||||||
|
cairo_scale (cr, width, -height);
|
||||||
|
|
||||||
|
CairoOutputDev::drawImageMask(state, ref, str, width, height, invert, inlineImg, gFalse);
|
||||||
|
if (state->getFillColorSpace()->getMode() == csPattern) {
|
||||||
|
cairo_mask (cairo, mask);
|
||||||
|
}
|
||||||
|
image->setImage (surface);
|
||||||
|
|
||||||
|
setCairo (NULL);
|
||||||
|
cairo_surface_destroy (surface);
|
||||||
|
cairo_destroy (cr);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void CairoImageOutputDev::drawImage(GfxState *state, Object *ref, Stream *str,
|
void CairoImageOutputDev::drawImage(GfxState *state, Object *ref, Stream *str,
|
||||||
int width, int height, GfxImageColorMap *colorMap,
|
int width, int height, GfxImageColorMap *colorMap,
|
||||||
GBool interpolate, int *maskColors, GBool inlineImg)
|
GBool interpolate, int *maskColors, GBool inlineImg)
|
||||||
@ -2987,22 +3095,9 @@ void CairoImageOutputDev::drawImage(GfxState *state, Object *ref, Stream *str,
|
|||||||
cairo_t *cr;
|
cairo_t *cr;
|
||||||
cairo_surface_t *surface;
|
cairo_surface_t *surface;
|
||||||
double x1, y1, x2, y2;
|
double x1, y1, x2, y2;
|
||||||
double *ctm;
|
|
||||||
double mat[6];
|
|
||||||
CairoImage *image;
|
CairoImage *image;
|
||||||
|
|
||||||
ctm = state->getCTM();
|
getBBox(state, width, height, &x1, &y1, &x2, &y2);
|
||||||
|
|
||||||
mat[0] = ctm[0];
|
|
||||||
mat[1] = ctm[1];
|
|
||||||
mat[2] = -ctm[2];
|
|
||||||
mat[3] = -ctm[3];
|
|
||||||
mat[4] = ctm[2] + ctm[4];
|
|
||||||
mat[5] = ctm[3] + ctm[5];
|
|
||||||
x1 = mat[4];
|
|
||||||
y1 = mat[5];
|
|
||||||
x2 = x1 + width;
|
|
||||||
y2 = y1 + height;
|
|
||||||
|
|
||||||
image = new CairoImage (x1, y1, x2, y2);
|
image = new CairoImage (x1, y1, x2, y2);
|
||||||
saveImage (image);
|
saveImage (image);
|
||||||
@ -3035,22 +3130,9 @@ void CairoImageOutputDev::drawSoftMaskedImage(GfxState *state, Object *ref, Stre
|
|||||||
cairo_t *cr;
|
cairo_t *cr;
|
||||||
cairo_surface_t *surface;
|
cairo_surface_t *surface;
|
||||||
double x1, y1, x2, y2;
|
double x1, y1, x2, y2;
|
||||||
double *ctm;
|
|
||||||
double mat[6];
|
|
||||||
CairoImage *image;
|
CairoImage *image;
|
||||||
|
|
||||||
ctm = state->getCTM();
|
getBBox(state, width, height, &x1, &y1, &x2, &y2);
|
||||||
|
|
||||||
mat[0] = ctm[0];
|
|
||||||
mat[1] = ctm[1];
|
|
||||||
mat[2] = -ctm[2];
|
|
||||||
mat[3] = -ctm[3];
|
|
||||||
mat[4] = ctm[2] + ctm[4];
|
|
||||||
mat[5] = ctm[3] + ctm[5];
|
|
||||||
x1 = mat[4];
|
|
||||||
y1 = mat[5];
|
|
||||||
x2 = x1 + width;
|
|
||||||
y2 = y1 + height;
|
|
||||||
|
|
||||||
image = new CairoImage (x1, y1, x2, y2);
|
image = new CairoImage (x1, y1, x2, y2);
|
||||||
saveImage (image);
|
saveImage (image);
|
||||||
@ -3083,22 +3165,9 @@ void CairoImageOutputDev::drawMaskedImage(GfxState *state, Object *ref, Stream *
|
|||||||
cairo_t *cr;
|
cairo_t *cr;
|
||||||
cairo_surface_t *surface;
|
cairo_surface_t *surface;
|
||||||
double x1, y1, x2, y2;
|
double x1, y1, x2, y2;
|
||||||
double *ctm;
|
|
||||||
double mat[6];
|
|
||||||
CairoImage *image;
|
CairoImage *image;
|
||||||
|
|
||||||
ctm = state->getCTM();
|
getBBox(state, width, height, &x1, &y1, &x2, &y2);
|
||||||
|
|
||||||
mat[0] = ctm[0];
|
|
||||||
mat[1] = ctm[1];
|
|
||||||
mat[2] = -ctm[2];
|
|
||||||
mat[3] = -ctm[3];
|
|
||||||
mat[4] = ctm[2] + ctm[4];
|
|
||||||
mat[5] = ctm[3] + ctm[5];
|
|
||||||
x1 = mat[4];
|
|
||||||
y1 = mat[5];
|
|
||||||
x2 = x1 + width;
|
|
||||||
y2 = y1 + height;
|
|
||||||
|
|
||||||
image = new CairoImage (x1, y1, x2, y2);
|
image = new CairoImage (x1, y1, x2, y2);
|
||||||
saveImage (image);
|
saveImage (image);
|
||||||
|
@ -17,10 +17,10 @@
|
|||||||
// Copyright (C) 2005-2008 Jeff Muizelaar <jeff@infidigm.net>
|
// Copyright (C) 2005-2008 Jeff Muizelaar <jeff@infidigm.net>
|
||||||
// Copyright (C) 2005, 2006 Kristian Høgsberg <krh@redhat.com>
|
// Copyright (C) 2005, 2006 Kristian Høgsberg <krh@redhat.com>
|
||||||
// Copyright (C) 2005 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
|
// Copyright (C) 2005 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
|
||||||
// Copyright (C) 2006-2011 Carlos Garcia Campos <carlosgc@gnome.org>
|
// Copyright (C) 2006-2011, 2013 Carlos Garcia Campos <carlosgc@gnome.org>
|
||||||
// Copyright (C) 2008, 2009, 2011, 2012 Adrian Johnson <ajohnson@redneon.com>
|
// Copyright (C) 2008, 2009, 2011-2013 Adrian Johnson <ajohnson@redneon.com>
|
||||||
// Copyright (C) 2008 Michael Vrable <mvrable@cs.ucsd.edu>
|
// Copyright (C) 2008 Michael Vrable <mvrable@cs.ucsd.edu>
|
||||||
// Copyright (C) 2010-2012 Thomas Freitag <Thomas.Freitag@alfa.de>
|
// Copyright (C) 2010-2013 Thomas Freitag <Thomas.Freitag@alfa.de>
|
||||||
//
|
//
|
||||||
// To see a description of the changes please see the Changelog file that
|
// To see a description of the changes please see the Changelog file that
|
||||||
// came with your tarball or type make ChangeLog if you are building from git
|
// came with your tarball or type make ChangeLog if you are building from git
|
||||||
@ -124,7 +124,7 @@ public:
|
|||||||
//----- initialization and control
|
//----- initialization and control
|
||||||
|
|
||||||
// Start a page.
|
// Start a page.
|
||||||
virtual void startPage(int pageNum, GfxState *state);
|
virtual void startPage(int pageNum, GfxState *state, XRef *xref);
|
||||||
|
|
||||||
// End a page.
|
// End a page.
|
||||||
virtual void endPage();
|
virtual void endPage();
|
||||||
@ -192,7 +192,6 @@ public:
|
|||||||
CharCode code, Unicode *u, int uLen);
|
CharCode code, Unicode *u, int uLen);
|
||||||
virtual void endType3Char(GfxState *state);
|
virtual void endType3Char(GfxState *state);
|
||||||
virtual void beginTextObject(GfxState *state);
|
virtual void beginTextObject(GfxState *state);
|
||||||
virtual GBool deviceHasTextClip(GfxState *state) { return textClipPath; }
|
|
||||||
virtual void endTextObject(GfxState *state);
|
virtual void endTextObject(GfxState *state);
|
||||||
|
|
||||||
//----- image drawing
|
//----- image drawing
|
||||||
@ -267,7 +266,8 @@ public:
|
|||||||
protected:
|
protected:
|
||||||
void doPath(cairo_t *cairo, GfxState *state, GfxPath *path);
|
void doPath(cairo_t *cairo, GfxState *state, GfxPath *path);
|
||||||
cairo_surface_t *downscaleSurface(cairo_surface_t *orig_surface);
|
cairo_surface_t *downscaleSurface(cairo_surface_t *orig_surface);
|
||||||
void getScaledSize(int orig_width, int orig_height,
|
void getScaledSize(const cairo_matrix_t *matrix,
|
||||||
|
int orig_width, int orig_height,
|
||||||
int *scaledWidth, int *scaledHeight);
|
int *scaledWidth, int *scaledHeight);
|
||||||
cairo_filter_t getFilterForSurface(cairo_surface_t *image,
|
cairo_filter_t getFilterForSurface(cairo_surface_t *image,
|
||||||
GBool interpolate);
|
GBool interpolate);
|
||||||
@ -284,6 +284,7 @@ protected:
|
|||||||
GBool adjusted_stroke_width;
|
GBool adjusted_stroke_width;
|
||||||
GBool align_stroke_coords;
|
GBool align_stroke_coords;
|
||||||
CairoFont *currentFont;
|
CairoFont *currentFont;
|
||||||
|
XRef *xref;
|
||||||
|
|
||||||
struct StrokePathClip {
|
struct StrokePathClip {
|
||||||
GfxPath *path;
|
GfxPath *path;
|
||||||
@ -319,6 +320,7 @@ protected:
|
|||||||
int utf8Count;
|
int utf8Count;
|
||||||
int utf8Max;
|
int utf8Max;
|
||||||
cairo_path_t *textClipPath;
|
cairo_path_t *textClipPath;
|
||||||
|
GBool inUncoloredPattern; // inside a uncolored pattern (PaintType = 2)
|
||||||
GBool inType3Char; // inside a Type 3 CharProc
|
GBool inType3Char; // inside a Type 3 CharProc
|
||||||
double t3_glyph_wx, t3_glyph_wy;
|
double t3_glyph_wx, t3_glyph_wy;
|
||||||
GBool t3_glyph_has_bbox;
|
GBool t3_glyph_has_bbox;
|
||||||
@ -465,6 +467,11 @@ public:
|
|||||||
Stream *maskStr,
|
Stream *maskStr,
|
||||||
int maskWidth, int maskHeight,
|
int maskWidth, int maskHeight,
|
||||||
GBool maskInvert, GBool maskInterpolate);
|
GBool maskInvert, GBool maskInterpolate);
|
||||||
|
virtual void setSoftMaskFromImageMask(GfxState *state, Object *ref, Stream *str,
|
||||||
|
int width, int height, GBool invert,
|
||||||
|
GBool inlineImg, double *baseMatrix);
|
||||||
|
virtual void unsetSoftMaskFromImageMask(GfxState *state, double *baseMatrix) {}
|
||||||
|
|
||||||
|
|
||||||
//----- transparency groups and soft masks
|
//----- transparency groups and soft masks
|
||||||
virtual void beginTransparencyGroup(GfxState * /*state*/, double * /*bbox*/,
|
virtual void beginTransparencyGroup(GfxState * /*state*/, double * /*bbox*/,
|
||||||
@ -487,6 +494,8 @@ public:
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
void saveImage(CairoImage *image);
|
void saveImage(CairoImage *image);
|
||||||
|
void getBBox(GfxState *state, int width, int height,
|
||||||
|
double *x1, double *y1, double *x2, double *y2);
|
||||||
|
|
||||||
CairoImage **images;
|
CairoImage **images;
|
||||||
int numImages;
|
int numImages;
|
||||||
|
@ -31,6 +31,7 @@
|
|||||||
// under GPL version 2 or later
|
// under GPL version 2 or later
|
||||||
//
|
//
|
||||||
// Copyright (C) 2012 Hib Eris <hib@hiberis.nl>
|
// Copyright (C) 2012 Hib Eris <hib@hiberis.nl>
|
||||||
|
// Copyright (C) 2012 Adrian Johnson <ajohnson@redneon.com>
|
||||||
//
|
//
|
||||||
// To see a description of the changes please see the Changelog file that
|
// To see a description of the changes please see the Changelog file that
|
||||||
// came with your tarball or type make ChangeLog if you are building from git
|
// came with your tarball or type make ChangeLog if you are building from git
|
||||||
@ -50,13 +51,13 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include "goo/gmem.h"
|
#include "goo/gmem.h"
|
||||||
#include "goo/gtypes_p.h"
|
|
||||||
#include "CairoRescaleBox.h"
|
#include "CairoRescaleBox.h"
|
||||||
|
|
||||||
|
|
||||||
/* we work in fixed point where 1. == 1 << 24 */
|
/* we work in fixed point where 1. == 1 << 24 */
|
||||||
#define FIXED_SHIFT 24
|
#define FIXED_SHIFT 24
|
||||||
|
|
||||||
|
|
||||||
static void downsample_row_box_filter (
|
static void downsample_row_box_filter (
|
||||||
int start, int width,
|
int start, int width,
|
||||||
uint32_t *src, uint32_t *dest,
|
uint32_t *src, uint32_t *dest,
|
||||||
@ -261,106 +262,116 @@ static int compute_coverage (int coverage[], int src_length, int dest_length)
|
|||||||
return ratio;
|
return ratio;
|
||||||
}
|
}
|
||||||
|
|
||||||
GBool downscale_box_filter(uint32_t *orig, int orig_stride, unsigned orig_width, unsigned orig_height,
|
|
||||||
signed scaled_width, signed scaled_height,
|
|
||||||
uint16_t start_column, uint16_t start_row,
|
|
||||||
uint16_t width, uint16_t height,
|
|
||||||
uint32_t *dest, int dst_stride)
|
|
||||||
{
|
|
||||||
int pixel_coverage_x, pixel_coverage_y;
|
|
||||||
int dest_y;
|
|
||||||
int src_y = 0;
|
|
||||||
uint32_t *scanline = orig;
|
|
||||||
int *x_coverage = NULL;
|
|
||||||
int *y_coverage = NULL;
|
|
||||||
uint32_t *temp_buf = NULL;
|
|
||||||
GBool retval = gFalse;
|
|
||||||
|
|
||||||
x_coverage = (int *)gmallocn3 (orig_width, 1, sizeof(int));
|
GBool CairoRescaleBox::downScaleImage(unsigned orig_width, unsigned orig_height,
|
||||||
y_coverage = (int *)gmallocn3 (orig_height, 1, sizeof(int));
|
signed scaled_width, signed scaled_height,
|
||||||
|
unsigned short int start_column, unsigned short int start_row,
|
||||||
|
unsigned short int width, unsigned short int height,
|
||||||
|
cairo_surface_t *dest_surface) {
|
||||||
|
int pixel_coverage_x, pixel_coverage_y;
|
||||||
|
int dest_y;
|
||||||
|
int src_y = 0;
|
||||||
|
uint32_t *scanline;
|
||||||
|
int *x_coverage = NULL;
|
||||||
|
int *y_coverage = NULL;
|
||||||
|
uint32_t *temp_buf = NULL;
|
||||||
|
GBool retval = gFalse;
|
||||||
|
unsigned int *dest;
|
||||||
|
int dst_stride;
|
||||||
|
|
||||||
/* we need to allocate enough room for ceil(src_height/dest_height)+1
|
dest = (unsigned int *)cairo_image_surface_get_data (dest_surface);
|
||||||
Example:
|
dst_stride = cairo_image_surface_get_stride (dest_surface);
|
||||||
src_height = 140
|
|
||||||
dest_height = 50
|
|
||||||
src_height/dest_height = 2.8
|
|
||||||
|
|
||||||
|-------------| 2.8 pixels
|
scanline = (uint32_t*)gmallocn3 (orig_width, 1, sizeof(int));
|
||||||
|----|----|----|----| 4 pixels
|
|
||||||
need to sample 3 pixels
|
|
||||||
|
|
||||||
|-------------| 2.8 pixels
|
x_coverage = (int *)gmallocn3 (orig_width, 1, sizeof(int));
|
||||||
|----|----|----|----| 4 pixels
|
y_coverage = (int *)gmallocn3 (orig_height, 1, sizeof(int));
|
||||||
need to sample 4 pixels
|
|
||||||
*/
|
|
||||||
|
|
||||||
temp_buf = (uint32_t *)gmallocn3 ((orig_height + scaled_height-1)/scaled_height+1, scaled_width, sizeof(uint32_t));
|
/* we need to allocate enough room for ceil(src_height/dest_height)+1
|
||||||
|
Example:
|
||||||
|
src_height = 140
|
||||||
|
dest_height = 50
|
||||||
|
src_height/dest_height = 2.8
|
||||||
|
|
||||||
if (!x_coverage || !y_coverage || !scanline || !temp_buf)
|
|-------------| 2.8 pixels
|
||||||
goto cleanup;
|
|----|----|----|----| 4 pixels
|
||||||
|
need to sample 3 pixels
|
||||||
|
|
||||||
pixel_coverage_x = compute_coverage (x_coverage, orig_width, scaled_width);
|
|-------------| 2.8 pixels
|
||||||
pixel_coverage_y = compute_coverage (y_coverage, orig_height, scaled_height);
|
|----|----|----|----| 4 pixels
|
||||||
|
need to sample 4 pixels
|
||||||
|
*/
|
||||||
|
|
||||||
assert (width + start_column <= scaled_width);
|
temp_buf = (uint32_t *)gmallocn3 ((orig_height + scaled_height-1)/scaled_height+1, scaled_width, sizeof(uint32_t));
|
||||||
|
|
||||||
/* skip the rows at the beginning */
|
if (!x_coverage || !y_coverage || !scanline || !temp_buf)
|
||||||
for (dest_y = 0; dest_y < start_row; dest_y++)
|
goto cleanup;
|
||||||
|
|
||||||
|
pixel_coverage_x = compute_coverage (x_coverage, orig_width, scaled_width);
|
||||||
|
pixel_coverage_y = compute_coverage (y_coverage, orig_height, scaled_height);
|
||||||
|
|
||||||
|
assert (width + start_column <= scaled_width);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* skip the rows at the beginning */
|
||||||
|
for (dest_y = 0; dest_y < start_row; dest_y++)
|
||||||
|
{
|
||||||
|
int box = 1 << FIXED_SHIFT;
|
||||||
|
int start_coverage_y = y_coverage[dest_y];
|
||||||
|
box -= start_coverage_y;
|
||||||
|
src_y++;
|
||||||
|
while (box >= pixel_coverage_y)
|
||||||
{
|
{
|
||||||
int box = 1 << FIXED_SHIFT;
|
box -= pixel_coverage_y;
|
||||||
int start_coverage_y = y_coverage[dest_y];
|
src_y++;
|
||||||
box -= start_coverage_y;
|
}
|
||||||
src_y++;
|
}
|
||||||
while (box >= pixel_coverage_y)
|
|
||||||
{
|
for (; dest_y < start_row + height; dest_y++)
|
||||||
box -= pixel_coverage_y;
|
{
|
||||||
src_y++;
|
int columns = 0;
|
||||||
}
|
int box = 1 << FIXED_SHIFT;
|
||||||
|
int start_coverage_y = y_coverage[dest_y];
|
||||||
|
|
||||||
|
getRow(src_y, scanline);
|
||||||
|
downsample_row_box_filter (start_column, width, scanline, temp_buf + width * columns, x_coverage, pixel_coverage_x);
|
||||||
|
columns++;
|
||||||
|
src_y++;
|
||||||
|
box -= start_coverage_y;
|
||||||
|
|
||||||
|
while (box >= pixel_coverage_y)
|
||||||
|
{
|
||||||
|
getRow(src_y, scanline);
|
||||||
|
downsample_row_box_filter (start_column, width, scanline, temp_buf + width * columns, x_coverage, pixel_coverage_x);
|
||||||
|
columns++;
|
||||||
|
src_y++;
|
||||||
|
box -= pixel_coverage_y;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (; dest_y < start_row + height; dest_y++)
|
/* downsample any leftovers */
|
||||||
|
if (box > 0)
|
||||||
{
|
{
|
||||||
int columns = 0;
|
getRow(src_y, scanline);
|
||||||
int box = 1 << FIXED_SHIFT;
|
downsample_row_box_filter (start_column, width, scanline, temp_buf + width * columns, x_coverage, pixel_coverage_x);
|
||||||
int start_coverage_y = y_coverage[dest_y];
|
columns++;
|
||||||
|
}
|
||||||
|
|
||||||
scanline = orig + src_y * orig_stride / 4;
|
/* now scale the rows we just downsampled in the y direction */
|
||||||
downsample_row_box_filter (start_column, width, scanline, temp_buf + width * columns, x_coverage, pixel_coverage_x);
|
downsample_columns_box_filter (width, start_coverage_y, pixel_coverage_y, temp_buf, dest);
|
||||||
columns++;
|
dest += dst_stride / 4;
|
||||||
src_y++;
|
|
||||||
box -= start_coverage_y;
|
|
||||||
|
|
||||||
while (box >= pixel_coverage_y)
|
|
||||||
{
|
|
||||||
scanline = orig + src_y * orig_stride / 4;
|
|
||||||
downsample_row_box_filter (start_column, width, scanline, temp_buf + width * columns, x_coverage, pixel_coverage_x);
|
|
||||||
columns++;
|
|
||||||
src_y++;
|
|
||||||
box -= pixel_coverage_y;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* downsample any leftovers */
|
|
||||||
if (box > 0)
|
|
||||||
{
|
|
||||||
scanline = orig + src_y * orig_stride / 4;
|
|
||||||
downsample_row_box_filter (start_column, width, scanline, temp_buf + width * columns, x_coverage, pixel_coverage_x);
|
|
||||||
columns++;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* now scale the rows we just downsampled in the y direction */
|
|
||||||
downsample_columns_box_filter (width, start_coverage_y, pixel_coverage_y, temp_buf, dest);
|
|
||||||
dest += dst_stride / 4;
|
|
||||||
|
|
||||||
// assert(width*columns <= ((orig_height + scaled_height-1)/scaled_height+1) * width);
|
// assert(width*columns <= ((orig_height + scaled_height-1)/scaled_height+1) * width);
|
||||||
}
|
}
|
||||||
// assert (src_y<=orig_height);
|
// assert (src_y<=orig_height);
|
||||||
|
|
||||||
retval = gTrue;
|
retval = gTrue;
|
||||||
|
|
||||||
cleanup:
|
cleanup:
|
||||||
free (x_coverage);
|
free (x_coverage);
|
||||||
free (y_coverage);
|
free (y_coverage);
|
||||||
free (temp_buf);
|
free (temp_buf);
|
||||||
|
free (scanline);
|
||||||
|
|
||||||
return retval;
|
return retval;
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,61 @@
|
|||||||
|
/*
|
||||||
|
* Copyright © 2009 Mozilla Corporation
|
||||||
|
*
|
||||||
|
* Permission to use, copy, modify, distribute, and sell this software and its
|
||||||
|
* documentation for any purpose is hereby granted without fee, provided that
|
||||||
|
* the above copyright notice appear in all copies and that both that
|
||||||
|
* copyright notice and this permission notice appear in supporting
|
||||||
|
* documentation, and that the name of Mozilla Corporation not be used in
|
||||||
|
* advertising or publicity pertaining to distribution of the software without
|
||||||
|
* specific, written prior permission. Mozilla Corporation makes no
|
||||||
|
* representations about the suitability of this software for any purpose. It
|
||||||
|
* is provided "as is" without express or implied warranty.
|
||||||
|
*
|
||||||
|
* MOZILLA CORPORATION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
||||||
|
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT
|
||||||
|
* SHALL MOZILLA CORPORATION BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
||||||
|
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||||
|
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||||
|
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||||
|
* OF THIS SOFTWARE.
|
||||||
|
*
|
||||||
|
* Author: Jeff Muizelaar, Mozilla Corp.
|
||||||
|
*/
|
||||||
|
|
||||||
|
//========================================================================
|
||||||
|
//
|
||||||
|
// Modified under the Poppler project - http://poppler.freedesktop.org
|
||||||
|
//
|
||||||
|
// All changes made under the Poppler project to this file are licensed
|
||||||
|
// under GPL version 2 or later
|
||||||
|
//
|
||||||
|
// Copyright (C) 2012 Adrian Johnson <ajohnson@redneon.com>
|
||||||
|
//
|
||||||
|
// To see a description of the changes please see the Changelog file that
|
||||||
|
// came with your tarball or type make ChangeLog if you are building from git
|
||||||
|
//
|
||||||
|
//========================================================================
|
||||||
|
|
||||||
#ifndef CAIRO_RESCALE_BOX_H
|
#ifndef CAIRO_RESCALE_BOX_H
|
||||||
#define CAIRO_RESCALE_BOX_H
|
#define CAIRO_RESCALE_BOX_H
|
||||||
|
|
||||||
#include "goo/gtypes.h"
|
#include "goo/gtypes.h"
|
||||||
|
#include <cairo.h>
|
||||||
|
|
||||||
GBool downscale_box_filter(unsigned int *orig, int orig_stride, unsigned orig_width, unsigned orig_height,
|
class CairoRescaleBox {
|
||||||
signed scaled_width, signed scaled_height,
|
public:
|
||||||
unsigned short int start_column, unsigned short int start_row,
|
|
||||||
unsigned short int width, unsigned short int height,
|
CairoRescaleBox() {};
|
||||||
unsigned int *dest, int dst_stride);
|
virtual ~CairoRescaleBox() {};
|
||||||
|
|
||||||
|
virtual GBool downScaleImage(unsigned orig_width, unsigned orig_height,
|
||||||
|
signed scaled_width, signed scaled_height,
|
||||||
|
unsigned short int start_column, unsigned short int start_row,
|
||||||
|
unsigned short int width, unsigned short int height,
|
||||||
|
cairo_surface_t *dest_surface);
|
||||||
|
|
||||||
|
virtual void getRow(int row_num, uint32_t *row_data) = 0;
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
#endif /* CAIRO_RESCALE_BOX_H */
|
#endif /* CAIRO_RESCALE_BOX_H */
|
||||||
|
@ -1,829 +0,0 @@
|
|||||||
//========================================================================
|
|
||||||
//
|
|
||||||
// CairoFontEngine.cc
|
|
||||||
//
|
|
||||||
// Copyright 2003 Glyph & Cog, LLC
|
|
||||||
// Copyright 2004 Red Hat, Inc
|
|
||||||
//
|
|
||||||
//========================================================================
|
|
||||||
|
|
||||||
//========================================================================
|
|
||||||
//
|
|
||||||
// Modified under the Poppler project - http://poppler.freedesktop.org
|
|
||||||
//
|
|
||||||
// All changes made under the Poppler project to this file are licensed
|
|
||||||
// under GPL version 2 or later
|
|
||||||
//
|
|
||||||
// Copyright (C) 2005-2007 Jeff Muizelaar <jeff@infidigm.net>
|
|
||||||
// Copyright (C) 2005, 2006 Kristian Høgsberg <krh@redhat.com>
|
|
||||||
// Copyright (C) 2005 Martin Kretzschmar <martink@gnome.org>
|
|
||||||
// Copyright (C) 2005, 2009, 2012, 2013 Albert Astals Cid <aacid@kde.org>
|
|
||||||
// Copyright (C) 2006, 2007, 2010, 2011 Carlos Garcia Campos <carlosgc@gnome.org>
|
|
||||||
// Copyright (C) 2007 Koji Otani <sho@bbr.jp>
|
|
||||||
// Copyright (C) 2008, 2009 Chris Wilson <chris@chris-wilson.co.uk>
|
|
||||||
// Copyright (C) 2008, 2012 Adrian Johnson <ajohnson@redneon.com>
|
|
||||||
// Copyright (C) 2009 Darren Kenny <darren.kenny@sun.com>
|
|
||||||
// Copyright (C) 2010 Suzuki Toshiya <mpsuzuki@hiroshima-u.ac.jp>
|
|
||||||
// Copyright (C) 2010 Jan Kümmel <jan+freedesktop@snorc.org>
|
|
||||||
// Copyright (C) 2012 Hib Eris <hib@hiberis.nl>
|
|
||||||
// Copyright (C) 2013 Thomas Freitag <Thomas.Freitag@alfa.de>
|
|
||||||
//
|
|
||||||
// To see a description of the changes please see the Changelog file that
|
|
||||||
// came with your tarball or type make ChangeLog if you are building from git
|
|
||||||
//
|
|
||||||
//========================================================================
|
|
||||||
|
|
||||||
#include <poppler-config.h>
|
|
||||||
|
|
||||||
#include <string.h>
|
|
||||||
#include "CairoFontEngine.h"
|
|
||||||
#include "CairoOutputDev.h"
|
|
||||||
#include "GlobalParams.h"
|
|
||||||
#include <fofi/FoFiTrueType.h>
|
|
||||||
#include <fofi/FoFiType1C.h>
|
|
||||||
#include "goo/gfile.h"
|
|
||||||
#include "Error.h"
|
|
||||||
#include "XRef.h"
|
|
||||||
#include "Gfx.h"
|
|
||||||
#include "Page.h"
|
|
||||||
|
|
||||||
#if HAVE_FCNTL_H && HAVE_SYS_MMAN_H && HAVE_SYS_STAT_H
|
|
||||||
#include <fcntl.h>
|
|
||||||
#include <sys/stat.h>
|
|
||||||
#include <sys/mman.h>
|
|
||||||
#define CAN_CHECK_OPEN_FACES 1
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef USE_GCC_PRAGMAS
|
|
||||||
#pragma implementation
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/*
|
|
||||||
* multi thread disabled by WangLu
|
|
||||||
#if MULTITHREADED
|
|
||||||
# define fontEngineLocker() MutexLocker locker(&mutex)
|
|
||||||
#else
|
|
||||||
*/
|
|
||||||
# define fontEngineLocker()
|
|
||||||
/*
|
|
||||||
#endif
|
|
||||||
*/
|
|
||||||
|
|
||||||
//------------------------------------------------------------------------
|
|
||||||
// CairoFont
|
|
||||||
//------------------------------------------------------------------------
|
|
||||||
|
|
||||||
CairoFont::CairoFont(Ref ref,
|
|
||||||
cairo_font_face_t *cairo_font_face,
|
|
||||||
int *codeToGID,
|
|
||||||
Guint codeToGIDLen,
|
|
||||||
GBool substitute,
|
|
||||||
GBool printing) : ref(ref),
|
|
||||||
cairo_font_face(cairo_font_face),
|
|
||||||
codeToGID(codeToGID),
|
|
||||||
codeToGIDLen(codeToGIDLen),
|
|
||||||
substitute(substitute),
|
|
||||||
printing(printing) { }
|
|
||||||
|
|
||||||
CairoFont::~CairoFont() {
|
|
||||||
cairo_font_face_destroy (cairo_font_face);
|
|
||||||
gfree(codeToGID);
|
|
||||||
}
|
|
||||||
|
|
||||||
GBool
|
|
||||||
CairoFont::matches(Ref &other, GBool printingA) {
|
|
||||||
return (other.num == ref.num && other.gen == ref.gen);
|
|
||||||
}
|
|
||||||
|
|
||||||
cairo_font_face_t *
|
|
||||||
CairoFont::getFontFace(void) {
|
|
||||||
return cairo_font_face;
|
|
||||||
}
|
|
||||||
|
|
||||||
unsigned long
|
|
||||||
CairoFont::getGlyph(CharCode code,
|
|
||||||
Unicode *u, int uLen) {
|
|
||||||
FT_UInt gid;
|
|
||||||
|
|
||||||
if (codeToGID && code < codeToGIDLen) {
|
|
||||||
gid = (FT_UInt)codeToGID[code];
|
|
||||||
} else {
|
|
||||||
gid = (FT_UInt)code;
|
|
||||||
}
|
|
||||||
return gid;
|
|
||||||
}
|
|
||||||
|
|
||||||
double
|
|
||||||
CairoFont::getSubstitutionCorrection(GfxFont *gfxFont)
|
|
||||||
{
|
|
||||||
double w1, w2;
|
|
||||||
CharCode code;
|
|
||||||
char *name;
|
|
||||||
|
|
||||||
// for substituted fonts: adjust the font matrix -- compare the
|
|
||||||
// width of 'm' in the original font and the substituted font
|
|
||||||
if (isSubstitute() && !gfxFont->isCIDFont()) {
|
|
||||||
for (code = 0; code < 256; ++code) {
|
|
||||||
if ((name = ((Gfx8BitFont *)gfxFont)->getCharName(code)) &&
|
|
||||||
name[0] == 'm' && name[1] == '\0') {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (code < 256) {
|
|
||||||
w1 = ((Gfx8BitFont *)gfxFont)->getWidth(code);
|
|
||||||
{
|
|
||||||
cairo_matrix_t m;
|
|
||||||
cairo_matrix_init_identity(&m);
|
|
||||||
cairo_font_options_t *options = cairo_font_options_create();
|
|
||||||
cairo_font_options_set_hint_style(options, CAIRO_HINT_STYLE_NONE);
|
|
||||||
cairo_font_options_set_hint_metrics(options, CAIRO_HINT_METRICS_OFF);
|
|
||||||
cairo_scaled_font_t *scaled_font = cairo_scaled_font_create(cairo_font_face, &m, &m, options);
|
|
||||||
|
|
||||||
cairo_text_extents_t extents;
|
|
||||||
cairo_scaled_font_text_extents(scaled_font, "m", &extents);
|
|
||||||
|
|
||||||
cairo_scaled_font_destroy(scaled_font);
|
|
||||||
cairo_font_options_destroy(options);
|
|
||||||
w2 = extents.x_advance;
|
|
||||||
}
|
|
||||||
if (!gfxFont->isSymbolic()) {
|
|
||||||
// if real font is substantially narrower than substituted
|
|
||||||
// font, reduce the font size accordingly
|
|
||||||
if (w1 > 0.01 && w1 < 0.9 * w2) {
|
|
||||||
w1 /= w2;
|
|
||||||
return w1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return 1.0;
|
|
||||||
}
|
|
||||||
|
|
||||||
//------------------------------------------------------------------------
|
|
||||||
// CairoFreeTypeFont
|
|
||||||
//------------------------------------------------------------------------
|
|
||||||
|
|
||||||
static cairo_user_data_key_t _ft_cairo_key;
|
|
||||||
|
|
||||||
static void
|
|
||||||
_ft_done_face_uncached (void *closure)
|
|
||||||
{
|
|
||||||
FT_Face face = (FT_Face) closure;
|
|
||||||
FT_Done_Face (face);
|
|
||||||
}
|
|
||||||
|
|
||||||
static GBool
|
|
||||||
_ft_new_face_uncached (FT_Library lib,
|
|
||||||
const char *filename,
|
|
||||||
char *font_data,
|
|
||||||
int font_data_len,
|
|
||||||
FT_Face *face_out,
|
|
||||||
cairo_font_face_t **font_face_out)
|
|
||||||
{
|
|
||||||
FT_Face face;
|
|
||||||
cairo_font_face_t *font_face;
|
|
||||||
|
|
||||||
if (font_data == NULL) {
|
|
||||||
if (FT_New_Face (lib, filename, 0, &face))
|
|
||||||
return gFalse;
|
|
||||||
} else {
|
|
||||||
if (FT_New_Memory_Face (lib, (unsigned char *)font_data, font_data_len, 0, &face))
|
|
||||||
return gFalse;
|
|
||||||
}
|
|
||||||
|
|
||||||
font_face = cairo_ft_font_face_create_for_ft_face (face,
|
|
||||||
FT_LOAD_NO_HINTING |
|
|
||||||
FT_LOAD_NO_BITMAP);
|
|
||||||
if (cairo_font_face_set_user_data (font_face,
|
|
||||||
&_ft_cairo_key,
|
|
||||||
face,
|
|
||||||
_ft_done_face_uncached))
|
|
||||||
{
|
|
||||||
_ft_done_face_uncached (face);
|
|
||||||
cairo_font_face_destroy (font_face);
|
|
||||||
return gFalse;
|
|
||||||
}
|
|
||||||
|
|
||||||
*face_out = face;
|
|
||||||
*font_face_out = font_face;
|
|
||||||
return gTrue;
|
|
||||||
}
|
|
||||||
|
|
||||||
#if CAN_CHECK_OPEN_FACES
|
|
||||||
static struct _ft_face_data {
|
|
||||||
struct _ft_face_data *prev, *next, **head;
|
|
||||||
|
|
||||||
int fd;
|
|
||||||
unsigned long hash;
|
|
||||||
size_t size;
|
|
||||||
unsigned char *bytes;
|
|
||||||
|
|
||||||
FT_Library lib;
|
|
||||||
FT_Face face;
|
|
||||||
cairo_font_face_t *font_face;
|
|
||||||
} *_ft_open_faces;
|
|
||||||
|
|
||||||
static unsigned long
|
|
||||||
_djb_hash (const unsigned char *bytes, size_t len)
|
|
||||||
{
|
|
||||||
unsigned long hash = 5381;
|
|
||||||
while (len--) {
|
|
||||||
unsigned char c = *bytes++;
|
|
||||||
hash *= 33;
|
|
||||||
hash ^= c;
|
|
||||||
}
|
|
||||||
return hash;
|
|
||||||
}
|
|
||||||
|
|
||||||
static GBool
|
|
||||||
_ft_face_data_equal (struct _ft_face_data *a, struct _ft_face_data *b)
|
|
||||||
{
|
|
||||||
if (a->lib != b->lib)
|
|
||||||
return gFalse;
|
|
||||||
if (a->size != b->size)
|
|
||||||
return gFalse;
|
|
||||||
if (a->hash != b->hash)
|
|
||||||
return gFalse;
|
|
||||||
|
|
||||||
return memcmp (a->bytes, b->bytes, a->size) == 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
_ft_done_face (void *closure)
|
|
||||||
{
|
|
||||||
struct _ft_face_data *data = (struct _ft_face_data *) closure;
|
|
||||||
|
|
||||||
if (data->next)
|
|
||||||
data->next->prev = data->prev;
|
|
||||||
if (data->prev)
|
|
||||||
data->prev->next = data->next;
|
|
||||||
else
|
|
||||||
_ft_open_faces = data->next;
|
|
||||||
|
|
||||||
#if defined(__SUNPRO_CC) && defined(__sun) && defined(__SVR4)
|
|
||||||
munmap ((char*)data->bytes, data->size);
|
|
||||||
#else
|
|
||||||
munmap (data->bytes, data->size);
|
|
||||||
#endif
|
|
||||||
close (data->fd);
|
|
||||||
|
|
||||||
FT_Done_Face (data->face);
|
|
||||||
gfree (data);
|
|
||||||
}
|
|
||||||
|
|
||||||
static GBool
|
|
||||||
_ft_new_face (FT_Library lib,
|
|
||||||
const char *filename,
|
|
||||||
char *font_data,
|
|
||||||
int font_data_len,
|
|
||||||
FT_Face *face_out,
|
|
||||||
cairo_font_face_t **font_face_out)
|
|
||||||
{
|
|
||||||
struct _ft_face_data *l;
|
|
||||||
struct stat st;
|
|
||||||
struct _ft_face_data tmpl;
|
|
||||||
|
|
||||||
tmpl.fd = -1;
|
|
||||||
|
|
||||||
if (font_data == NULL) {
|
|
||||||
/* if we fail to mmap the file, just pass it to FreeType instead */
|
|
||||||
tmpl.fd = open (filename, O_RDONLY);
|
|
||||||
if (tmpl.fd == -1)
|
|
||||||
return _ft_new_face_uncached (lib, filename, font_data, font_data_len, face_out, font_face_out);
|
|
||||||
|
|
||||||
if (fstat (tmpl.fd, &st) == -1) {
|
|
||||||
close (tmpl.fd);
|
|
||||||
return _ft_new_face_uncached (lib, filename, font_data, font_data_len, face_out, font_face_out);
|
|
||||||
}
|
|
||||||
|
|
||||||
tmpl.bytes = (unsigned char *) mmap (NULL, st.st_size,
|
|
||||||
PROT_READ, MAP_PRIVATE,
|
|
||||||
tmpl.fd, 0);
|
|
||||||
if (tmpl.bytes == MAP_FAILED) {
|
|
||||||
close (tmpl.fd);
|
|
||||||
return _ft_new_face_uncached (lib, filename, font_data, font_data_len, face_out, font_face_out);
|
|
||||||
}
|
|
||||||
tmpl.size = st.st_size;
|
|
||||||
} else {
|
|
||||||
tmpl.bytes = (unsigned char*) font_data;
|
|
||||||
tmpl.size = font_data_len;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* check to see if this is a duplicate of any of the currently open fonts */
|
|
||||||
tmpl.lib = lib;
|
|
||||||
tmpl.hash = _djb_hash (tmpl.bytes, tmpl.size);
|
|
||||||
|
|
||||||
for (l = _ft_open_faces; l; l = l->next) {
|
|
||||||
if (_ft_face_data_equal (l, &tmpl)) {
|
|
||||||
if (tmpl.fd != -1) {
|
|
||||||
#if defined(__SUNPRO_CC) && defined(__sun) && defined(__SVR4)
|
|
||||||
munmap ((char*)tmpl.bytes, tmpl.size);
|
|
||||||
#else
|
|
||||||
munmap (tmpl.bytes, tmpl.size);
|
|
||||||
#endif
|
|
||||||
close (tmpl.fd);
|
|
||||||
}
|
|
||||||
*face_out = l->face;
|
|
||||||
*font_face_out = cairo_font_face_reference (l->font_face);
|
|
||||||
return gTrue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* not a dup, open and insert into list */
|
|
||||||
if (FT_New_Memory_Face (lib,
|
|
||||||
(FT_Byte *) tmpl.bytes, tmpl.size,
|
|
||||||
0, &tmpl.face))
|
|
||||||
{
|
|
||||||
if (tmpl.fd != -1) {
|
|
||||||
#if defined(__SUNPRO_CC) && defined(__sun) && defined(__SVR4)
|
|
||||||
munmap ((char*)tmpl.bytes, tmpl.size);
|
|
||||||
#else
|
|
||||||
munmap (tmpl.bytes, tmpl.size);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
close (tmpl.fd);
|
|
||||||
}
|
|
||||||
return gFalse;
|
|
||||||
}
|
|
||||||
|
|
||||||
l = (struct _ft_face_data *) gmallocn (1, sizeof (struct _ft_face_data));
|
|
||||||
*l = tmpl;
|
|
||||||
l->prev = NULL;
|
|
||||||
l->next = _ft_open_faces;
|
|
||||||
if (_ft_open_faces)
|
|
||||||
_ft_open_faces->prev = l;
|
|
||||||
_ft_open_faces = l;
|
|
||||||
|
|
||||||
l->font_face = cairo_ft_font_face_create_for_ft_face (tmpl.face,
|
|
||||||
FT_LOAD_NO_HINTING |
|
|
||||||
FT_LOAD_NO_BITMAP);
|
|
||||||
if (cairo_font_face_set_user_data (l->font_face,
|
|
||||||
&_ft_cairo_key,
|
|
||||||
l,
|
|
||||||
_ft_done_face))
|
|
||||||
{
|
|
||||||
cairo_font_face_destroy (l->font_face);
|
|
||||||
_ft_done_face (l);
|
|
||||||
return gFalse;
|
|
||||||
}
|
|
||||||
|
|
||||||
*face_out = l->face;
|
|
||||||
*font_face_out = l->font_face;
|
|
||||||
return gTrue;
|
|
||||||
}
|
|
||||||
#else
|
|
||||||
#define _ft_new_face _ft_new_face_uncached
|
|
||||||
#endif
|
|
||||||
|
|
||||||
CairoFreeTypeFont::CairoFreeTypeFont(Ref ref,
|
|
||||||
cairo_font_face_t *cairo_font_face,
|
|
||||||
int *codeToGID,
|
|
||||||
Guint codeToGIDLen,
|
|
||||||
GBool substitute) : CairoFont(ref,
|
|
||||||
cairo_font_face,
|
|
||||||
codeToGID,
|
|
||||||
codeToGIDLen,
|
|
||||||
substitute,
|
|
||||||
gTrue) { }
|
|
||||||
|
|
||||||
CairoFreeTypeFont::~CairoFreeTypeFont() { }
|
|
||||||
|
|
||||||
CairoFreeTypeFont *CairoFreeTypeFont::create(GfxFont *gfxFont, XRef *xref,
|
|
||||||
FT_Library lib, GBool useCIDs) {
|
|
||||||
Object refObj, strObj;
|
|
||||||
GooString *fileName;
|
|
||||||
char *fileNameC;
|
|
||||||
char *font_data;
|
|
||||||
int font_data_len;
|
|
||||||
int i, n;
|
|
||||||
GfxFontType fontType;
|
|
||||||
GfxFontLoc *fontLoc;
|
|
||||||
char **enc;
|
|
||||||
char *name;
|
|
||||||
FoFiTrueType *ff;
|
|
||||||
FoFiType1C *ff1c;
|
|
||||||
Ref ref;
|
|
||||||
FT_Face face;
|
|
||||||
cairo_font_face_t *font_face;
|
|
||||||
|
|
||||||
int *codeToGID;
|
|
||||||
Guint codeToGIDLen;
|
|
||||||
|
|
||||||
codeToGID = NULL;
|
|
||||||
codeToGIDLen = 0;
|
|
||||||
font_data = NULL;
|
|
||||||
font_data_len = 0;
|
|
||||||
fileName = NULL;
|
|
||||||
fileNameC = NULL;
|
|
||||||
|
|
||||||
GBool substitute = gFalse;
|
|
||||||
|
|
||||||
ref = *gfxFont->getID();
|
|
||||||
fontType = gfxFont->getType();
|
|
||||||
|
|
||||||
if (!(fontLoc = gfxFont->locateFont(xref, gFalse))) {
|
|
||||||
error(errSyntaxError, -1, "Couldn't find a font for '{0:s}'",
|
|
||||||
gfxFont->getName() ? gfxFont->getName()->getCString()
|
|
||||||
: "(unnamed)");
|
|
||||||
goto err2;
|
|
||||||
}
|
|
||||||
|
|
||||||
// embedded font
|
|
||||||
if (fontLoc->locType == gfxFontLocEmbedded) {
|
|
||||||
font_data = gfxFont->readEmbFontFile(xref, &font_data_len);
|
|
||||||
if (NULL == font_data)
|
|
||||||
goto err2;
|
|
||||||
|
|
||||||
// external font
|
|
||||||
} else { // gfxFontLocExternal
|
|
||||||
fileName = fontLoc->path;
|
|
||||||
fontType = fontLoc->fontType;
|
|
||||||
substitute = gTrue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (fileName != NULL) {
|
|
||||||
fileNameC = fileName->getCString();
|
|
||||||
}
|
|
||||||
|
|
||||||
switch (fontType) {
|
|
||||||
case fontType1:
|
|
||||||
case fontType1C:
|
|
||||||
case fontType1COT:
|
|
||||||
if (! _ft_new_face (lib, fileNameC, font_data, font_data_len, &face, &font_face)) {
|
|
||||||
error(errSyntaxError, -1, "could not create type1 face");
|
|
||||||
goto err2;
|
|
||||||
}
|
|
||||||
|
|
||||||
enc = ((Gfx8BitFont *)gfxFont)->getEncoding();
|
|
||||||
|
|
||||||
codeToGID = (int *)gmallocn(256, sizeof(int));
|
|
||||||
codeToGIDLen = 256;
|
|
||||||
for (i = 0; i < 256; ++i) {
|
|
||||||
codeToGID[i] = 0;
|
|
||||||
if ((name = enc[i])) {
|
|
||||||
codeToGID[i] = FT_Get_Name_Index(face, name);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case fontCIDType2:
|
|
||||||
case fontCIDType2OT:
|
|
||||||
codeToGID = NULL;
|
|
||||||
n = 0;
|
|
||||||
if (((GfxCIDFont *)gfxFont)->getCIDToGID()) {
|
|
||||||
n = ((GfxCIDFont *)gfxFont)->getCIDToGIDLen();
|
|
||||||
if (n) {
|
|
||||||
codeToGID = (int *)gmallocn(n, sizeof(int));
|
|
||||||
memcpy(codeToGID, ((GfxCIDFont *)gfxFont)->getCIDToGID(),
|
|
||||||
n * sizeof(int));
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if (font_data != NULL) {
|
|
||||||
ff = FoFiTrueType::make(font_data, font_data_len);
|
|
||||||
} else {
|
|
||||||
ff = FoFiTrueType::load(fileNameC);
|
|
||||||
}
|
|
||||||
if (! ff)
|
|
||||||
goto err2;
|
|
||||||
codeToGID = ((GfxCIDFont *)gfxFont)->getCodeToGIDMap(ff, &n);
|
|
||||||
delete ff;
|
|
||||||
}
|
|
||||||
codeToGIDLen = n;
|
|
||||||
/* Fall through */
|
|
||||||
case fontTrueType:
|
|
||||||
if (font_data != NULL) {
|
|
||||||
ff = FoFiTrueType::make(font_data, font_data_len);
|
|
||||||
} else {
|
|
||||||
ff = FoFiTrueType::load(fileNameC);
|
|
||||||
}
|
|
||||||
if (! ff) {
|
|
||||||
error(errSyntaxError, -1, "failed to load truetype font\n");
|
|
||||||
goto err2;
|
|
||||||
}
|
|
||||||
/* This might be set already for the CIDType2 case */
|
|
||||||
if (fontType == fontTrueType) {
|
|
||||||
codeToGID = ((Gfx8BitFont *)gfxFont)->getCodeToGIDMap(ff);
|
|
||||||
codeToGIDLen = 256;
|
|
||||||
}
|
|
||||||
delete ff;
|
|
||||||
if (! _ft_new_face (lib, fileNameC, font_data, font_data_len, &face, &font_face)) {
|
|
||||||
error(errSyntaxError, -1, "could not create truetype face\n");
|
|
||||||
goto err2;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case fontCIDType0:
|
|
||||||
case fontCIDType0C:
|
|
||||||
|
|
||||||
codeToGID = NULL;
|
|
||||||
codeToGIDLen = 0;
|
|
||||||
|
|
||||||
if (!useCIDs)
|
|
||||||
{
|
|
||||||
if (font_data != NULL) {
|
|
||||||
ff1c = FoFiType1C::make(font_data, font_data_len);
|
|
||||||
} else {
|
|
||||||
ff1c = FoFiType1C::load(fileNameC);
|
|
||||||
}
|
|
||||||
if (ff1c) {
|
|
||||||
codeToGID = ff1c->getCIDToGIDMap((int *)&codeToGIDLen);
|
|
||||||
delete ff1c;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (! _ft_new_face (lib, fileNameC, font_data, font_data_len, &face, &font_face)) {
|
|
||||||
gfree(codeToGID);
|
|
||||||
codeToGID = NULL;
|
|
||||||
error(errSyntaxError, -1, "could not create cid face\n");
|
|
||||||
goto err2;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
default:
|
|
||||||
fprintf (stderr, "font type %d not handled\n", (int)fontType);
|
|
||||||
goto err2;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
delete fontLoc;
|
|
||||||
return new CairoFreeTypeFont(ref,
|
|
||||||
font_face,
|
|
||||||
codeToGID, codeToGIDLen,
|
|
||||||
substitute);
|
|
||||||
|
|
||||||
err2:
|
|
||||||
/* hmm? */
|
|
||||||
delete fontLoc;
|
|
||||||
fprintf (stderr, "some font thing failed\n");
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
//------------------------------------------------------------------------
|
|
||||||
// CairoType3Font
|
|
||||||
//------------------------------------------------------------------------
|
|
||||||
|
|
||||||
static const cairo_user_data_key_t type3_font_key = {0};
|
|
||||||
|
|
||||||
typedef struct _type3_font_info {
|
|
||||||
GfxFont *font;
|
|
||||||
PDFDoc *doc;
|
|
||||||
CairoFontEngine *fontEngine;
|
|
||||||
GBool printing;
|
|
||||||
XRef *xref;
|
|
||||||
} type3_font_info_t;
|
|
||||||
|
|
||||||
static void
|
|
||||||
_free_type3_font_info(void *closure)
|
|
||||||
{
|
|
||||||
type3_font_info_t *info = (type3_font_info_t *) closure;
|
|
||||||
|
|
||||||
info->font->decRefCnt();
|
|
||||||
free (info);
|
|
||||||
}
|
|
||||||
|
|
||||||
static cairo_status_t
|
|
||||||
_init_type3_glyph (cairo_scaled_font_t *scaled_font,
|
|
||||||
cairo_t *cr,
|
|
||||||
cairo_font_extents_t *extents)
|
|
||||||
{
|
|
||||||
type3_font_info_t *info;
|
|
||||||
GfxFont *font;
|
|
||||||
double *mat;
|
|
||||||
|
|
||||||
info = (type3_font_info_t *)
|
|
||||||
cairo_font_face_get_user_data (cairo_scaled_font_get_font_face (scaled_font),
|
|
||||||
&type3_font_key);
|
|
||||||
font = info->font;
|
|
||||||
mat = font->getFontBBox();
|
|
||||||
extents->ascent = mat[3]; /* y2 */
|
|
||||||
extents->descent = -mat[3]; /* -y1 */
|
|
||||||
extents->height = extents->ascent + extents->descent;
|
|
||||||
extents->max_x_advance = mat[2] - mat[1]; /* x2 - x1 */
|
|
||||||
extents->max_y_advance = 0;
|
|
||||||
|
|
||||||
return CAIRO_STATUS_SUCCESS;
|
|
||||||
}
|
|
||||||
|
|
||||||
static cairo_status_t
|
|
||||||
_render_type3_glyph (cairo_scaled_font_t *scaled_font,
|
|
||||||
unsigned long glyph,
|
|
||||||
cairo_t *cr,
|
|
||||||
cairo_text_extents_t *metrics)
|
|
||||||
{
|
|
||||||
Dict *charProcs;
|
|
||||||
Object charProc;
|
|
||||||
CairoOutputDev *output_dev;
|
|
||||||
cairo_matrix_t matrix, invert_y_axis;
|
|
||||||
double *mat;
|
|
||||||
double wx, wy;
|
|
||||||
PDFRectangle box;
|
|
||||||
type3_font_info_t *info;
|
|
||||||
GfxFont *font;
|
|
||||||
Dict *resDict;
|
|
||||||
Gfx *gfx;
|
|
||||||
|
|
||||||
info = (type3_font_info_t *)
|
|
||||||
cairo_font_face_get_user_data (cairo_scaled_font_get_font_face (scaled_font),
|
|
||||||
&type3_font_key);
|
|
||||||
|
|
||||||
font = info->font;
|
|
||||||
resDict = ((Gfx8BitFont *)font)->getResources();
|
|
||||||
charProcs = ((Gfx8BitFont *)(info->font))->getCharProcs();
|
|
||||||
if (!charProcs)
|
|
||||||
return CAIRO_STATUS_USER_FONT_ERROR;
|
|
||||||
|
|
||||||
if ((int)glyph >= charProcs->getLength())
|
|
||||||
return CAIRO_STATUS_USER_FONT_ERROR;
|
|
||||||
|
|
||||||
mat = font->getFontMatrix();
|
|
||||||
matrix.xx = mat[0];
|
|
||||||
matrix.yx = mat[1];
|
|
||||||
matrix.xy = mat[2];
|
|
||||||
matrix.yy = mat[3];
|
|
||||||
matrix.x0 = mat[4];
|
|
||||||
matrix.y0 = mat[5];
|
|
||||||
cairo_matrix_init_scale (&invert_y_axis, 1, -1);
|
|
||||||
cairo_matrix_multiply (&matrix, &matrix, &invert_y_axis);
|
|
||||||
cairo_transform (cr, &matrix);
|
|
||||||
|
|
||||||
output_dev = new CairoOutputDev();
|
|
||||||
output_dev->setCairo(cr);
|
|
||||||
output_dev->setPrinting(info->printing);
|
|
||||||
|
|
||||||
mat = font->getFontBBox();
|
|
||||||
box.x1 = mat[0];
|
|
||||||
box.y1 = mat[1];
|
|
||||||
box.x2 = mat[2];
|
|
||||||
box.y2 = mat[3];
|
|
||||||
gfx = new Gfx(info->doc, output_dev, resDict, &box, NULL);
|
|
||||||
output_dev->startDoc(info->doc, info->fontEngine);
|
|
||||||
output_dev->startPage (1, gfx->getState(), gfx->getXRef());
|
|
||||||
output_dev->setInType3Char(gTrue);
|
|
||||||
gfx->display(charProcs->getVal(glyph, &charProc));
|
|
||||||
|
|
||||||
output_dev->getType3GlyphWidth (&wx, &wy);
|
|
||||||
cairo_matrix_transform_distance (&matrix, &wx, &wy);
|
|
||||||
metrics->x_advance = wx;
|
|
||||||
metrics->y_advance = wy;
|
|
||||||
if (output_dev->hasType3GlyphBBox()) {
|
|
||||||
double *bbox = output_dev->getType3GlyphBBox();
|
|
||||||
|
|
||||||
cairo_matrix_transform_point (&matrix, &bbox[0], &bbox[1]);
|
|
||||||
cairo_matrix_transform_point (&matrix, &bbox[2], &bbox[3]);
|
|
||||||
metrics->x_bearing = bbox[0];
|
|
||||||
metrics->y_bearing = bbox[1];
|
|
||||||
metrics->width = bbox[2] - bbox[0];
|
|
||||||
metrics->height = bbox[3] - bbox[1];
|
|
||||||
}
|
|
||||||
|
|
||||||
delete gfx;
|
|
||||||
delete output_dev;
|
|
||||||
charProc.free();
|
|
||||||
|
|
||||||
return CAIRO_STATUS_SUCCESS;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
CairoType3Font *CairoType3Font::create(GfxFont *gfxFont, PDFDoc *doc,
|
|
||||||
CairoFontEngine *fontEngine,
|
|
||||||
GBool printing, XRef *xref) {
|
|
||||||
Object refObj, strObj;
|
|
||||||
type3_font_info_t *info;
|
|
||||||
cairo_font_face_t *font_face;
|
|
||||||
Ref ref;
|
|
||||||
int *codeToGID;
|
|
||||||
Guint codeToGIDLen;
|
|
||||||
int i, j;
|
|
||||||
char **enc;
|
|
||||||
Dict *charProcs;
|
|
||||||
char *name;
|
|
||||||
|
|
||||||
charProcs = ((Gfx8BitFont *)gfxFont)->getCharProcs();
|
|
||||||
info = (type3_font_info_t *) malloc(sizeof(*info));
|
|
||||||
ref = *gfxFont->getID();
|
|
||||||
font_face = cairo_user_font_face_create();
|
|
||||||
cairo_user_font_face_set_init_func (font_face, _init_type3_glyph);
|
|
||||||
cairo_user_font_face_set_render_glyph_func (font_face, _render_type3_glyph);
|
|
||||||
gfxFont->incRefCnt();
|
|
||||||
info->font = gfxFont;
|
|
||||||
info->doc = doc;
|
|
||||||
info->fontEngine = fontEngine;
|
|
||||||
info->printing = printing;
|
|
||||||
info->xref = xref;
|
|
||||||
|
|
||||||
cairo_font_face_set_user_data (font_face, &type3_font_key, (void *) info, _free_type3_font_info);
|
|
||||||
|
|
||||||
enc = ((Gfx8BitFont *)gfxFont)->getEncoding();
|
|
||||||
codeToGID = (int *)gmallocn(256, sizeof(int));
|
|
||||||
codeToGIDLen = 256;
|
|
||||||
for (i = 0; i < 256; ++i) {
|
|
||||||
codeToGID[i] = 0;
|
|
||||||
if (charProcs && (name = enc[i])) {
|
|
||||||
for (j = 0; j < charProcs->getLength(); j++) {
|
|
||||||
if (strcmp(name, charProcs->getKey(j)) == 0) {
|
|
||||||
codeToGID[i] = j;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return new CairoType3Font(ref, doc, font_face, codeToGID, codeToGIDLen, printing, xref);
|
|
||||||
}
|
|
||||||
|
|
||||||
CairoType3Font::CairoType3Font(Ref ref,
|
|
||||||
PDFDoc *doc,
|
|
||||||
cairo_font_face_t *cairo_font_face,
|
|
||||||
int *codeToGID,
|
|
||||||
Guint codeToGIDLen,
|
|
||||||
GBool printing, XRef *xref) : CairoFont(ref,
|
|
||||||
cairo_font_face,
|
|
||||||
codeToGID,
|
|
||||||
codeToGIDLen,
|
|
||||||
gFalse,
|
|
||||||
printing),
|
|
||||||
doc(doc) { }
|
|
||||||
|
|
||||||
CairoType3Font::~CairoType3Font() { }
|
|
||||||
|
|
||||||
GBool
|
|
||||||
CairoType3Font::matches(Ref &other, GBool printingA) {
|
|
||||||
return (other.num == ref.num && other.gen == ref.gen && printing == printingA);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
//------------------------------------------------------------------------
|
|
||||||
// CairoFontEngine
|
|
||||||
//------------------------------------------------------------------------
|
|
||||||
|
|
||||||
CairoFontEngine::CairoFontEngine(FT_Library libA) {
|
|
||||||
int i;
|
|
||||||
|
|
||||||
lib = libA;
|
|
||||||
for (i = 0; i < cairoFontCacheSize; ++i) {
|
|
||||||
fontCache[i] = NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
FT_Int major, minor, patch;
|
|
||||||
// as of FT 2.1.8, CID fonts are indexed by CID instead of GID
|
|
||||||
FT_Library_Version(lib, &major, &minor, &patch);
|
|
||||||
useCIDs = major > 2 ||
|
|
||||||
(major == 2 && (minor > 1 || (minor == 1 && patch > 7)));
|
|
||||||
/*
|
|
||||||
* multi thread disabled by WangLu
|
|
||||||
#if MULTITHREADED
|
|
||||||
gInitMutex(&mutex);
|
|
||||||
#endif
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
CairoFontEngine::~CairoFontEngine() {
|
|
||||||
int i;
|
|
||||||
|
|
||||||
for (i = 0; i < cairoFontCacheSize; ++i) {
|
|
||||||
if (fontCache[i])
|
|
||||||
delete fontCache[i];
|
|
||||||
}
|
|
||||||
/*
|
|
||||||
* multi thread disabled by WangLu
|
|
||||||
#if MULTITHREADED
|
|
||||||
gDestroyMutex(&mutex);
|
|
||||||
#endif
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
CairoFont *
|
|
||||||
CairoFontEngine::getFont(GfxFont *gfxFont, PDFDoc *doc, GBool printing, XRef *xref) {
|
|
||||||
int i, j;
|
|
||||||
Ref ref;
|
|
||||||
CairoFont *font;
|
|
||||||
GfxFontType fontType;
|
|
||||||
|
|
||||||
fontEngineLocker();
|
|
||||||
ref = *gfxFont->getID();
|
|
||||||
|
|
||||||
for (i = 0; i < cairoFontCacheSize; ++i) {
|
|
||||||
font = fontCache[i];
|
|
||||||
if (font && font->matches(ref, printing)) {
|
|
||||||
for (j = i; j > 0; --j) {
|
|
||||||
fontCache[j] = fontCache[j-1];
|
|
||||||
}
|
|
||||||
fontCache[0] = font;
|
|
||||||
return font;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fontType = gfxFont->getType();
|
|
||||||
if (fontType == fontType3)
|
|
||||||
font = CairoType3Font::create (gfxFont, doc, this, printing, xref);
|
|
||||||
else
|
|
||||||
font = CairoFreeTypeFont::create (gfxFont, xref, lib, useCIDs);
|
|
||||||
|
|
||||||
//XXX: if font is null should we still insert it into the cache?
|
|
||||||
if (fontCache[cairoFontCacheSize - 1]) {
|
|
||||||
delete fontCache[cairoFontCacheSize - 1];
|
|
||||||
}
|
|
||||||
for (j = cairoFontCacheSize - 1; j > 0; --j) {
|
|
||||||
fontCache[j] = fontCache[j-1];
|
|
||||||
}
|
|
||||||
fontCache[0] = font;
|
|
||||||
return font;
|
|
||||||
}
|
|
@ -1,132 +0,0 @@
|
|||||||
//========================================================================
|
|
||||||
//
|
|
||||||
// CairoFontEngine.h
|
|
||||||
//
|
|
||||||
// Copyright 2003 Glyph & Cog, LLC
|
|
||||||
// Copyright 2004 Red Hat, Inc
|
|
||||||
//
|
|
||||||
//========================================================================
|
|
||||||
|
|
||||||
//========================================================================
|
|
||||||
//
|
|
||||||
// Modified under the Poppler project - http://poppler.freedesktop.org
|
|
||||||
//
|
|
||||||
// All changes made under the Poppler project to this file are licensed
|
|
||||||
// under GPL version 2 or later
|
|
||||||
//
|
|
||||||
// Copyright (C) 2005, 2006 Kristian Høgsberg <krh@redhat.com>
|
|
||||||
// Copyright (C) 2005 Albert Astals Cid <aacid@kde.org>
|
|
||||||
// Copyright (C) 2006, 2007 Jeff Muizelaar <jeff@infidigm.net>
|
|
||||||
// Copyright (C) 2006, 2010 Carlos Garcia Campos <carlosgc@gnome.org>
|
|
||||||
// Copyright (C) 2008 Adrian Johnson <ajohnson@redneon.com>
|
|
||||||
// Copyright (C) 2013 Thomas Freitag <Thomas.Freitag@alfa.de>
|
|
||||||
//
|
|
||||||
// To see a description of the changes please see the Changelog file that
|
|
||||||
// came with your tarball or type make ChangeLog if you are building from git
|
|
||||||
//
|
|
||||||
//========================================================================
|
|
||||||
|
|
||||||
#ifndef CAIROFONTENGINE_H
|
|
||||||
#define CAIROFONTENGINE_H
|
|
||||||
|
|
||||||
#ifdef USE_GCC_PRAGMAS
|
|
||||||
#pragma interface
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "poppler-config.h"
|
|
||||||
#include "goo/gtypes.h"
|
|
||||||
#include <cairo-ft.h>
|
|
||||||
|
|
||||||
#include "GfxFont.h"
|
|
||||||
#include "PDFDoc.h"
|
|
||||||
|
|
||||||
class CairoFontEngine;
|
|
||||||
|
|
||||||
class CairoFont {
|
|
||||||
public:
|
|
||||||
CairoFont(Ref ref,
|
|
||||||
cairo_font_face_t *face,
|
|
||||||
int *codeToGID,
|
|
||||||
Guint codeToGIDLen,
|
|
||||||
GBool substitute,
|
|
||||||
GBool printing);
|
|
||||||
virtual ~CairoFont();
|
|
||||||
|
|
||||||
virtual GBool matches(Ref &other, GBool printing);
|
|
||||||
cairo_font_face_t *getFontFace(void);
|
|
||||||
unsigned long getGlyph(CharCode code, Unicode *u, int uLen);
|
|
||||||
double getSubstitutionCorrection(GfxFont *gfxFont);
|
|
||||||
|
|
||||||
GBool isSubstitute() { return substitute; }
|
|
||||||
protected:
|
|
||||||
Ref ref;
|
|
||||||
cairo_font_face_t *cairo_font_face;
|
|
||||||
|
|
||||||
int *codeToGID;
|
|
||||||
Guint codeToGIDLen;
|
|
||||||
|
|
||||||
GBool substitute;
|
|
||||||
GBool printing;
|
|
||||||
};
|
|
||||||
|
|
||||||
//------------------------------------------------------------------------
|
|
||||||
|
|
||||||
class CairoFreeTypeFont : public CairoFont {
|
|
||||||
public:
|
|
||||||
static CairoFreeTypeFont *create(GfxFont *gfxFont, XRef *xref, FT_Library lib, GBool useCIDs);
|
|
||||||
virtual ~CairoFreeTypeFont();
|
|
||||||
|
|
||||||
private:
|
|
||||||
CairoFreeTypeFont(Ref ref, cairo_font_face_t *cairo_font_face,
|
|
||||||
int *codeToGID, Guint codeToGIDLen, GBool substitute);
|
|
||||||
};
|
|
||||||
|
|
||||||
//------------------------------------------------------------------------
|
|
||||||
|
|
||||||
class CairoType3Font : public CairoFont {
|
|
||||||
public:
|
|
||||||
static CairoType3Font *create(GfxFont *gfxFont, PDFDoc *doc,
|
|
||||||
CairoFontEngine *fontEngine,
|
|
||||||
GBool printing, XRef *xref);
|
|
||||||
virtual ~CairoType3Font();
|
|
||||||
|
|
||||||
virtual GBool matches(Ref &other, GBool printing);
|
|
||||||
|
|
||||||
private:
|
|
||||||
CairoType3Font(Ref ref, PDFDoc *doc,
|
|
||||||
cairo_font_face_t *cairo_font_face,
|
|
||||||
int *codeToGID, Guint codeToGIDLen,
|
|
||||||
GBool printing, XRef *xref);
|
|
||||||
PDFDoc *doc;
|
|
||||||
};
|
|
||||||
|
|
||||||
//------------------------------------------------------------------------
|
|
||||||
|
|
||||||
#define cairoFontCacheSize 64
|
|
||||||
|
|
||||||
//------------------------------------------------------------------------
|
|
||||||
// CairoFontEngine
|
|
||||||
//------------------------------------------------------------------------
|
|
||||||
|
|
||||||
class CairoFontEngine {
|
|
||||||
public:
|
|
||||||
|
|
||||||
// Create a font engine.
|
|
||||||
CairoFontEngine(FT_Library libA);
|
|
||||||
~CairoFontEngine();
|
|
||||||
|
|
||||||
CairoFont *getFont(GfxFont *gfxFont, PDFDoc *doc, GBool printing, XRef *xref);
|
|
||||||
|
|
||||||
private:
|
|
||||||
CairoFont *fontCache[cairoFontCacheSize];
|
|
||||||
FT_Library lib;
|
|
||||||
GBool useCIDs;
|
|
||||||
/*
|
|
||||||
* multi thread disabled by WangLu
|
|
||||||
#if MULTITHREADED
|
|
||||||
GooMutex mutex;
|
|
||||||
#endif
|
|
||||||
*/
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
|
File diff suppressed because it is too large
Load Diff
@ -1,507 +0,0 @@
|
|||||||
//========================================================================
|
|
||||||
//
|
|
||||||
// CairoOutputDev.h
|
|
||||||
//
|
|
||||||
// Copyright 2003 Glyph & Cog, LLC
|
|
||||||
// Copyright 2004 Red Hat, INC
|
|
||||||
//
|
|
||||||
//========================================================================
|
|
||||||
|
|
||||||
//========================================================================
|
|
||||||
//
|
|
||||||
// Modified under the Poppler project - http://poppler.freedesktop.org
|
|
||||||
//
|
|
||||||
// All changes made under the Poppler project to this file are licensed
|
|
||||||
// under GPL version 2 or later
|
|
||||||
//
|
|
||||||
// Copyright (C) 2005-2008 Jeff Muizelaar <jeff@infidigm.net>
|
|
||||||
// Copyright (C) 2005, 2006 Kristian Høgsberg <krh@redhat.com>
|
|
||||||
// Copyright (C) 2005 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
|
|
||||||
// Copyright (C) 2006-2011, 2013 Carlos Garcia Campos <carlosgc@gnome.org>
|
|
||||||
// Copyright (C) 2008, 2009, 2011-2013 Adrian Johnson <ajohnson@redneon.com>
|
|
||||||
// Copyright (C) 2008 Michael Vrable <mvrable@cs.ucsd.edu>
|
|
||||||
// Copyright (C) 2010-2013 Thomas Freitag <Thomas.Freitag@alfa.de>
|
|
||||||
//
|
|
||||||
// To see a description of the changes please see the Changelog file that
|
|
||||||
// came with your tarball or type make ChangeLog if you are building from git
|
|
||||||
//
|
|
||||||
//========================================================================
|
|
||||||
|
|
||||||
#ifndef CAIROOUTPUTDEV_H
|
|
||||||
#define CAIROOUTPUTDEV_H
|
|
||||||
|
|
||||||
#ifdef USE_GCC_PRAGMAS
|
|
||||||
#pragma interface
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "goo/gtypes.h"
|
|
||||||
#include <cairo-ft.h>
|
|
||||||
#include "OutputDev.h"
|
|
||||||
#include "TextOutputDev.h"
|
|
||||||
#include "GfxState.h"
|
|
||||||
|
|
||||||
class PDFDoc;
|
|
||||||
class GfxState;
|
|
||||||
class GfxPath;
|
|
||||||
class Gfx8BitFont;
|
|
||||||
struct GfxRGB;
|
|
||||||
class CairoFontEngine;
|
|
||||||
class CairoFont;
|
|
||||||
|
|
||||||
//------------------------------------------------------------------------
|
|
||||||
|
|
||||||
//------------------------------------------------------------------------
|
|
||||||
// CairoImage
|
|
||||||
//------------------------------------------------------------------------
|
|
||||||
class CairoImage {
|
|
||||||
public:
|
|
||||||
// Constructor.
|
|
||||||
CairoImage (double x1, double y1, double x2, double y2);
|
|
||||||
|
|
||||||
// Destructor.
|
|
||||||
~CairoImage ();
|
|
||||||
|
|
||||||
// Set the image cairo surface
|
|
||||||
void setImage (cairo_surface_t *image);
|
|
||||||
|
|
||||||
// Get the image cairo surface
|
|
||||||
cairo_surface_t *getImage () const { return image; }
|
|
||||||
|
|
||||||
// Get the image rectangle
|
|
||||||
void getRect (double *xa1, double *ya1, double *xa2, double *ya2)
|
|
||||||
{ *xa1 = x1; *ya1 = y1; *xa2 = x2; *ya2 = y2; }
|
|
||||||
|
|
||||||
private:
|
|
||||||
cairo_surface_t *image; // image cairo surface
|
|
||||||
double x1, y1; // upper left corner
|
|
||||||
double x2, y2; // lower right corner
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
//------------------------------------------------------------------------
|
|
||||||
// CairoOutputDev
|
|
||||||
//------------------------------------------------------------------------
|
|
||||||
|
|
||||||
class CairoOutputDev: public OutputDev {
|
|
||||||
public:
|
|
||||||
|
|
||||||
// Constructor.
|
|
||||||
CairoOutputDev();
|
|
||||||
|
|
||||||
// Destructor.
|
|
||||||
virtual ~CairoOutputDev();
|
|
||||||
|
|
||||||
//----- get info about output device
|
|
||||||
|
|
||||||
// Does this device use upside-down coordinates?
|
|
||||||
// (Upside-down means (0,0) is the top left corner of the page.)
|
|
||||||
virtual GBool upsideDown() { return gTrue; }
|
|
||||||
|
|
||||||
// Does this device use drawChar() or drawString()?
|
|
||||||
virtual GBool useDrawChar() { return gTrue; }
|
|
||||||
|
|
||||||
// Does this device use tilingPatternFill()? If this returns false,
|
|
||||||
// tiling pattern fills will be reduced to a series of other drawing
|
|
||||||
// operations.
|
|
||||||
virtual GBool useTilingPatternFill() { return gTrue; }
|
|
||||||
|
|
||||||
// Does this device use functionShadedFill(), axialShadedFill(), and
|
|
||||||
// radialShadedFill()? If this returns false, these shaded fills
|
|
||||||
// will be reduced to a series of other drawing operations.
|
|
||||||
#if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1, 12, 0)
|
|
||||||
virtual GBool useShadedFills(int type) { return type <= 7; }
|
|
||||||
#else
|
|
||||||
virtual GBool useShadedFills(int type) { return type < 4; }
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// Does this device use FillColorStop()?
|
|
||||||
virtual GBool useFillColorStop() { return gTrue; }
|
|
||||||
|
|
||||||
// Does this device use beginType3Char/endType3Char? Otherwise,
|
|
||||||
// text in Type 3 fonts will be drawn with drawChar/drawString.
|
|
||||||
virtual GBool interpretType3Chars() { return gFalse; }
|
|
||||||
|
|
||||||
//----- initialization and control
|
|
||||||
|
|
||||||
// Start a page.
|
|
||||||
virtual void startPage(int pageNum, GfxState *state, XRef *xref);
|
|
||||||
|
|
||||||
// End a page.
|
|
||||||
virtual void endPage();
|
|
||||||
|
|
||||||
//----- save/restore graphics state
|
|
||||||
virtual void saveState(GfxState *state);
|
|
||||||
virtual void restoreState(GfxState *state);
|
|
||||||
|
|
||||||
//----- update graphics state
|
|
||||||
virtual void updateAll(GfxState *state);
|
|
||||||
virtual void setDefaultCTM(double *ctm);
|
|
||||||
virtual void updateCTM(GfxState *state, double m11, double m12,
|
|
||||||
double m21, double m22, double m31, double m32);
|
|
||||||
virtual void updateLineDash(GfxState *state);
|
|
||||||
virtual void updateFlatness(GfxState *state);
|
|
||||||
virtual void updateLineJoin(GfxState *state);
|
|
||||||
virtual void updateLineCap(GfxState *state);
|
|
||||||
virtual void updateMiterLimit(GfxState *state);
|
|
||||||
virtual void updateLineWidth(GfxState *state);
|
|
||||||
virtual void updateFillColor(GfxState *state);
|
|
||||||
virtual void updateStrokeColor(GfxState *state);
|
|
||||||
virtual void updateFillOpacity(GfxState *state);
|
|
||||||
virtual void updateStrokeOpacity(GfxState *state);
|
|
||||||
virtual void updateFillColorStop(GfxState *state, double offset);
|
|
||||||
virtual void updateBlendMode(GfxState *state);
|
|
||||||
|
|
||||||
//----- update text state
|
|
||||||
virtual void updateFont(GfxState *state);
|
|
||||||
|
|
||||||
//----- path painting
|
|
||||||
virtual void stroke(GfxState *state);
|
|
||||||
virtual void fill(GfxState *state);
|
|
||||||
virtual void eoFill(GfxState *state);
|
|
||||||
virtual void clipToStrokePath(GfxState *state);
|
|
||||||
virtual GBool tilingPatternFill(GfxState *state, Gfx *gfx, Catalog *cat, Object *str,
|
|
||||||
double *pmat, int paintType, int tilingType, Dict *resDict,
|
|
||||||
double *mat, double *bbox,
|
|
||||||
int x0, int y0, int x1, int y1,
|
|
||||||
double xStep, double yStep);
|
|
||||||
virtual GBool axialShadedFill(GfxState *state, GfxAxialShading *shading, double tMin, double tMax);
|
|
||||||
virtual GBool axialShadedSupportExtend(GfxState *state, GfxAxialShading *shading);
|
|
||||||
virtual GBool radialShadedFill(GfxState *state, GfxRadialShading *shading, double sMin, double sMax);
|
|
||||||
virtual GBool radialShadedSupportExtend(GfxState *state, GfxRadialShading *shading);
|
|
||||||
#if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1, 12, 0)
|
|
||||||
virtual GBool gouraudTriangleShadedFill(GfxState *state, GfxGouraudTriangleShading *shading);
|
|
||||||
virtual GBool patchMeshShadedFill(GfxState *state, GfxPatchMeshShading *shading);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
//----- path clipping
|
|
||||||
virtual void clip(GfxState *state);
|
|
||||||
virtual void eoClip(GfxState *state);
|
|
||||||
|
|
||||||
//----- text drawing
|
|
||||||
void beginString(GfxState *state, GooString *s);
|
|
||||||
void endString(GfxState *state);
|
|
||||||
void drawChar(GfxState *state, double x, double y,
|
|
||||||
double dx, double dy,
|
|
||||||
double originX, double originY,
|
|
||||||
CharCode code, int nBytes, Unicode *u, int uLen);
|
|
||||||
void beginActualText(GfxState *state, GooString *text);
|
|
||||||
void endActualText(GfxState *state);
|
|
||||||
|
|
||||||
virtual GBool beginType3Char(GfxState *state, double x, double y,
|
|
||||||
double dx, double dy,
|
|
||||||
CharCode code, Unicode *u, int uLen);
|
|
||||||
virtual void endType3Char(GfxState *state);
|
|
||||||
virtual void beginTextObject(GfxState *state);
|
|
||||||
virtual void endTextObject(GfxState *state);
|
|
||||||
|
|
||||||
//----- image drawing
|
|
||||||
virtual void drawImageMask(GfxState *state, Object *ref, Stream *str,
|
|
||||||
int width, int height, GBool invert, GBool interpolate,
|
|
||||||
GBool inlineImg);
|
|
||||||
virtual void setSoftMaskFromImageMask(GfxState *state,
|
|
||||||
Object *ref, Stream *str,
|
|
||||||
int width, int height, GBool invert,
|
|
||||||
GBool inlineImg, double *baseMatrix);
|
|
||||||
virtual void unsetSoftMaskFromImageMask(GfxState *state, double *baseMatrix);
|
|
||||||
void drawImageMaskPrescaled(GfxState *state, Object *ref, Stream *str,
|
|
||||||
int width, int height, GBool invert, GBool interpolate,
|
|
||||||
GBool inlineImg);
|
|
||||||
void drawImageMaskRegular(GfxState *state, Object *ref, Stream *str,
|
|
||||||
int width, int height, GBool invert, GBool interpolate,
|
|
||||||
GBool inlineImg);
|
|
||||||
|
|
||||||
virtual void drawImage(GfxState *state, Object *ref, Stream *str,
|
|
||||||
int width, int height, GfxImageColorMap *colorMap,
|
|
||||||
GBool interpolate, int *maskColors, GBool inlineImg);
|
|
||||||
virtual void drawSoftMaskedImage(GfxState *state, Object *ref, Stream *str,
|
|
||||||
int width, int height,
|
|
||||||
GfxImageColorMap *colorMap,
|
|
||||||
GBool interpolate,
|
|
||||||
Stream *maskStr,
|
|
||||||
int maskWidth, int maskHeight,
|
|
||||||
GfxImageColorMap *maskColorMap,
|
|
||||||
GBool maskInterpolate);
|
|
||||||
|
|
||||||
virtual void drawMaskedImage(GfxState *state, Object *ref, Stream *str,
|
|
||||||
int width, int height,
|
|
||||||
GfxImageColorMap *colorMap,
|
|
||||||
GBool interpolate,
|
|
||||||
Stream *maskStr,
|
|
||||||
int maskWidth, int maskHeight,
|
|
||||||
GBool maskInvert, GBool maskInterpolate);
|
|
||||||
|
|
||||||
//----- transparency groups and soft masks
|
|
||||||
virtual void beginTransparencyGroup(GfxState * /*state*/, double * /*bbox*/,
|
|
||||||
GfxColorSpace * /*blendingColorSpace*/,
|
|
||||||
GBool /*isolated*/, GBool /*knockout*/,
|
|
||||||
GBool /*forSoftMask*/);
|
|
||||||
virtual void endTransparencyGroup(GfxState * /*state*/);
|
|
||||||
void popTransparencyGroup();
|
|
||||||
virtual void paintTransparencyGroup(GfxState * /*state*/, double * /*bbox*/);
|
|
||||||
virtual void setSoftMask(GfxState * /*state*/, double * /*bbox*/, GBool /*alpha*/,
|
|
||||||
Function * /*transferFunc*/, GfxColor * /*backdropColor*/);
|
|
||||||
virtual void clearSoftMask(GfxState * /*state*/);
|
|
||||||
|
|
||||||
//----- Type 3 font operators
|
|
||||||
virtual void type3D0(GfxState *state, double wx, double wy);
|
|
||||||
virtual void type3D1(GfxState *state, double wx, double wy,
|
|
||||||
double llx, double lly, double urx, double ury);
|
|
||||||
|
|
||||||
//----- special access
|
|
||||||
|
|
||||||
// Called to indicate that a new PDF document has been loaded.
|
|
||||||
void startDoc(PDFDoc *docA, CairoFontEngine *fontEngine = NULL);
|
|
||||||
|
|
||||||
GBool isReverseVideo() { return gFalse; }
|
|
||||||
|
|
||||||
void setCairo (cairo_t *cr);
|
|
||||||
void setTextPage (TextPage *text);
|
|
||||||
void setPrinting (GBool printing) { this->printing = printing; needFontUpdate = gTrue; }
|
|
||||||
|
|
||||||
void setInType3Char(GBool inType3Char) { this->inType3Char = inType3Char; }
|
|
||||||
void getType3GlyphWidth (double *wx, double *wy) { *wx = t3_glyph_wx; *wy = t3_glyph_wy; }
|
|
||||||
GBool hasType3GlyphBBox () { return t3_glyph_has_bbox; }
|
|
||||||
double *getType3GlyphBBox () { return t3_glyph_bbox; }
|
|
||||||
|
|
||||||
protected:
|
|
||||||
void doPath(cairo_t *cairo, GfxState *state, 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,
|
|
||||||
GBool interpolate);
|
|
||||||
GBool getStreamData (Stream *str, char **buffer, int *length);
|
|
||||||
void setMimeData(Stream *str, Object *ref, cairo_surface_t *image);
|
|
||||||
void fillToStrokePathClip(GfxState *state);
|
|
||||||
void alignStrokeCoords(GfxSubpath *subpath, int i, double *x, double *y);
|
|
||||||
|
|
||||||
GfxRGB fill_color, stroke_color;
|
|
||||||
cairo_pattern_t *fill_pattern, *stroke_pattern;
|
|
||||||
double fill_opacity;
|
|
||||||
double stroke_opacity;
|
|
||||||
GBool stroke_adjust;
|
|
||||||
GBool adjusted_stroke_width;
|
|
||||||
GBool align_stroke_coords;
|
|
||||||
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;
|
|
||||||
} *strokePathClip;
|
|
||||||
|
|
||||||
PDFDoc *doc; // the current document
|
|
||||||
|
|
||||||
static FT_Library ft_lib;
|
|
||||||
static GBool ft_lib_initialized;
|
|
||||||
|
|
||||||
CairoFontEngine *fontEngine;
|
|
||||||
GBool fontEngine_owner;
|
|
||||||
|
|
||||||
cairo_t *cairo;
|
|
||||||
cairo_matrix_t orig_matrix;
|
|
||||||
GBool needFontUpdate; // set when the font needs to be updated
|
|
||||||
GBool printing;
|
|
||||||
GBool use_show_text_glyphs;
|
|
||||||
cairo_surface_t *surface;
|
|
||||||
cairo_glyph_t *glyphs;
|
|
||||||
int glyphCount;
|
|
||||||
cairo_text_cluster_t *clusters;
|
|
||||||
int clusterCount;
|
|
||||||
char *utf8;
|
|
||||||
int utf8Count;
|
|
||||||
int utf8Max;
|
|
||||||
cairo_path_t *textClipPath;
|
|
||||||
GBool inUncoloredPattern; // inside a uncolored pattern (PaintType = 2)
|
|
||||||
GBool inType3Char; // inside a Type 3 CharProc
|
|
||||||
double t3_glyph_wx, t3_glyph_wy;
|
|
||||||
GBool t3_glyph_has_bbox;
|
|
||||||
double t3_glyph_bbox[4];
|
|
||||||
|
|
||||||
GBool prescaleImages;
|
|
||||||
|
|
||||||
TextPage *text; // text for the current page
|
|
||||||
ActualText *actualText;
|
|
||||||
|
|
||||||
cairo_pattern_t *group;
|
|
||||||
cairo_pattern_t *shape;
|
|
||||||
cairo_pattern_t *mask;
|
|
||||||
cairo_matrix_t mask_matrix;
|
|
||||||
cairo_surface_t *cairo_shape_surface;
|
|
||||||
cairo_t *cairo_shape;
|
|
||||||
int knockoutCount;
|
|
||||||
struct ColorSpaceStack {
|
|
||||||
GBool knockout;
|
|
||||||
GfxColorSpace *cs;
|
|
||||||
cairo_matrix_t group_matrix;
|
|
||||||
struct ColorSpaceStack *next;
|
|
||||||
} * groupColorSpaceStack;
|
|
||||||
|
|
||||||
struct MaskStack {
|
|
||||||
cairo_pattern_t *mask;
|
|
||||||
cairo_matrix_t mask_matrix;
|
|
||||||
struct MaskStack *next;
|
|
||||||
} *maskStack;
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
//------------------------------------------------------------------------
|
|
||||||
// CairoImageOutputDev
|
|
||||||
//------------------------------------------------------------------------
|
|
||||||
|
|
||||||
//XXX: this should ideally not inherit from CairoOutputDev but use it instead perhaps
|
|
||||||
class CairoImageOutputDev: public CairoOutputDev {
|
|
||||||
public:
|
|
||||||
|
|
||||||
// Constructor.
|
|
||||||
CairoImageOutputDev();
|
|
||||||
|
|
||||||
// Destructor.
|
|
||||||
virtual ~CairoImageOutputDev();
|
|
||||||
|
|
||||||
//----- get info about output device
|
|
||||||
|
|
||||||
// Does this device use upside-down coordinates?
|
|
||||||
// (Upside-down means (0,0) is the top left corner of the page.)
|
|
||||||
virtual GBool upsideDown() { return gTrue; }
|
|
||||||
|
|
||||||
// Does this device use drawChar() or drawString()?
|
|
||||||
virtual GBool useDrawChar() { return gFalse; }
|
|
||||||
|
|
||||||
// Does this device use tilingPatternFill()? If this returns false,
|
|
||||||
// tiling pattern fills will be reduced to a series of other drawing
|
|
||||||
// operations.
|
|
||||||
virtual GBool useTilingPatternFill() { return gTrue; }
|
|
||||||
|
|
||||||
// Does this device use functionShadedFill(), axialShadedFill(), and
|
|
||||||
// radialShadedFill()? If this returns false, these shaded fills
|
|
||||||
// will be reduced to a series of other drawing operations.
|
|
||||||
#if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1, 11, 2)
|
|
||||||
virtual GBool useShadedFills(int type) { return type <= 7; }
|
|
||||||
#else
|
|
||||||
virtual GBool useShadedFills(int type) { return type < 4; }
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// Does this device use FillColorStop()?
|
|
||||||
virtual GBool useFillColorStop() { return gFalse; }
|
|
||||||
|
|
||||||
// Does this device use beginType3Char/endType3Char? Otherwise,
|
|
||||||
// text in Type 3 fonts will be drawn with drawChar/drawString.
|
|
||||||
virtual GBool interpretType3Chars() { return gFalse; }
|
|
||||||
|
|
||||||
// Does this device need non-text content?
|
|
||||||
virtual GBool needNonText() { return gTrue; }
|
|
||||||
|
|
||||||
//----- save/restore graphics state
|
|
||||||
virtual void saveState(GfxState *state) { }
|
|
||||||
virtual void restoreState(GfxState *state) { }
|
|
||||||
|
|
||||||
//----- update graphics state
|
|
||||||
virtual void updateAll(GfxState *state) { }
|
|
||||||
virtual void setDefaultCTM(double *ctm) { }
|
|
||||||
virtual void updateCTM(GfxState *state, double m11, double m12,
|
|
||||||
double m21, double m22, double m31, double m32) { }
|
|
||||||
virtual void updateLineDash(GfxState *state) { }
|
|
||||||
virtual void updateFlatness(GfxState *state) { }
|
|
||||||
virtual void updateLineJoin(GfxState *state) { }
|
|
||||||
virtual void updateLineCap(GfxState *state) { }
|
|
||||||
virtual void updateMiterLimit(GfxState *state) { }
|
|
||||||
virtual void updateLineWidth(GfxState *state) { }
|
|
||||||
virtual void updateFillColor(GfxState *state) { }
|
|
||||||
virtual void updateStrokeColor(GfxState *state) { }
|
|
||||||
virtual void updateFillOpacity(GfxState *state) { }
|
|
||||||
virtual void updateStrokeOpacity(GfxState *state) { }
|
|
||||||
virtual void updateBlendMode(GfxState *state) { }
|
|
||||||
|
|
||||||
//----- update text state
|
|
||||||
virtual void updateFont(GfxState *state) { }
|
|
||||||
|
|
||||||
//----- path painting
|
|
||||||
virtual void stroke(GfxState *state) { }
|
|
||||||
virtual void fill(GfxState *state) { }
|
|
||||||
virtual void eoFill(GfxState *state) { }
|
|
||||||
virtual void clipToStrokePath(GfxState *state) { }
|
|
||||||
virtual GBool tilingPatternFill(GfxState *state, Gfx *gfx, Catalog *cat, Object *str,
|
|
||||||
double *pmat, int paintType, int tilingType, Dict *resDict,
|
|
||||||
double *mat, double *bbox,
|
|
||||||
int x0, int y0, int x1, int y1,
|
|
||||||
double xStep, double yStep) { return gTrue; }
|
|
||||||
virtual GBool axialShadedFill(GfxState *state,
|
|
||||||
GfxAxialShading *shading,
|
|
||||||
double tMin, double tMax) { return gTrue; }
|
|
||||||
virtual GBool radialShadedFill(GfxState *state,
|
|
||||||
GfxRadialShading *shading,
|
|
||||||
double sMin, double sMax) { return gTrue; }
|
|
||||||
|
|
||||||
//----- path clipping
|
|
||||||
virtual void clip(GfxState *state) { }
|
|
||||||
virtual void eoClip(GfxState *state) { }
|
|
||||||
|
|
||||||
//----- image drawing
|
|
||||||
virtual void drawImageMask(GfxState *state, Object *ref, Stream *str,
|
|
||||||
int width, int height, GBool invert,
|
|
||||||
GBool interpolate, GBool inlineImg);
|
|
||||||
virtual void drawImage(GfxState *state, Object *ref, Stream *str,
|
|
||||||
int width, int height, GfxImageColorMap *colorMap,
|
|
||||||
GBool interpolate, int *maskColors, GBool inlineImg);
|
|
||||||
virtual void drawSoftMaskedImage(GfxState *state, Object *ref, Stream *str,
|
|
||||||
int width, int height,
|
|
||||||
GfxImageColorMap *colorMap,
|
|
||||||
GBool interpolate,
|
|
||||||
Stream *maskStr,
|
|
||||||
int maskWidth, int maskHeight,
|
|
||||||
GfxImageColorMap *maskColorMap,
|
|
||||||
GBool maskInterpolate);
|
|
||||||
virtual void drawMaskedImage(GfxState *state, Object *ref, Stream *str,
|
|
||||||
int width, int height,
|
|
||||||
GfxImageColorMap *colorMap,
|
|
||||||
GBool interpolate,
|
|
||||||
Stream *maskStr,
|
|
||||||
int maskWidth, int maskHeight,
|
|
||||||
GBool maskInvert, GBool maskInterpolate);
|
|
||||||
virtual void setSoftMaskFromImageMask(GfxState *state, Object *ref, Stream *str,
|
|
||||||
int width, int height, GBool invert,
|
|
||||||
GBool inlineImg, double *baseMatrix);
|
|
||||||
virtual void unsetSoftMaskFromImageMask(GfxState *state, double *baseMatrix) {}
|
|
||||||
|
|
||||||
|
|
||||||
//----- transparency groups and soft masks
|
|
||||||
virtual void beginTransparencyGroup(GfxState * /*state*/, double * /*bbox*/,
|
|
||||||
GfxColorSpace * /*blendingColorSpace*/,
|
|
||||||
GBool /*isolated*/, GBool /*knockout*/,
|
|
||||||
GBool /*forSoftMask*/) {}
|
|
||||||
virtual void endTransparencyGroup(GfxState * /*state*/) {}
|
|
||||||
virtual void paintTransparencyGroup(GfxState * /*state*/, double * /*bbox*/) {}
|
|
||||||
virtual void setSoftMask(GfxState * /*state*/, double * /*bbox*/, GBool /*alpha*/,
|
|
||||||
Function * /*transferFunc*/, GfxColor * /*backdropColor*/) {}
|
|
||||||
virtual void clearSoftMask(GfxState * /*state*/) {}
|
|
||||||
|
|
||||||
//----- Image list
|
|
||||||
// By default images are not rendred
|
|
||||||
void setImageDrawDecideCbk(GBool (*cbk)(int img_id, void *data),
|
|
||||||
void *data) { imgDrawCbk = cbk; imgDrawCbkData = data; }
|
|
||||||
// Iterate through list of images.
|
|
||||||
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;
|
|
||||||
GBool (*imgDrawCbk)(int img_id, void *data);
|
|
||||||
void *imgDrawCbkData;
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
|
@ -1,377 +0,0 @@
|
|||||||
/* -*- Mode: c; c-basic-offset: 4; tab-width: 8; indent-tabs-mode: t; -*- */
|
|
||||||
/*
|
|
||||||
* Copyright © 2009 Mozilla Corporation
|
|
||||||
*
|
|
||||||
* Permission to use, copy, modify, distribute, and sell this software and its
|
|
||||||
* documentation for any purpose is hereby granted without fee, provided that
|
|
||||||
* the above copyright notice appear in all copies and that both that
|
|
||||||
* copyright notice and this permission notice appear in supporting
|
|
||||||
* documentation, and that the name of Mozilla Corporation not be used in
|
|
||||||
* advertising or publicity pertaining to distribution of the software without
|
|
||||||
* specific, written prior permission. Mozilla Corporation makes no
|
|
||||||
* representations about the suitability of this software for any purpose. It
|
|
||||||
* is provided "as is" without express or implied warranty.
|
|
||||||
*
|
|
||||||
* MOZILLA CORPORATION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|
||||||
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT
|
|
||||||
* SHALL MOZILLA CORPORATION BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
|
||||||
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
|
||||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
||||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
|
||||||
* OF THIS SOFTWARE.
|
|
||||||
*
|
|
||||||
* Author: Jeff Muizelaar, Mozilla Corp.
|
|
||||||
*/
|
|
||||||
|
|
||||||
//========================================================================
|
|
||||||
//
|
|
||||||
// Modified under the Poppler project - http://poppler.freedesktop.org
|
|
||||||
//
|
|
||||||
// All changes made under the Poppler project to this file are licensed
|
|
||||||
// under GPL version 2 or later
|
|
||||||
//
|
|
||||||
// Copyright (C) 2012 Hib Eris <hib@hiberis.nl>
|
|
||||||
// Copyright (C) 2012 Adrian Johnson <ajohnson@redneon.com>
|
|
||||||
//
|
|
||||||
// To see a description of the changes please see the Changelog file that
|
|
||||||
// came with your tarball or type make ChangeLog if you are building from git
|
|
||||||
//
|
|
||||||
//========================================================================
|
|
||||||
|
|
||||||
|
|
||||||
/* This implements a box filter that supports non-integer box sizes */
|
|
||||||
|
|
||||||
#ifdef HAVE_CONFIG_H
|
|
||||||
#include <config.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <stdint.h>
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <assert.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <math.h>
|
|
||||||
#include "goo/gmem.h"
|
|
||||||
#include "CairoRescaleBox.h"
|
|
||||||
|
|
||||||
|
|
||||||
/* we work in fixed point where 1. == 1 << 24 */
|
|
||||||
#define FIXED_SHIFT 24
|
|
||||||
|
|
||||||
|
|
||||||
static void downsample_row_box_filter (
|
|
||||||
int start, int width,
|
|
||||||
uint32_t *src, uint32_t *dest,
|
|
||||||
int coverage[], int pixel_coverage)
|
|
||||||
{
|
|
||||||
/* we need an array of the pixel contribution of each destination pixel on the boundaries.
|
|
||||||
* we invert the value to get the value on the other size of the box */
|
|
||||||
/*
|
|
||||||
|
|
||||||
value = a * contribution * 1/box_size
|
|
||||||
value += a * 1/box_size
|
|
||||||
value += a * 1/box_size
|
|
||||||
value += a * 1/box_size
|
|
||||||
value += a * (1 - contribution) * 1/box_size
|
|
||||||
a * (1/box_size - contribution * 1/box_size)
|
|
||||||
|
|
||||||
box size is constant
|
|
||||||
|
|
||||||
|
|
||||||
value = a * contribtion_a * 1/box_size + b * contribution_b * 1/box_size
|
|
||||||
contribution_b = (1 - contribution_a)
|
|
||||||
= (1 - contribution_a_next)
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* box size = ceil(src_width/dest_width) */
|
|
||||||
int x = 0;
|
|
||||||
|
|
||||||
/* skip to start */
|
|
||||||
/* XXX: it might be possible to do this directly instead of iteratively, however
|
|
||||||
* the iterative solution is simple */
|
|
||||||
while (x < start)
|
|
||||||
{
|
|
||||||
int box = 1 << FIXED_SHIFT;
|
|
||||||
int start_coverage = coverage[x];
|
|
||||||
box -= start_coverage;
|
|
||||||
src++;
|
|
||||||
while (box >= pixel_coverage)
|
|
||||||
{
|
|
||||||
src++;
|
|
||||||
box -= pixel_coverage;
|
|
||||||
}
|
|
||||||
x++;
|
|
||||||
}
|
|
||||||
|
|
||||||
while (x < start + width)
|
|
||||||
{
|
|
||||||
uint32_t a = 0;
|
|
||||||
uint32_t r = 0;
|
|
||||||
uint32_t g = 0;
|
|
||||||
uint32_t b = 0;
|
|
||||||
int box = 1 << FIXED_SHIFT;
|
|
||||||
int start_coverage = coverage[x];
|
|
||||||
|
|
||||||
a = ((*src >> 24) & 0xff) * start_coverage;
|
|
||||||
r = ((*src >> 16) & 0xff) * start_coverage;
|
|
||||||
g = ((*src >> 8) & 0xff) * start_coverage;
|
|
||||||
b = ((*src >> 0) & 0xff) * start_coverage;
|
|
||||||
src++;
|
|
||||||
x++;
|
|
||||||
box -= start_coverage;
|
|
||||||
|
|
||||||
while (box >= pixel_coverage)
|
|
||||||
{
|
|
||||||
a += ((*src >> 24) & 0xff) * pixel_coverage;
|
|
||||||
r += ((*src >> 16) & 0xff) * pixel_coverage;
|
|
||||||
g += ((*src >> 8) & 0xff) * pixel_coverage;
|
|
||||||
b += ((*src >> 0) & 0xff) * pixel_coverage;
|
|
||||||
src++;
|
|
||||||
|
|
||||||
box -= pixel_coverage;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* multiply by whatever is leftover
|
|
||||||
* this ensures that we don't bias down.
|
|
||||||
* i.e. start_coverage + n*pixel_coverage + box == 1 << 24 */
|
|
||||||
if (box > 0)
|
|
||||||
{
|
|
||||||
a += ((*src >> 24) & 0xff) * box;
|
|
||||||
r += ((*src >> 16) & 0xff) * box;
|
|
||||||
g += ((*src >> 8) & 0xff) * box;
|
|
||||||
b += ((*src >> 0) & 0xff) * box;
|
|
||||||
}
|
|
||||||
|
|
||||||
a >>= FIXED_SHIFT;
|
|
||||||
r >>= FIXED_SHIFT;
|
|
||||||
g >>= FIXED_SHIFT;
|
|
||||||
b >>= FIXED_SHIFT;
|
|
||||||
|
|
||||||
*dest = (a << 24) | (r << 16) | (g << 8) | b;
|
|
||||||
dest++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static void downsample_columns_box_filter (
|
|
||||||
int n,
|
|
||||||
int start_coverage,
|
|
||||||
int pixel_coverage,
|
|
||||||
uint32_t *src, uint32_t *dest)
|
|
||||||
{
|
|
||||||
int stride = n;
|
|
||||||
while (n--) {
|
|
||||||
uint32_t a = 0;
|
|
||||||
uint32_t r = 0;
|
|
||||||
uint32_t g = 0;
|
|
||||||
uint32_t b = 0;
|
|
||||||
uint32_t *column_src = src;
|
|
||||||
int box = 1 << FIXED_SHIFT;
|
|
||||||
|
|
||||||
a = ((*column_src >> 24) & 0xff) * start_coverage;
|
|
||||||
r = ((*column_src >> 16) & 0xff) * start_coverage;
|
|
||||||
g = ((*column_src >> 8) & 0xff) * start_coverage;
|
|
||||||
b = ((*column_src >> 0) & 0xff) * start_coverage;
|
|
||||||
column_src += stride;
|
|
||||||
box -= start_coverage;
|
|
||||||
|
|
||||||
while (box >= pixel_coverage)
|
|
||||||
{
|
|
||||||
a += ((*column_src >> 24) & 0xff) * pixel_coverage;
|
|
||||||
r += ((*column_src >> 16) & 0xff) * pixel_coverage;
|
|
||||||
g += ((*column_src >> 8) & 0xff) * pixel_coverage;
|
|
||||||
b += ((*column_src >> 0) & 0xff) * pixel_coverage;
|
|
||||||
column_src += stride;
|
|
||||||
box -= pixel_coverage;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (box > 0) {
|
|
||||||
a += ((*column_src >> 24) & 0xff) * box;
|
|
||||||
r += ((*column_src >> 16) & 0xff) * box;
|
|
||||||
g += ((*column_src >> 8) & 0xff) * box;
|
|
||||||
b += ((*column_src >> 0) & 0xff) * box;
|
|
||||||
}
|
|
||||||
|
|
||||||
a >>= FIXED_SHIFT;
|
|
||||||
r >>= FIXED_SHIFT;
|
|
||||||
g >>= FIXED_SHIFT;
|
|
||||||
b >>= FIXED_SHIFT;
|
|
||||||
|
|
||||||
*dest = (a << 24) | (r << 16) | (g << 8) | b;
|
|
||||||
dest++;
|
|
||||||
src++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static int compute_coverage (int coverage[], int src_length, int dest_length)
|
|
||||||
{
|
|
||||||
int i;
|
|
||||||
/* num = src_length/dest_length
|
|
||||||
total = sum(pixel) / num
|
|
||||||
|
|
||||||
pixel * 1/num == pixel * dest_length / src_length
|
|
||||||
*/
|
|
||||||
/* the average contribution of each source pixel */
|
|
||||||
int ratio = ((1 << 24)*(long long int)dest_length)/src_length;
|
|
||||||
/* because ((1 << 24)*(long long int)dest_length) won't always be divisible by src_length
|
|
||||||
* we'll need someplace to put the other bits.
|
|
||||||
*
|
|
||||||
* We want to ensure a + n*ratio < 1<<24
|
|
||||||
*
|
|
||||||
* 1<<24
|
|
||||||
* */
|
|
||||||
|
|
||||||
double scale = (double)src_length/dest_length;
|
|
||||||
|
|
||||||
/* for each destination pixel compute the coverage of the left most pixel included in the box */
|
|
||||||
/* I have a proof of this, which this margin is too narrow to contain */
|
|
||||||
for (i=0; i<dest_length; i++)
|
|
||||||
{
|
|
||||||
float left_side = i*scale;
|
|
||||||
float right_side = (i+1)*scale;
|
|
||||||
float right_fract = right_side - floor (right_side);
|
|
||||||
float left_fract = ceil (left_side) - left_side;
|
|
||||||
int overage;
|
|
||||||
/* find out how many source pixels will be used to fill the box */
|
|
||||||
int count = floor (right_side) - ceil (left_side);
|
|
||||||
/* what's the maximum value this expression can become?
|
|
||||||
floor((i+1)*scale) - ceil(i*scale)
|
|
||||||
|
|
||||||
(i+1)*scale - i*scale == scale
|
|
||||||
|
|
||||||
since floor((i+1)*scale) <= (i+1)*scale
|
|
||||||
and ceil(i*scale) >= i*scale
|
|
||||||
|
|
||||||
floor((i+1)*scale) - ceil(i*scale) <= scale
|
|
||||||
|
|
||||||
further since: floor((i+1)*scale) - ceil(i*scale) is an integer
|
|
||||||
|
|
||||||
therefore:
|
|
||||||
floor((i+1)*scale) - ceil(i*scale) <= floor(scale)
|
|
||||||
*/
|
|
||||||
|
|
||||||
if (left_fract == 0.)
|
|
||||||
count--;
|
|
||||||
|
|
||||||
/* compute how much the right-most pixel contributes */
|
|
||||||
overage = ratio*(right_fract);
|
|
||||||
|
|
||||||
/* the remainder is the the amount that the left-most pixel
|
|
||||||
* contributes */
|
|
||||||
coverage[i] = (1<<24) - (count * ratio + overage);
|
|
||||||
}
|
|
||||||
|
|
||||||
return ratio;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
GBool CairoRescaleBox::downScaleImage(unsigned orig_width, unsigned orig_height,
|
|
||||||
signed scaled_width, signed scaled_height,
|
|
||||||
unsigned short int start_column, unsigned short int start_row,
|
|
||||||
unsigned short int width, unsigned short int height,
|
|
||||||
cairo_surface_t *dest_surface) {
|
|
||||||
int pixel_coverage_x, pixel_coverage_y;
|
|
||||||
int dest_y;
|
|
||||||
int src_y = 0;
|
|
||||||
uint32_t *scanline;
|
|
||||||
int *x_coverage = NULL;
|
|
||||||
int *y_coverage = NULL;
|
|
||||||
uint32_t *temp_buf = NULL;
|
|
||||||
GBool retval = gFalse;
|
|
||||||
unsigned int *dest;
|
|
||||||
int dst_stride;
|
|
||||||
|
|
||||||
dest = (unsigned int *)cairo_image_surface_get_data (dest_surface);
|
|
||||||
dst_stride = cairo_image_surface_get_stride (dest_surface);
|
|
||||||
|
|
||||||
scanline = (uint32_t*)gmallocn3 (orig_width, 1, sizeof(int));
|
|
||||||
|
|
||||||
x_coverage = (int *)gmallocn3 (orig_width, 1, sizeof(int));
|
|
||||||
y_coverage = (int *)gmallocn3 (orig_height, 1, sizeof(int));
|
|
||||||
|
|
||||||
/* we need to allocate enough room for ceil(src_height/dest_height)+1
|
|
||||||
Example:
|
|
||||||
src_height = 140
|
|
||||||
dest_height = 50
|
|
||||||
src_height/dest_height = 2.8
|
|
||||||
|
|
||||||
|-------------| 2.8 pixels
|
|
||||||
|----|----|----|----| 4 pixels
|
|
||||||
need to sample 3 pixels
|
|
||||||
|
|
||||||
|-------------| 2.8 pixels
|
|
||||||
|----|----|----|----| 4 pixels
|
|
||||||
need to sample 4 pixels
|
|
||||||
*/
|
|
||||||
|
|
||||||
temp_buf = (uint32_t *)gmallocn3 ((orig_height + scaled_height-1)/scaled_height+1, scaled_width, sizeof(uint32_t));
|
|
||||||
|
|
||||||
if (!x_coverage || !y_coverage || !scanline || !temp_buf)
|
|
||||||
goto cleanup;
|
|
||||||
|
|
||||||
pixel_coverage_x = compute_coverage (x_coverage, orig_width, scaled_width);
|
|
||||||
pixel_coverage_y = compute_coverage (y_coverage, orig_height, scaled_height);
|
|
||||||
|
|
||||||
assert (width + start_column <= scaled_width);
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* skip the rows at the beginning */
|
|
||||||
for (dest_y = 0; dest_y < start_row; dest_y++)
|
|
||||||
{
|
|
||||||
int box = 1 << FIXED_SHIFT;
|
|
||||||
int start_coverage_y = y_coverage[dest_y];
|
|
||||||
box -= start_coverage_y;
|
|
||||||
src_y++;
|
|
||||||
while (box >= pixel_coverage_y)
|
|
||||||
{
|
|
||||||
box -= pixel_coverage_y;
|
|
||||||
src_y++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
for (; dest_y < start_row + height; dest_y++)
|
|
||||||
{
|
|
||||||
int columns = 0;
|
|
||||||
int box = 1 << FIXED_SHIFT;
|
|
||||||
int start_coverage_y = y_coverage[dest_y];
|
|
||||||
|
|
||||||
getRow(src_y, scanline);
|
|
||||||
downsample_row_box_filter (start_column, width, scanline, temp_buf + width * columns, x_coverage, pixel_coverage_x);
|
|
||||||
columns++;
|
|
||||||
src_y++;
|
|
||||||
box -= start_coverage_y;
|
|
||||||
|
|
||||||
while (box >= pixel_coverage_y)
|
|
||||||
{
|
|
||||||
getRow(src_y, scanline);
|
|
||||||
downsample_row_box_filter (start_column, width, scanline, temp_buf + width * columns, x_coverage, pixel_coverage_x);
|
|
||||||
columns++;
|
|
||||||
src_y++;
|
|
||||||
box -= pixel_coverage_y;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* downsample any leftovers */
|
|
||||||
if (box > 0)
|
|
||||||
{
|
|
||||||
getRow(src_y, scanline);
|
|
||||||
downsample_row_box_filter (start_column, width, scanline, temp_buf + width * columns, x_coverage, pixel_coverage_x);
|
|
||||||
columns++;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* now scale the rows we just downsampled in the y direction */
|
|
||||||
downsample_columns_box_filter (width, start_coverage_y, pixel_coverage_y, temp_buf, dest);
|
|
||||||
dest += dst_stride / 4;
|
|
||||||
|
|
||||||
// assert(width*columns <= ((orig_height + scaled_height-1)/scaled_height+1) * width);
|
|
||||||
}
|
|
||||||
// assert (src_y<=orig_height);
|
|
||||||
|
|
||||||
retval = gTrue;
|
|
||||||
|
|
||||||
cleanup:
|
|
||||||
free (x_coverage);
|
|
||||||
free (y_coverage);
|
|
||||||
free (temp_buf);
|
|
||||||
free (scanline);
|
|
||||||
|
|
||||||
return retval;
|
|
||||||
}
|
|
@ -1,61 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright © 2009 Mozilla Corporation
|
|
||||||
*
|
|
||||||
* Permission to use, copy, modify, distribute, and sell this software and its
|
|
||||||
* documentation for any purpose is hereby granted without fee, provided that
|
|
||||||
* the above copyright notice appear in all copies and that both that
|
|
||||||
* copyright notice and this permission notice appear in supporting
|
|
||||||
* documentation, and that the name of Mozilla Corporation not be used in
|
|
||||||
* advertising or publicity pertaining to distribution of the software without
|
|
||||||
* specific, written prior permission. Mozilla Corporation makes no
|
|
||||||
* representations about the suitability of this software for any purpose. It
|
|
||||||
* is provided "as is" without express or implied warranty.
|
|
||||||
*
|
|
||||||
* MOZILLA CORPORATION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|
||||||
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT
|
|
||||||
* SHALL MOZILLA CORPORATION BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
|
||||||
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
|
||||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
||||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
|
||||||
* OF THIS SOFTWARE.
|
|
||||||
*
|
|
||||||
* Author: Jeff Muizelaar, Mozilla Corp.
|
|
||||||
*/
|
|
||||||
|
|
||||||
//========================================================================
|
|
||||||
//
|
|
||||||
// Modified under the Poppler project - http://poppler.freedesktop.org
|
|
||||||
//
|
|
||||||
// All changes made under the Poppler project to this file are licensed
|
|
||||||
// under GPL version 2 or later
|
|
||||||
//
|
|
||||||
// Copyright (C) 2012 Adrian Johnson <ajohnson@redneon.com>
|
|
||||||
//
|
|
||||||
// To see a description of the changes please see the Changelog file that
|
|
||||||
// came with your tarball or type make ChangeLog if you are building from git
|
|
||||||
//
|
|
||||||
//========================================================================
|
|
||||||
|
|
||||||
#ifndef CAIRO_RESCALE_BOX_H
|
|
||||||
#define CAIRO_RESCALE_BOX_H
|
|
||||||
|
|
||||||
#include "goo/gtypes.h"
|
|
||||||
#include <cairo.h>
|
|
||||||
|
|
||||||
class CairoRescaleBox {
|
|
||||||
public:
|
|
||||||
|
|
||||||
CairoRescaleBox() {};
|
|
||||||
virtual ~CairoRescaleBox() {};
|
|
||||||
|
|
||||||
virtual GBool downScaleImage(unsigned orig_width, unsigned orig_height,
|
|
||||||
signed scaled_width, signed scaled_height,
|
|
||||||
unsigned short int start_column, unsigned short int start_row,
|
|
||||||
unsigned short int width, unsigned short int height,
|
|
||||||
cairo_surface_t *dest_surface);
|
|
||||||
|
|
||||||
virtual void getRow(int row_num, uint32_t *row_data) = 0;
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif /* CAIRO_RESCALE_BOX_H */
|
|
@ -12,7 +12,7 @@
|
|||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
#define POPPLER_OLDER_THAN_0_23_0 @POPPLER_OLDER_THAN_0_23_0@
|
#define POPPLER_OLDER_THAN_0_23_0 @POPPLER_OLDER_THAN_0_23_0@
|
||||||
#define HAVE_CAIRO @HAVE_CAIRO@
|
#define ENABLE_SVG @ENABLE_SVG@
|
||||||
|
|
||||||
namespace pdf2htmlEX {
|
namespace pdf2htmlEX {
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user