1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-10-06 03:51:40 +00:00
pdf2htmlEX/src/BackgroundRenderer.cc

24 lines
479 B
C++
Raw Normal View History

2012-08-06 06:21:37 +00:00
/*
* BackgroundRenderer.cc
*
* Copyright (C) 2012 by Lu Wang coolwanglu<at>gmail.com
*/
2012-08-20 21:48:21 +00:00
#include <algorithm>
2012-08-06 06:21:37 +00:00
#include "GfxFont.h"
#include "BackgroundRenderer.h"
2012-08-20 21:48:21 +00:00
#include "util.h"
using std::all_of;
2012-08-06 06:21:37 +00:00
void BackgroundRenderer::drawChar(GfxState *state, double x, double y,
double dx, double dy,
double originX, double originY,
CharCode code, int nBytes, Unicode *u, int uLen)
{
SplashOutputDev::drawChar(state,x,y,dx,dy,originX,originY,code, nBytes, u, uLen);
2012-08-06 06:21:37 +00:00
}