mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 07:23:34 +08:00
142 lines
5.4 KiB
C++
142 lines
5.4 KiB
C++
/*
|
|
* (c) Copyright Ascensio System SIA 2010-2016
|
|
*
|
|
* This program is a free software product. You can redistribute it and/or
|
|
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
|
* version 3 as published by the Free Software Foundation. In accordance with
|
|
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
|
|
* that Ascensio System SIA expressly excludes the warranty of non-infringement
|
|
* of any third-party rights.
|
|
*
|
|
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
|
|
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
|
|
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
|
|
*
|
|
* You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia,
|
|
* EU, LV-1021.
|
|
*
|
|
* The interactive user interfaces in modified source and object code versions
|
|
* of the Program must display Appropriate Legal Notices, as required under
|
|
* Section 5 of the GNU AGPL version 3.
|
|
*
|
|
* Pursuant to Section 7(b) of the License you must retain the original Product
|
|
* logo when distributing the program. Pursuant to Section 7(e) we decline to
|
|
* grant you any rights under trademark law for use of our trademarks.
|
|
*
|
|
* All the Product's GUI elements, including illustrations and icon sets, as
|
|
* well as technical writing content are licensed under the terms of the
|
|
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
|
|
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
|
|
*
|
|
*/
|
|
#include <stddef.h>
|
|
#include "Object.h"
|
|
#include "Stream.h"
|
|
#include "GState.h"
|
|
#include "OutputDevice.h"
|
|
|
|
namespace PdfReader
|
|
{
|
|
//-------------------------------------------------------------------------------------------------------------------------------
|
|
// OutputDev
|
|
//-------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
void OutputDev::SetDefaultCTM(double *pCTM)
|
|
{
|
|
for (int nIndex = 0; nIndex < 6; ++nIndex)
|
|
{
|
|
m_arrDefaultCTM[nIndex] = pCTM[nIndex];
|
|
}
|
|
|
|
double dDet = 1 / (m_arrDefaultCTM[0] * m_arrDefaultCTM[3] - m_arrDefaultCTM[1] * m_arrDefaultCTM[2]);
|
|
|
|
m_arrDefaultInvCTM[0] = m_arrDefaultCTM[3] * dDet;
|
|
m_arrDefaultInvCTM[1] = -m_arrDefaultCTM[1] * dDet;
|
|
m_arrDefaultInvCTM[2] = -m_arrDefaultCTM[2] * dDet;
|
|
m_arrDefaultInvCTM[3] = m_arrDefaultCTM[0] * dDet;
|
|
m_arrDefaultInvCTM[4] = (m_arrDefaultCTM[2] * m_arrDefaultCTM[5] - m_arrDefaultCTM[3] * m_arrDefaultCTM[4]) * dDet;
|
|
m_arrDefaultInvCTM[5] = (m_arrDefaultCTM[1] * m_arrDefaultCTM[4] - m_arrDefaultCTM[0] * m_arrDefaultCTM[5]) * dDet;
|
|
}
|
|
|
|
void OutputDev::ConvertDeviceToUser(double dDevX, double dDevY, double *pdUserX, double *pdUserY)
|
|
{
|
|
*pdUserX = m_arrDefaultInvCTM[0] * dDevX + m_arrDefaultInvCTM[2] * dDevY + m_arrDefaultInvCTM[4];
|
|
*pdUserY = m_arrDefaultInvCTM[1] * dDevX + m_arrDefaultInvCTM[3] * dDevY + m_arrDefaultInvCTM[5];
|
|
}
|
|
|
|
void OutputDev::ConvertUserToDevice(double dUserX, double dUserY, int *pnDevX, int *pnDevY)
|
|
{
|
|
*pnDevX = (int)(m_arrDefaultCTM[0] * dUserX + m_arrDefaultCTM[2] * dUserY + m_arrDefaultCTM[4] + 0.5);
|
|
*pnDevY = (int)(m_arrDefaultCTM[1] * dUserX + m_arrDefaultCTM[3] * dUserY + m_arrDefaultCTM[5] + 0.5);
|
|
}
|
|
|
|
void OutputDev::UpdateAll(GrState *pGState)
|
|
{
|
|
UpdateLineDash(pGState);
|
|
UpdateFlatness(pGState);
|
|
UpdateLineJoin(pGState);
|
|
UpdateLineCap(pGState);
|
|
UpdateMiterLimit(pGState);
|
|
UpdateLineWidth(pGState);
|
|
UpdateStrokeAdjust(pGState);
|
|
UpdateFillColorSpace(pGState);
|
|
UpdateFillColor(pGState);
|
|
UpdateStrokeColorSpace(pGState);
|
|
UpdateStrokeColor(pGState);
|
|
UpdateBlendMode(pGState);
|
|
UpdateFillOpacity(pGState);
|
|
UpdateStrokeOpacity(pGState);
|
|
UpdateFillOverprint(pGState);
|
|
UpdateStrokeOverprint(pGState);
|
|
UpdateTransfer(pGState);
|
|
UpdateFont(pGState);
|
|
}
|
|
|
|
bool OutputDev::BeginType3Char(GrState *pGState, double dX, double dY, double dDx, double dDy, CharCode nCode, Unicode *pnUnicode, int nUnLen)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void OutputDev::DrawImageMask(GrState *pGState, Object *pRef, Stream *pStream, int nWidth, int nHeight, bool bInvert, bool bInlineImage)
|
|
{
|
|
if (bInlineImage)
|
|
{
|
|
pStream->Reset();
|
|
int nSize = nHeight * ((nWidth + 7) / 8);
|
|
for (int nIndex = 0; nIndex < nSize; ++nIndex)
|
|
pStream->GetChar();
|
|
pStream->Close();
|
|
}
|
|
}
|
|
|
|
void OutputDev::DrawImage(GrState *pGState, Object *pRef, Stream *pStream, int nWidth, int nHeight, GrImageColorMap *pColorMap, int *pnMaskColors, bool bInlineImage)
|
|
{
|
|
if (bInlineImage)
|
|
{
|
|
pStream->Reset();
|
|
int nSize = nHeight * ((nWidth * pColorMap->GetComponentsCount() * pColorMap->GetBitsPerComponent() + 7) / 8);
|
|
for (int nIndex = 0; nIndex < nSize; ++nIndex)
|
|
pStream->GetChar();
|
|
pStream->Close();
|
|
}
|
|
}
|
|
|
|
void OutputDev::DrawMaskedImage(GrState *pGState, Object *pRef, Stream *pStream, int nWidth, int nHeight, GrImageColorMap *pColorMap, Stream *pMaskStream, int nMaskWidth, int nMaskHeight, bool bMaskInvert)
|
|
{
|
|
DrawImage(pGState, pRef, pStream, nWidth, nHeight, pColorMap, NULL, false);
|
|
}
|
|
|
|
void OutputDev::DrawSoftMaskedImage(GrState *pGState, Object *pRef, Stream *pStream, int nWidth, int nHeight, GrImageColorMap *pColorMap, Stream *pMaskStream, int nMaskWidth, int nMaskHeight, GrImageColorMap *pMaskColorMap)
|
|
{
|
|
DrawImage(pGState, pRef, pStream, nWidth, nHeight, pColorMap, NULL, false);
|
|
}
|
|
|
|
#if OPI_SUPPORT
|
|
void OutputDev::OpiBegin(GrState *pGState, Dict *pOpiDict)
|
|
{
|
|
}
|
|
void OutputDev::OpiEnd (GrState *pGState, Dict *pOpiDict)
|
|
{
|
|
}
|
|
#endif
|
|
} |