61e010f147
[GB.POPPLER] * NEW: PdfDocument: Find() method finds a page index from its label. * NEW: PdfPage: Thumbnail property returns the thumbnail of a page if it exists. * NEW: PdfPage: Label property returns the label of the page. * NEW: PdfPage: Text property returns the text contents of the page. * NEW: PdfPage: GetText() method returns the text contents of part of the page. * NEW: PdfPage: Width and Height properties return the size of the page. * NEW: PdfPage: FindText() method searches for a specific text in the page and return all the bounding boxes found.
67 lines
1.5 KiB
C++
67 lines
1.5 KiB
C++
/***************************************************************************
|
|
|
|
main.cpp
|
|
|
|
gb.poppler component
|
|
|
|
(c) Benoît Minisini <g4mba5@gmail.com>
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 1, or (at your option)
|
|
any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
MA 02110-1301, USA.
|
|
|
|
***************************************************************************/
|
|
|
|
#define __MAIN_CPP
|
|
|
|
#include "c_pdf_document.h"
|
|
#include "main.h"
|
|
|
|
extern "C"
|
|
{
|
|
GB_INTERFACE GB EXPORT;
|
|
GEOM_INTERFACE GEOM EXPORT;
|
|
IMAGE_INTERFACE IMAGE EXPORT;
|
|
|
|
GB_DESC *GB_CLASSES[] EXPORT =
|
|
{
|
|
PdfDesc,
|
|
PdfActionDesc,
|
|
PdfActionGotoDesc,
|
|
PdfActionLaunchDesc,
|
|
PdfActionURIDesc,
|
|
PdfIndexDesc,
|
|
PdfPageDesc,
|
|
PdfDocumentIndexDesc,
|
|
PdfDocumentDesc,
|
|
NULL
|
|
};
|
|
|
|
const char *GB_INCLUDE EXPORT = "gb.geom";
|
|
|
|
int EXPORT GB_INIT(void)
|
|
{
|
|
GB.Component.Load("gb.geom");
|
|
GB.GetInterface("gb.geom", GEOM_INTERFACE_VERSION, &GEOM);
|
|
GB.GetInterface("gb.image", IMAGE_INTERFACE_VERSION, &IMAGE);
|
|
|
|
return 0;
|
|
}
|
|
|
|
void EXPORT GB_EXIT()
|
|
{
|
|
|
|
}
|
|
|
|
}
|