Files
core/HtmlRenderer/test/main.cpp
2018-04-18 18:39:00 +03:00

203 lines
6.6 KiB
C++

/*
* (c) Copyright Ascensio System SIA 2010-2018
*
* 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 <QCoreApplication>
#include "../../DesktopEditor/graphics/pro/Fonts.h"
#include "../../PdfReader/PdfReader.h"
#include "../../DjVuFile/DjVu.h"
#include "../../XpsFile/XpsFile.h"
#include "../../PdfWriter/PdfRenderer.h"
#include "../include/HTMLRenderer3.h"
#include "../../DesktopEditor/raster/BgraFrame.h"
#include "../include/ASCSVGWriter.h"
//#define RASTER_TEST
//#define METAFILE_TEST
//#define ONLINE_WORD_TO_PDF
//#define TO_PDF
#define TO_HTML_RENDERER
//#define ONLY_TEXT
int main(int argc, char *argv[])
{
#ifdef RASTER_TEST
CBgraFrame oFrame;
oFrame.OpenFile(L"D:\\22.png");
oFrame.SaveFile(L"D:\\oleg.png", 4);
return 0;
#endif
NSFonts::IApplicationFonts* pFonts = NSFonts::NSApplication::Create();
pFonts->Initialize();
#ifdef METAFILE_TEST
NSHtmlRenderer::CASCSVGWriter oWriterSVG;
NSFonts::IFontManager* pManager = pFonts->GenerateFontManager();
oWriterSVG.SetFontManager(pManager);
MetaFile::IMetaFile* pMetafile = MetaFile::Create(pFonts);
//pMetafile->LoadFromFile(L"D:\\2\\ppt\\media\\image4.wmf");
pMetafile->LoadFromFile(L"/home/oleg/activex/1/image2.wmf");
double x = 0, y = 0, w = 0, h = 0;
pMetafile->GetBounds(&x, &y, &w, &h);
double _max = (w >= h) ? w : h;
double dKoef = 100000.0 / _max;
int WW = (int)(dKoef * w + 0.5);
int HH = (int)(dKoef * h + 0.5);
oWriterSVG.put_Width(WW);
oWriterSVG.put_Height(HH);
pMetafile->DrawOnRenderer(&oWriterSVG, 0, 0, WW, HH);
oWriterSVG.SaveFile(L"/home/oleg/activex/1/oleg.svg");
RELEASEOBJECT(pMetafile);
RELEASEINTERFACE(pManager);
RELEASEOBJECT(pFonts);
return 0;
#endif
#ifdef ONLINE_WORD_TO_PDF
CPdfRenderer oPdfW(pFonts);
oPdfW.SetTempFolder(L"D:\\test\\Document");
oPdfW.OnlineWordToPdf(L"D:\\test\\123.txt", L"D:\\test\\123.pdf");
RELEASEOBJECT(pFonts);
return 0;
#endif
//std::wstring sFile = L"\\\\KIRILLOV8\\_Office\\PDF\\Android intro(2p).pdf";
//std::wstring sFile = L"D:\\activex\\Pi(1p).pdf";
//std::wstring sFile = L"\\\\192.168.3.208\\allusers\\Files\\PDF\\AllPDF\\asia.pdf";
//std::wstring sFile = L"D:\\knut.djvu";
//std::wstring sFile = L"D:\\bankomats.xps";
//std::wstring sFile = L"\\\\kirillov8\\_Office\\DJVU\\Основы разработки приложений на платформе Microsoft .NET Framework. Учебный курс Microsoft экзамен 70-536.djvu";
//std::wstring sFile = L"D:\\TESTFILES\\Алгоритмы - построение и анализ.djvu";
#ifndef WIN32
std::wstring sFile = L"/home/oleg/GIT/ddd/ZfAvCwDsowJALpClgmE_/source/ZfAvCwDsowJALpClgmE_.pdf";
#else
//std::wstring sFile = L"D:\\ddd\\ZfAvCwDsowJALpClgmE_\\source\\ZfAvCwDsowJALpClgmE_.pdf";
//std::wstring sFile = L"D:\\2.pdf";
std::wstring sFile = L"D:\\5.xps";
#endif
#ifdef WIN32
std::wstring sDst = L"D:\\test\\Document";
#else
std::wstring sDst = L"/home/oleg/test/Document";
#endif
//std::wstring sFile = L"/home/oleg/activex/Android intro(2p).pdf";
//std::wstring sFile = L"/home/oleg/activex/Pi(1p).pdf";
//std::wstring sFile = L"/home/oleg/activex/knut.djvu";
//std::wstring sFile = L"/home/oleg/activex/bankomats.xps";
//std::wstring sDst = L"/home/oleg/activex/1";
IOfficeDrawingFile* pReader = NULL;
//pReader = new PdfReader::CPdfReader(pFonts);
//pReader = new CDjVuFile(pFonts);
pReader = new CXpsFile(pFonts);
pReader->SetTempDirectory(sDst);
pReader->LoadFromFile(sFile);
//pReader->ConvertToRaster(0, L"D:\\111.png", 4);
#ifdef TO_HTML_RENDERER
NSHtmlRenderer::CASCHTMLRenderer3 oRenderer;
#ifdef ONLY_TEXT
oRenderer.SetOnlyTextMode(true);
oRenderer.CreateOfficeFile(L"temp/temp");
#else
oRenderer.CreateOfficeFile(sDst);
#endif
#else
CPdfRenderer oRenderer(pFonts);
oRenderer.SetTempFolder(sDst);
#endif
int nPagesCount = pReader->GetPagesCount();
for (int i = 0; i < nPagesCount; ++i)
{
oRenderer.NewPage();
oRenderer.BeginCommand(c_nPageType);
double dPageDpiX, dPageDpiY;
double dWidth, dHeight;
pReader->GetPageInfo(i, &dWidth, &dHeight, &dPageDpiX, &dPageDpiY);
dWidth *= 25.4 / dPageDpiX;
dHeight *= 25.4 / dPageDpiY;
oRenderer.put_Width(dWidth);
oRenderer.put_Height(dHeight);
#ifdef ONLY_TEXT
oRenderer.SetAdditionalParam("DisablePageEnd", L"yes");
#endif
pReader->DrawPageOnRenderer(&oRenderer, i, NULL);
#ifdef ONLY_TEXT
oRenderer.SetAdditionalParam("DisablePageEnd", L"no");
int paragraphs = 0;
int words = 0;
int symbols = 0;
int spaces = 0;
std::string info;
oRenderer.GetLastPageInfo(paragraphs, words, symbols, spaces, info);
#endif
oRenderer.EndCommand(c_nPageType);
}
#ifdef TO_HTML_RENDERER
#ifndef ONLY_TEXT
oRenderer.CloseFile();
#endif
#else
oRenderer.SaveToFile(L"D:/11.pdf");
#endif
RELEASEOBJECT(pFonts);
return 0;
}