| /* poppler-page.cc: glib wrapper for poppler |
| * Copyright (C) 2005, Red Hat, Inc. |
| * |
| * 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 2, 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. |
| */ |
| |
| #include "config.h" |
| #include <math.h> |
| |
| #ifndef __GI_SCANNER__ |
| #include <GlobalParams.h> |
| #include <PDFDoc.h> |
| #include <Outline.h> |
| #include <ErrorCodes.h> |
| #include <UnicodeMap.h> |
| #include <GfxState.h> |
| #include <PageTransition.h> |
| #endif |
| |
| #include "poppler.h" |
| #include "poppler-private.h" |
| |
| /** |
| * SECTION:poppler-page |
| * @short_description: Information about a page in a document |
| * @title: PopplerPage |
| */ |
| |
| enum |
| { |
| PROP_0, |
| PROP_LABEL |
| }; |
| |
| typedef struct _PopplerPageClass PopplerPageClass; |
| struct _PopplerPageClass |
| { |
| GObjectClass parent_class; |
| }; |
| |
| G_DEFINE_TYPE (PopplerPage, poppler_page, G_TYPE_OBJECT) |
| |
| PopplerPage * |
| _poppler_page_new (PopplerDocument *document, Page *page, int index) |
| { |
| PopplerPage *poppler_page; |
| |
| g_return_val_if_fail (POPPLER_IS_DOCUMENT (document), NULL); |
| |
| poppler_page = (PopplerPage *) g_object_new (POPPLER_TYPE_PAGE, nullptr, NULL); |
| poppler_page->document = (PopplerDocument *) g_object_ref (document); |
| poppler_page->page = page; |
| poppler_page->index = index; |
| |
| return poppler_page; |
| } |
| |
| static void |
| poppler_page_finalize (GObject *object) |
| { |
| PopplerPage *page = POPPLER_PAGE (object); |
| |
| g_object_unref (page->document); |
| page->document = nullptr; |
| |
| if (page->text != nullptr) |
| page->text->decRefCnt(); |
| /* page->page is owned by the document */ |
| |
| G_OBJECT_CLASS (poppler_page_parent_class)->finalize (object); |
| } |
| |
| /** |
| * poppler_page_get_size: |
| * @page: A #PopplerPage |
| * @width: (out) (allow-none): return location for the width of @page |
| * @height: (out) (allow-none): return location for the height of @page |
| * |
| * Gets the size of @page at the current scale and rotation. |
| **/ |
| void |
| poppler_page_get_size (PopplerPage *page, |
| double *width, |
| double *height) |
| { |
| double page_width, page_height; |
| int rotate; |
| |
| g_return_if_fail (POPPLER_IS_PAGE (page)); |
| |
| rotate = page->page->getRotate (); |
| if (rotate == 90 || rotate == 270) { |
| page_height = page->page->getCropWidth (); |
| page_width = page->page->getCropHeight (); |
| } else { |
| page_width = page->page->getCropWidth (); |
| page_height = page->page->getCropHeight (); |
| } |
| |
| if (width != nullptr) |
| *width = page_width; |
| if (height != nullptr) |
| *height = page_height; |
| } |
| |
| /** |
| * poppler_page_get_index: |
| * @page: a #PopplerPage |
| * |
| * Returns the index of @page |
| * |
| * Return value: index value of @page |
| **/ |
| int |
| poppler_page_get_index (PopplerPage *page) |
| { |
| g_return_val_if_fail (POPPLER_IS_PAGE (page), 0); |
| |
| return page->index; |
| } |
| |
| /** |
| * poppler_page_get_label: |
| * @page: a #PopplerPage |
| * |
| * Returns the label of @page. Note that page labels |
| * and page indices might not coincide. |
| * |
| * Return value: a new allocated string containing the label of @page, |
| * or %NULL if @page doesn't have a label |
| * |
| * Since: 0.16 |
| **/ |
| gchar * |
| poppler_page_get_label (PopplerPage *page) |
| { |
| GooString label; |
| |
| g_return_val_if_fail (POPPLER_IS_PAGE (page), NULL); |
| |
| page->document->doc->getCatalog ()->indexToLabel (page->index, &label); |
| return _poppler_goo_string_to_utf8 (&label); |
| } |
| |
| /** |
| * poppler_page_get_duration: |
| * @page: a #PopplerPage |
| * |
| * Returns the duration of @page |
| * |
| * Return value: duration in seconds of @page or -1. |
| **/ |
| double |
| poppler_page_get_duration (PopplerPage *page) |
| { |
| g_return_val_if_fail (POPPLER_IS_PAGE (page), -1); |
| |
| return page->page->getDuration (); |
| } |
| |
| /** |
| * poppler_page_get_transition: |
| * @page: a #PopplerPage |
| * |
| * Returns the transition effect of @page |
| * |
| * Return value: a #PopplerPageTransition or %NULL. |
| **/ |
| PopplerPageTransition * |
| poppler_page_get_transition (PopplerPage *page) |
| { |
| PageTransition *trans; |
| PopplerPageTransition *transition; |
| |
| g_return_val_if_fail (POPPLER_IS_PAGE (page), NULL); |
| |
| Object obj = page->page->getTrans (); |
| trans = new PageTransition (&obj); |
| |
| if (!trans->isOk ()) { |
| delete trans; |
| return nullptr; |
| } |
| |
| transition = poppler_page_transition_new (); |
| |
| switch (trans->getType ()) |
| { |
| case transitionReplace: |
| transition->type = POPPLER_PAGE_TRANSITION_REPLACE; |
| break; |
| case transitionSplit: |
| transition->type = POPPLER_PAGE_TRANSITION_SPLIT; |
| break; |
| case transitionBlinds: |
| transition->type = POPPLER_PAGE_TRANSITION_BLINDS; |
| break; |
| case transitionBox: |
| transition->type = POPPLER_PAGE_TRANSITION_BOX; |
| break; |
| case transitionWipe: |
| transition->type = POPPLER_PAGE_TRANSITION_WIPE; |
| break; |
| case transitionDissolve: |
| transition->type = POPPLER_PAGE_TRANSITION_DISSOLVE; |
| break; |
| case transitionGlitter: |
| transition->type = POPPLER_PAGE_TRANSITION_GLITTER; |
| break; |
| case transitionFly: |
| transition->type = POPPLER_PAGE_TRANSITION_FLY; |
| break; |
| case transitionPush: |
| transition->type = POPPLER_PAGE_TRANSITION_PUSH; |
| break; |
| case transitionCover: |
| transition->type = POPPLER_PAGE_TRANSITION_COVER; |
| break; |
| case transitionUncover: |
| transition->type = POPPLER_PAGE_TRANSITION_UNCOVER; |
| break; |
| case transitionFade: |
| transition->type = POPPLER_PAGE_TRANSITION_FADE; |
| break; |
| default: |
| g_assert_not_reached (); |
| } |
| |
| transition->alignment = (trans->getAlignment() == transitionHorizontal) ? |
| POPPLER_PAGE_TRANSITION_HORIZONTAL : |
| POPPLER_PAGE_TRANSITION_VERTICAL; |
| |
| transition->direction = (trans->getDirection() == transitionInward) ? |
| POPPLER_PAGE_TRANSITION_INWARD : |
| POPPLER_PAGE_TRANSITION_OUTWARD; |
| |
| transition->duration = trans->getDuration(); |
| transition->duration_real = trans->getDuration(); |
| transition->angle = trans->getAngle(); |
| transition->scale = trans->getScale(); |
| transition->rectangular = trans->isRectangular(); |
| |
| delete trans; |
| |
| return transition; |
| } |
| |
| static TextPage * |
| poppler_page_get_text_page (PopplerPage *page) |
| { |
| if (page->text == nullptr) { |
| TextOutputDev *text_dev; |
| Gfx *gfx; |
| |
| text_dev = new TextOutputDev (nullptr, true, 0, false, false); |
| gfx = page->page->createGfx(text_dev, |
| 72.0, 72.0, 0, |
| false, /* useMediaBox */ |
| true, /* Crop */ |
| -1, -1, -1, -1, |
| false, /* printing */ |
| nullptr, nullptr); |
| page->page->display(gfx); |
| text_dev->endPage(); |
| |
| page->text = text_dev->takeText(); |
| delete gfx; |
| delete text_dev; |
| } |
| |
| return page->text; |
| } |
| |
| static gboolean |
| annot_is_markup (Annot *annot) |
| { |
| switch (annot->getType()) |
| { |
| case Annot::typeLink: |
| case Annot::typePopup: |
| case Annot::typeMovie: |
| case Annot::typeScreen: |
| case Annot::typePrinterMark: |
| case Annot::typeTrapNet: |
| case Annot::typeWatermark: |
| case Annot::type3D: |
| case Annot::typeWidget: |
| return FALSE; |
| default: |
| return TRUE; |
| } |
| } |
| |
| static bool |
| poppler_print_annot_cb (Annot *annot, void *user_data) |
| { |
| PopplerPrintFlags user_print_flags = (PopplerPrintFlags)GPOINTER_TO_INT (user_data); |
| |
| if (annot->getFlags () & Annot::flagHidden) |
| return false; |
| |
| if (user_print_flags & POPPLER_PRINT_STAMP_ANNOTS_ONLY) { |
| return (annot->getType() == Annot::typeStamp) ? |
| (annot->getFlags () & Annot::flagPrint) : |
| (annot->getType() == Annot::typeWidget); |
| } |
| |
| if (user_print_flags & POPPLER_PRINT_MARKUP_ANNOTS) { |
| return annot_is_markup (annot) ? |
| (annot->getFlags () & Annot::flagPrint) : |
| (annot->getType() == Annot::typeWidget); |
| } |
| |
| /* Print document only, form fields are always printed */ |
| return (annot->getType() == Annot::typeWidget); |
| } |
| |
| static void |
| _poppler_page_render (PopplerPage *page, |
| cairo_t *cairo, |
| bool printing, |
| PopplerPrintFlags print_flags) |
| { |
| CairoOutputDev *output_dev; |
| |
| g_return_if_fail (POPPLER_IS_PAGE (page)); |
| |
| output_dev = page->document->output_dev; |
| output_dev->setCairo (cairo); |
| output_dev->setPrinting (printing); |
| |
| |
| if (!printing && page->text == nullptr) { |
| page->text = new TextPage (false); |
| output_dev->setTextPage (page->text); |
| } |
| /* NOTE: instead of passing -1 we should/could use cairo_clip_extents() |
| * to get a bounding box */ |
| cairo_save (cairo); |
| page->page->displaySlice(output_dev, |
| 72.0, 72.0, 0, |
| false, /* useMediaBox */ |
| true, /* Crop */ |
| -1, -1, |
| -1, -1, |
| printing, |
| nullptr, nullptr, |
| printing ? poppler_print_annot_cb : nullptr, |
| printing ? GINT_TO_POINTER ((gint)print_flags) : nullptr); |
| cairo_restore (cairo); |
| |
| output_dev->setCairo (nullptr); |
| output_dev->setTextPage (nullptr); |
| } |
| |
| /** |
| * poppler_page_render: |
| * @page: the page to render from |
| * @cairo: cairo context to render to |
| * |
| * Render the page to the given cairo context. This function |
| * is for rendering a page that will be displayed. If you want |
| * to render a page that will be printed use |
| * poppler_page_render_for_printing() instead. Please see the documentation |
| * for that function for the differences between rendering to the screen and |
| * rendering to a printer. |
| **/ |
| void |
| poppler_page_render (PopplerPage *page, |
| cairo_t *cairo) |
| { |
| g_return_if_fail (POPPLER_IS_PAGE (page)); |
| |
| _poppler_page_render (page, cairo, false, (PopplerPrintFlags)0); |
| } |
| |
| /** |
| * poppler_page_render_for_printing_with_options: |
| * @page: the page to render from |
| * @cairo: cairo context to render to |
| * @options: print options |
| * |
| * Render the page to the given cairo context for printing |
| * with the specified options |
| * |
| * See the documentation for poppler_page_render_for_printing() for the |
| * differences between rendering to the screen and rendering to a printer. |
| * |
| * Since: 0.16 |
| **/ |
| void |
| poppler_page_render_for_printing_with_options (PopplerPage *page, |
| cairo_t *cairo, |
| PopplerPrintFlags options) |
| { |
| g_return_if_fail (POPPLER_IS_PAGE (page)); |
| |
| _poppler_page_render (page, cairo, true, options); |
| } |
| |
| /** |
| * poppler_page_render_for_printing: |
| * @page: the page to render from |
| * @cairo: cairo context to render to |
| * |
| * Render the page to the given cairo context for printing with |
| * #POPPLER_PRINT_ALL flags selected. If you want a different set of flags, |
| * use poppler_page_render_for_printing_with_options(). |
| * |
| * The difference between poppler_page_render() and this function is that some |
| * things get rendered differently between screens and printers: |
| * |
| * <itemizedlist> |
| * <listitem> |
| * PDF annotations get rendered according to their #PopplerAnnotFlag value. |
| * For example, #POPPLER_ANNOT_FLAG_PRINT refers to whether an annotation |
| * is printed or not, whereas #POPPLER_ANNOT_FLAG_NO_VIEW refers to whether |
| * an annotation is invisible when displaying to the screen. |
| * </listitem> |
| * <listitem> |
| * PDF supports "hairlines" of width 0.0, which often get rendered as |
| * having a width of 1 device pixel. When displaying on a screen, Cairo |
| * may render such lines wide so that they are hard to see, and Poppler |
| * makes use of PDF's Stroke Adjust graphics parameter to make the lines |
| * easier to see. However, when printing, Poppler is able to directly use a |
| * printer's pixel size instead. |
| * </listitem> |
| * <listitem> |
| * Some advanced features in PDF may require an image to be rasterized |
| * before sending off to a printer. This may produce raster images which |
| * exceed Cairo's limits. The "printing" functions will detect this condition |
| * and try to down-scale the intermediate surfaces as appropriate. |
| * </listitem> |
| * </itemizedlist> |
| * |
| **/ |
| void |
| poppler_page_render_for_printing (PopplerPage *page, |
| cairo_t *cairo) |
| { |
| g_return_if_fail (POPPLER_IS_PAGE (page)); |
| |
| _poppler_page_render (page, cairo, true, POPPLER_PRINT_ALL); |
| } |
| |
| static cairo_surface_t * |
| create_surface_from_thumbnail_data (guchar *data, |
| gint width, |
| gint height, |
| gint rowstride) |
| { |
| guchar *cairo_pixels; |
| gint cairo_stride; |
| cairo_surface_t *surface; |
| int j; |
| |
| surface = cairo_image_surface_create (CAIRO_FORMAT_RGB24, width, height); |
| if (cairo_surface_status (surface)) |
| return nullptr; |
| |
| cairo_pixels = cairo_image_surface_get_data (surface); |
| cairo_stride = cairo_image_surface_get_stride (surface); |
| |
| for (j = height; j; j--) { |
| guchar *p = data; |
| guchar *q = cairo_pixels; |
| guchar *end = p + 3 * width; |
| |
| while (p < end) { |
| #if G_BYTE_ORDER == G_LITTLE_ENDIAN |
| q[0] = p[2]; |
| q[1] = p[1]; |
| q[2] = p[0]; |
| #else |
| q[1] = p[0]; |
| q[2] = p[1]; |
| q[3] = p[2]; |
| #endif |
| p += 3; |
| q += 4; |
| } |
| |
| data += rowstride; |
| cairo_pixels += cairo_stride; |
| } |
| |
| return surface; |
| } |
| |
| |
| /** |
| * poppler_page_get_thumbnail: |
| * @page: the #PopplerPage to get the thumbnail for |
| * |
| * Get the embedded thumbnail for the specified page. If the document |
| * doesn't have an embedded thumbnail for the page, this function |
| * returns %NULL. |
| * |
| * Return value: the tumbnail as a cairo_surface_t or %NULL if the document |
| * doesn't have a thumbnail for this page. |
| **/ |
| cairo_surface_t * |
| poppler_page_get_thumbnail (PopplerPage *page) |
| { |
| unsigned char *data; |
| int width, height, rowstride; |
| cairo_surface_t *surface; |
| |
| g_return_val_if_fail (POPPLER_IS_PAGE (page), NULL); |
| |
| if (!page->page->loadThumb (&data, &width, &height, &rowstride)) |
| return nullptr; |
| |
| surface = create_surface_from_thumbnail_data (data, width, height, rowstride); |
| gfree (data); |
| |
| return surface; |
| } |
| |
| /** |
| * poppler_page_render_selection: |
| * @page: the #PopplerPage for which to render selection |
| * @cairo: cairo context to render to |
| * @selection: start and end point of selection as a rectangle |
| * @old_selection: previous selection |
| * @style: a #PopplerSelectionStyle |
| * @glyph_color: color to use for drawing glyphs |
| * @background_color: color to use for the selection background |
| * |
| * Render the selection specified by @selection for @page to |
| * the given cairo context. The selection will be rendered, using |
| * @glyph_color for the glyphs and @background_color for the selection |
| * background. |
| * |
| * If non-NULL, @old_selection specifies the selection that is already |
| * rendered to @cairo, in which case this function will (some day) |
| * only render the changed part of the selection. |
| **/ |
| void |
| poppler_page_render_selection (PopplerPage *page, |
| cairo_t *cairo, |
| PopplerRectangle *selection, |
| PopplerRectangle *old_selection, |
| PopplerSelectionStyle style, |
| PopplerColor *glyph_color, |
| PopplerColor *background_color) |
| { |
| CairoOutputDev *output_dev; |
| TextPage *text; |
| SelectionStyle selection_style = selectionStyleGlyph; |
| PDFRectangle pdf_selection(selection->x1, selection->y1, |
| selection->x2, selection->y2); |
| |
| GfxColor gfx_background_color = { |
| { |
| background_color->red, |
| background_color->green, |
| background_color->blue |
| } |
| }; |
| GfxColor gfx_glyph_color = { |
| { |
| glyph_color->red, |
| glyph_color->green, |
| glyph_color->blue |
| } |
| }; |
| |
| switch (style) |
| { |
| case POPPLER_SELECTION_GLYPH: |
| selection_style = selectionStyleGlyph; |
| break; |
| case POPPLER_SELECTION_WORD: |
| selection_style = selectionStyleWord; |
| break; |
| case POPPLER_SELECTION_LINE: |
| selection_style = selectionStyleLine; |
| break; |
| } |
| |
| output_dev = page->document->output_dev; |
| output_dev->setCairo (cairo); |
| |
| text = poppler_page_get_text_page (page); |
| text->drawSelection (output_dev, 1.0, 0, |
| &pdf_selection, selection_style, |
| &gfx_glyph_color, &gfx_background_color); |
| |
| output_dev->setCairo (nullptr); |
| } |
| |
| /** |
| * poppler_page_get_thumbnail_size: |
| * @page: A #PopplerPage |
| * @width: (out): return location for width |
| * @height: (out): return location for height |
| * |
| * Returns %TRUE if @page has a thumbnail associated with it. It also |
| * fills in @width and @height with the width and height of the |
| * thumbnail. The values of width and height are not changed if no |
| * appropriate thumbnail exists. |
| * |
| * Return value: %TRUE, if @page has a thumbnail associated with it. |
| **/ |
| gboolean |
| poppler_page_get_thumbnail_size (PopplerPage *page, |
| int *width, |
| int *height) |
| { |
| Dict *dict; |
| gboolean retval = FALSE; |
| |
| g_return_val_if_fail (POPPLER_IS_PAGE (page), FALSE); |
| g_return_val_if_fail (width != nullptr, FALSE); |
| g_return_val_if_fail (height != nullptr, FALSE); |
| |
| Object thumb = page->page->getThumb (); |
| if (!thumb.isStream ()) |
| { |
| return FALSE; |
| } |
| |
| dict = thumb.streamGetDict(); |
| |
| /* Theoretically, this could succeed and you would still fail when |
| * loading the thumb */ |
| if (dict->lookupInt ("Width", "W", width) && |
| dict->lookupInt ("Height", "H", height)) |
| retval = TRUE; |
| |
| return retval; |
| } |
| |
| /** |
| * poppler_page_get_selection_region: |
| * @page: a #PopplerPage |
| * @scale: scale specified as pixels per point |
| * @style: a #PopplerSelectionStyle |
| * @selection: start and end point of selection as a rectangle |
| * |
| * Returns a region containing the area that would be rendered by |
| * poppler_page_render_selection() as a #GList of |
| * #PopplerRectangle. The returned list must be freed with |
| * poppler_page_selection_region_free(). |
| * |
| * Return value: (element-type PopplerRectangle) (transfer full): a #GList of #PopplerRectangle |
| * |
| * Deprecated: 0.16: Use poppler_page_get_selected_region() instead. |
| **/ |
| GList * |
| poppler_page_get_selection_region (PopplerPage *page, |
| gdouble scale, |
| PopplerSelectionStyle style, |
| PopplerRectangle *selection) |
| { |
| PDFRectangle poppler_selection; |
| TextPage *text; |
| SelectionStyle selection_style = selectionStyleGlyph; |
| GList *region = nullptr; |
| |
| poppler_selection.x1 = selection->x1; |
| poppler_selection.y1 = selection->y1; |
| poppler_selection.x2 = selection->x2; |
| poppler_selection.y2 = selection->y2; |
| |
| switch (style) |
| { |
| case POPPLER_SELECTION_GLYPH: |
| selection_style = selectionStyleGlyph; |
| break; |
| case POPPLER_SELECTION_WORD: |
| selection_style = selectionStyleWord; |
| break; |
| case POPPLER_SELECTION_LINE: |
| selection_style = selectionStyleLine; |
| break; |
| } |
| |
| text = poppler_page_get_text_page (page); |
| std::vector<PDFRectangle*>* list = text->getSelectionRegion(&poppler_selection, |
| selection_style, scale); |
| |
| for (std::size_t i = 0; i < list->size(); i++) { |
| PDFRectangle *selection_rect = (*list)[i]; |
| PopplerRectangle *rect; |
| |
| rect = poppler_rectangle_new (); |
| |
| rect->x1 = selection_rect->x1; |
| rect->y1 = selection_rect->y1; |
| rect->x2 = selection_rect->x2; |
| rect->y2 = selection_rect->y2; |
| |
| region = g_list_prepend (region, rect); |
| |
| delete selection_rect; |
| } |
| |
| delete list; |
| |
| return g_list_reverse (region); |
| } |
| |
| /** |
| * poppler_page_selection_region_free: |
| * @region: (element-type PopplerRectangle): a #GList of |
| * #PopplerRectangle |
| * |
| * Frees @region |
| * |
| * Deprecated: 0.16 |
| */ |
| void |
| poppler_page_selection_region_free (GList *region) |
| { |
| if (G_UNLIKELY (!region)) |
| return; |
| |
| g_list_foreach (region, (GFunc)poppler_rectangle_free, nullptr); |
| g_list_free (region); |
| } |
| |
| /** |
| * poppler_page_get_selected_region: |
| * @page: a #PopplerPage |
| * @scale: scale specified as pixels per point |
| * @style: a #PopplerSelectionStyle |
| * @selection: start and end point of selection as a rectangle |
| * |
| * Returns a region containing the area that would be rendered by |
| * poppler_page_render_selection(). |
| * The returned region must be freed with cairo_region_destroy() |
| * |
| * Return value: (transfer full): a cairo_region_t |
| * |
| * Since: 0.16 |
| **/ |
| cairo_region_t * |
| poppler_page_get_selected_region (PopplerPage *page, |
| gdouble scale, |
| PopplerSelectionStyle style, |
| PopplerRectangle *selection) |
| { |
| PDFRectangle poppler_selection; |
| TextPage *text; |
| SelectionStyle selection_style = selectionStyleGlyph; |
| cairo_region_t *region; |
| |
| poppler_selection.x1 = selection->x1; |
| poppler_selection.y1 = selection->y1; |
| poppler_selection.x2 = selection->x2; |
| poppler_selection.y2 = selection->y2; |
| |
| switch (style) |
| { |
| case POPPLER_SELECTION_GLYPH: |
| selection_style = selectionStyleGlyph; |
| break; |
| case POPPLER_SELECTION_WORD: |
| selection_style = selectionStyleWord; |
| break; |
| case POPPLER_SELECTION_LINE: |
| selection_style = selectionStyleLine; |
| break; |
| } |
| |
| text = poppler_page_get_text_page (page); |
| std::vector<PDFRectangle*>* list = text->getSelectionRegion(&poppler_selection, |
| selection_style, 1.0); |
| |
| region = cairo_region_create (); |
| |
| for (std::size_t i = 0; i < list->size(); i++) { |
| PDFRectangle *selection_rect = (*list)[i]; |
| cairo_rectangle_int_t rect; |
| |
| rect.x = (gint) ((selection_rect->x1 * scale) + 0.5); |
| rect.y = (gint) ((selection_rect->y1 * scale) + 0.5); |
| rect.width = (gint) (((selection_rect->x2 - selection_rect->x1) * scale) + 0.5); |
| rect.height = (gint) (((selection_rect->y2 - selection_rect->y1) * scale) + 0.5); |
| cairo_region_union_rectangle (region, &rect); |
| |
| delete selection_rect; |
| } |
| |
| delete list; |
| |
| return region; |
| } |
| |
| /** |
| * poppler_page_get_selected_text: |
| * @page: a #PopplerPage |
| * @style: a #PopplerSelectionStyle |
| * @selection: the #PopplerRectangle including the text |
| * |
| * Retrieves the contents of the specified @selection as text. |
| * |
| * Return value: a pointer to the contents of the @selection |
| * as a string |
| * Since: 0.16 |
| **/ |
| char * |
| poppler_page_get_selected_text (PopplerPage *page, |
| PopplerSelectionStyle style, |
| PopplerRectangle *selection) |
| { |
| GooString *sel_text; |
| char *result; |
| TextPage *text; |
| SelectionStyle selection_style = selectionStyleGlyph; |
| PDFRectangle pdf_selection; |
| |
| g_return_val_if_fail (POPPLER_IS_PAGE (page), NULL); |
| g_return_val_if_fail (selection != nullptr, NULL); |
| |
| pdf_selection.x1 = selection->x1; |
| pdf_selection.y1 = selection->y1; |
| pdf_selection.x2 = selection->x2; |
| pdf_selection.y2 = selection->y2; |
| |
| switch (style) |
| { |
| case POPPLER_SELECTION_GLYPH: |
| selection_style = selectionStyleGlyph; |
| break; |
| case POPPLER_SELECTION_WORD: |
| selection_style = selectionStyleWord; |
| break; |
| case POPPLER_SELECTION_LINE: |
| selection_style = selectionStyleLine; |
| break; |
| } |
| |
| text = poppler_page_get_text_page (page); |
| sel_text = text->getSelectionText (&pdf_selection, selection_style); |
| result = g_strdup (sel_text->c_str ()); |
| delete sel_text; |
| |
| return result; |
| } |
| |
| /** |
| * poppler_page_get_text: |
| * @page: a #PopplerPage |
| * |
| * Retrieves the text of @page. |
| * |
| * Return value: a pointer to the text of the @page |
| * as a string |
| * Since: 0.16 |
| **/ |
| char * |
| poppler_page_get_text (PopplerPage *page) |
| { |
| PopplerRectangle rectangle = {0, 0, 0, 0}; |
| |
| g_return_val_if_fail (POPPLER_IS_PAGE (page), NULL); |
| |
| poppler_page_get_size (page, &rectangle.x2, &rectangle.y2); |
| |
| return poppler_page_get_selected_text (page, POPPLER_SELECTION_GLYPH, &rectangle); |
| } |
| |
| /** |
| * poppler_page_get_text_for_area: |
| * @page: a #PopplerPage |
| * @area: a #PopplerRectangle |
| * |
| * Retrieves the text of @page contained in @area. |
| * |
| * Return value: a pointer to the text as a string |
| * |
| * Since: 0.26 |
| **/ |
| char * |
| poppler_page_get_text_for_area (PopplerPage *page, |
| PopplerRectangle *area) |
| { |
| g_return_val_if_fail (POPPLER_IS_PAGE (page), NULL); |
| g_return_val_if_fail (area != nullptr, NULL); |
| |
| return poppler_page_get_selected_text (page, POPPLER_SELECTION_GLYPH, area); |
| } |
| |
| |
| /** |
| * poppler_page_find_text_with_options: |
| * @page: a #PopplerPage |
| * @text: the text to search for (UTF-8 encoded) |
| * @options: find options |
| * |
| * Finds @text in @page with the given #PopplerFindFlags options and |
| * returns a #GList of rectangles for each occurrence of the text on the page. |
| * The coordinates are in PDF points. |
| * |
| * Return value: (element-type PopplerRectangle) (transfer full): a #GList of #PopplerRectangle, |
| * |
| * Since: 0.22 |
| **/ |
| GList * |
| poppler_page_find_text_with_options (PopplerPage *page, |
| const char *text, |
| PopplerFindFlags options) |
| { |
| PopplerRectangle *match; |
| GList *matches; |
| double xMin, yMin, xMax, yMax; |
| gunichar *ucs4; |
| glong ucs4_len; |
| double height; |
| TextPage *text_dev; |
| gboolean backwards; |
| gboolean start_at_last = FALSE; |
| |
| g_return_val_if_fail (POPPLER_IS_PAGE (page), NULL); |
| g_return_val_if_fail (text != nullptr, NULL); |
| |
| text_dev = poppler_page_get_text_page (page); |
| |
| ucs4 = g_utf8_to_ucs4_fast (text, -1, &ucs4_len); |
| poppler_page_get_size (page, nullptr, &height); |
| |
| backwards = options & POPPLER_FIND_BACKWARDS; |
| matches = nullptr; |
| xMin = 0; |
| yMin = backwards ? height : 0; |
| |
| while (text_dev->findText (ucs4, ucs4_len, |
| false, true, // startAtTop, stopAtBottom |
| start_at_last, |
| false, //stopAtLast |
| options & POPPLER_FIND_CASE_SENSITIVE, |
| options & POPPLER_FIND_IGNORE_DIACRITICS, |
| backwards, |
| options & POPPLER_FIND_WHOLE_WORDS_ONLY, |
| &xMin, &yMin, &xMax, &yMax)) |
| { |
| match = poppler_rectangle_new (); |
| match->x1 = xMin; |
| match->y1 = height - yMax; |
| match->x2 = xMax; |
| match->y2 = height - yMin; |
| matches = g_list_prepend (matches, match); |
| start_at_last = TRUE; |
| } |
| |
| g_free (ucs4); |
| |
| return g_list_reverse (matches); |
| } |
| |
| /** |
| * poppler_page_find_text: |
| * @page: a #PopplerPage |
| * @text: the text to search for (UTF-8 encoded) |
| * |
| * Finds @text in @page with the default options (%POPPLER_FIND_DEFAULT) and |
| * returns a #GList of rectangles for each occurrence of the text on the page. |
| * The coordinates are in PDF points. |
| * |
| * Return value: (element-type PopplerRectangle) (transfer full): a #GList of #PopplerRectangle, |
| **/ |
| GList * |
| poppler_page_find_text (PopplerPage *page, |
| const char *text) |
| { |
| return poppler_page_find_text_with_options (page, text, POPPLER_FIND_DEFAULT); |
| } |
| |
| static CairoImageOutputDev * |
| poppler_page_get_image_output_dev (PopplerPage *page, |
| bool (*imgDrawDeviceCbk)(int img_id, void *data), |
| void *imgDrawCbkData) |
| { |
| CairoImageOutputDev *image_dev; |
| Gfx *gfx; |
| |
| image_dev = new CairoImageOutputDev (); |
| |
| if (imgDrawDeviceCbk) { |
| image_dev->setImageDrawDecideCbk (imgDrawDeviceCbk, |
| imgDrawCbkData); |
| } |
| |
| gfx = page->page->createGfx(image_dev, |
| 72.0, 72.0, 0, |
| false, /* useMediaBox */ |
| true, /* Crop */ |
| -1, -1, -1, -1, |
| false, /* printing */ |
| nullptr, nullptr); |
| page->page->display(gfx); |
| delete gfx; |
| |
| return image_dev; |
| } |
| |
| /** |
| * poppler_page_get_image_mapping: |
| * @page: A #PopplerPage |
| * |
| * Returns a list of #PopplerImageMapping items that map from a |
| * location on @page to an image of the page. This list must be freed |
| * with poppler_page_free_image_mapping() when done. |
| * |
| * Return value: (element-type PopplerImageMapping) (transfer full): A #GList of #PopplerImageMapping |
| **/ |
| GList * |
| poppler_page_get_image_mapping (PopplerPage *page) |
| { |
| GList *map_list = nullptr; |
| CairoImageOutputDev *out; |
| gint i; |
| |
| g_return_val_if_fail (POPPLER_IS_PAGE (page), NULL); |
| |
| out = poppler_page_get_image_output_dev (page, nullptr, nullptr); |
| |
| for (i = 0; i < out->getNumImages (); i++) { |
| PopplerImageMapping *mapping; |
| CairoImage *image; |
| |
| image = out->getImage (i); |
| |
| /* Create the mapping */ |
| mapping = poppler_image_mapping_new (); |
| |
| image->getRect (&(mapping->area.x1), &(mapping->area.y1), |
| &(mapping->area.x2), &(mapping->area.y2)); |
| mapping->image_id = i; |
| |
| mapping->area.x1 -= page->page->getCropBox()->x1; |
| mapping->area.x2 -= page->page->getCropBox()->x1; |
| mapping->area.y1 -= page->page->getCropBox()->y1; |
| mapping->area.y2 -= page->page->getCropBox()->y1; |
| |
| map_list = g_list_prepend (map_list, mapping); |
| } |
| |
| delete out; |
| |
| return map_list; |
| } |
| |
| static bool |
| image_draw_decide_cb (int image_id, void *data) |
| { |
| return (image_id == GPOINTER_TO_INT (data)); |
| } |
| |
| /** |
| * poppler_page_get_image: |
| * @page: A #PopplerPage |
| * @image_id: The image identifier |
| * |
| * Returns a cairo surface for the image of the @page |
| * |
| * Return value: A cairo surface for the image |
| **/ |
| cairo_surface_t * |
| poppler_page_get_image (PopplerPage *page, |
| gint image_id) |
| { |
| CairoImageOutputDev *out; |
| cairo_surface_t *image; |
| |
| g_return_val_if_fail (POPPLER_IS_PAGE (page), NULL); |
| |
| out = poppler_page_get_image_output_dev (page, |
| image_draw_decide_cb, |
| GINT_TO_POINTER (image_id)); |
| |
| if (image_id >= out->getNumImages ()) { |
| delete out; |
| |
| return nullptr; |
| } |
| |
| image = out->getImage (image_id)->getImage (); |
| if (!image) { |
| delete out; |
| |
| return nullptr; |
| } |
| |
| cairo_surface_reference (image); |
| delete out; |
| |
| return image; |
| } |
| |
| /** |
| * poppler_page_free_image_mapping: |
| * @list: (element-type PopplerImageMapping): A list of |
| * #PopplerImageMapping<!-- -->s |
| * |
| * Frees a list of #PopplerImageMapping<!-- -->s allocated by |
| * poppler_page_get_image_mapping(). |
| **/ |
| void |
| poppler_page_free_image_mapping (GList *list) |
| { |
| if (G_UNLIKELY (list == nullptr)) |
| return; |
| |
| g_list_foreach (list, (GFunc)poppler_image_mapping_free, nullptr); |
| g_list_free (list); |
| } |
| |
| /** |
| * poppler_page_render_to_ps: |
| * @page: a #PopplerPage |
| * @ps_file: the PopplerPSFile to render to |
| * |
| * Render the page on a postscript file |
| * |
| **/ |
| void |
| poppler_page_render_to_ps (PopplerPage *page, |
| PopplerPSFile *ps_file) |
| { |
| g_return_if_fail (POPPLER_IS_PAGE (page)); |
| g_return_if_fail (ps_file != nullptr); |
| |
| if (!ps_file->out) { |
| std::vector<int> pages; |
| for (int i = ps_file->first_page; i <= ps_file->last_page; ++i) { |
| pages.push_back(i); |
| } |
| ps_file->out = new PSOutputDev (ps_file->filename, |
| ps_file->document->doc, |
| nullptr, pages, |
| psModePS, (int)ps_file->paper_width, |
| (int)ps_file->paper_height, ps_file->duplex, |
| 0, 0, 0, 0, false, false); |
| } |
| |
| |
| ps_file->document->doc->displayPage (ps_file->out, page->index + 1, 72.0, 72.0, |
| 0, false, true, false); |
| } |
| |
| static void |
| poppler_page_get_property (GObject *object, |
| guint prop_id, |
| GValue *value, |
| GParamSpec *pspec) |
| { |
| PopplerPage *page = POPPLER_PAGE (object); |
| |
| switch (prop_id) |
| { |
| case PROP_LABEL: |
| g_value_take_string (value, poppler_page_get_label (page)); |
| break; |
| default: |
| G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); |
| } |
| } |
| |
| static void |
| poppler_page_class_init (PopplerPageClass *klass) |
| { |
| GObjectClass *gobject_class = G_OBJECT_CLASS (klass); |
| |
| gobject_class->finalize = poppler_page_finalize; |
| gobject_class->get_property = poppler_page_get_property; |
| |
| /** |
| * PopplerPage:label: |
| * |
| * The label of the page or %NULL. See also poppler_page_get_label() |
| */ |
| g_object_class_install_property (G_OBJECT_CLASS (klass), |
| PROP_LABEL, |
| g_param_spec_string ("label", |
| "Page Label", |
| "The label of the page", |
| nullptr, |
| G_PARAM_READABLE)); |
| } |
| |
| static void |
| poppler_page_init (PopplerPage *page) |
| { |
| } |
| |
| /** |
| * poppler_page_get_link_mapping: |
| * @page: A #PopplerPage |
| * |
| * Returns a list of #PopplerLinkMapping items that map from a |
| * location on @page to a #PopplerAction. This list must be freed |
| * with poppler_page_free_link_mapping() when done. |
| * |
| * Return value: (element-type PopplerLinkMapping) (transfer full): A #GList of #PopplerLinkMapping |
| **/ |
| GList * |
| poppler_page_get_link_mapping (PopplerPage *page) |
| { |
| GList *map_list = nullptr; |
| gint i; |
| Links *links; |
| double width, height; |
| |
| g_return_val_if_fail (POPPLER_IS_PAGE (page), NULL); |
| |
| links = new Links (page->page->getAnnots ()); |
| |
| if (links == nullptr) |
| return nullptr; |
| |
| poppler_page_get_size (page, &width, &height); |
| |
| for (i = 0; i < links->getNumLinks (); i++) |
| { |
| PopplerLinkMapping *mapping; |
| PopplerRectangle rect; |
| LinkAction *link_action; |
| AnnotLink *link; |
| |
| link = links->getLink (i); |
| link_action = link->getAction (); |
| |
| /* Create the mapping */ |
| mapping = poppler_link_mapping_new (); |
| mapping->action = _poppler_action_new (page->document, link_action, nullptr); |
| |
| link->getRect (&rect.x1, &rect.y1, &rect.x2, &rect.y2); |
| |
| rect.x1 -= page->page->getCropBox()->x1; |
| rect.x2 -= page->page->getCropBox()->x1; |
| rect.y1 -= page->page->getCropBox()->y1; |
| rect.y2 -= page->page->getCropBox()->y1; |
| |
| switch (page->page->getRotate ()) |
| { |
| case 90: |
| mapping->area.x1 = rect.y1; |
| mapping->area.y1 = height - rect.x2; |
| mapping->area.x2 = mapping->area.x1 + (rect.y2 - rect.y1); |
| mapping->area.y2 = mapping->area.y1 + (rect.x2 - rect.x1); |
| |
| break; |
| case 180: |
| mapping->area.x1 = width - rect.x2; |
| mapping->area.y1 = height - rect.y2; |
| mapping->area.x2 = mapping->area.x1 + (rect.x2 - rect.x1); |
| mapping->area.y2 = mapping->area.y1 + (rect.y2 - rect.y1); |
| |
| break; |
| case 270: |
| mapping->area.x1 = width - rect.y2; |
| mapping->area.y1 = rect.x1; |
| mapping->area.x2 = mapping->area.x1 + (rect.y2 - rect.y1); |
| mapping->area.y2 = mapping->area.y1 + (rect.x2 - rect.x1); |
| |
| break; |
| default: |
| mapping->area.x1 = rect.x1; |
| mapping->area.y1 = rect.y1; |
| mapping->area.x2 = rect.x2; |
| mapping->area.y2 = rect.y2; |
| } |
| |
| map_list = g_list_prepend (map_list, mapping); |
| } |
| |
| delete links; |
| |
| return map_list; |
| } |
| |
| /** |
| * poppler_page_free_link_mapping: |
| * @list: (element-type PopplerLinkMapping): A list of |
| * #PopplerLinkMapping<!-- -->s |
| * |
| * Frees a list of #PopplerLinkMapping<!-- -->s allocated by |
| * poppler_page_get_link_mapping(). It also frees the #PopplerAction<!-- -->s |
| * that each mapping contains, so if you want to keep them around, you need to |
| * copy them with poppler_action_copy(). |
| **/ |
| void |
| poppler_page_free_link_mapping (GList *list) |
| { |
| if (G_UNLIKELY (list == nullptr)) |
| return; |
| |
| g_list_foreach (list, (GFunc)poppler_link_mapping_free, nullptr); |
| g_list_free (list); |
| } |
| |
| /** |
| * poppler_page_get_form_field_mapping: |
| * @page: A #PopplerPage |
| * |
| * Returns a list of #PopplerFormFieldMapping items that map from a |
| * location on @page to a form field. This list must be freed |
| * with poppler_page_free_form_field_mapping() when done. |
| * |
| * Return value: (element-type PopplerFormFieldMapping) (transfer full): A #GList of #PopplerFormFieldMapping |
| **/ |
| GList * |
| poppler_page_get_form_field_mapping (PopplerPage *page) |
| { |
| GList *map_list = nullptr; |
| FormPageWidgets *forms; |
| gint i; |
| |
| g_return_val_if_fail (POPPLER_IS_PAGE (page), NULL); |
| |
| forms = page->page->getFormWidgets (); |
| |
| if (forms == nullptr) |
| return nullptr; |
| |
| for (i = 0; i < forms->getNumWidgets (); i++) { |
| PopplerFormFieldMapping *mapping; |
| FormWidget *field; |
| |
| mapping = poppler_form_field_mapping_new (); |
| |
| field = forms->getWidget (i); |
| |
| mapping->field = _poppler_form_field_new (page->document, field); |
| field->getRect (&(mapping->area.x1), &(mapping->area.y1), |
| &(mapping->area.x2), &(mapping->area.y2)); |
| |
| mapping->area.x1 -= page->page->getCropBox()->x1; |
| mapping->area.x2 -= page->page->getCropBox()->x1; |
| mapping->area.y1 -= page->page->getCropBox()->y1; |
| mapping->area.y2 -= page->page->getCropBox()->y1; |
| |
| map_list = g_list_prepend (map_list, mapping); |
| } |
| |
| delete forms; |
| |
| return map_list; |
| } |
| |
| /** |
| * poppler_page_free_form_field_mapping: |
| * @list: (element-type PopplerFormFieldMapping): A list of |
| * #PopplerFormFieldMapping<!-- -->s |
| * |
| * Frees a list of #PopplerFormFieldMapping<!-- -->s allocated by |
| * poppler_page_get_form_field_mapping(). |
| **/ |
| void |
| poppler_page_free_form_field_mapping (GList *list) |
| { |
| if (G_UNLIKELY (list == nullptr)) |
| return; |
| |
| g_list_foreach (list, (GFunc) poppler_form_field_mapping_free, nullptr); |
| g_list_free (list); |
| } |
| |
| /** |
| * poppler_page_get_annot_mapping: |
| * @page: A #PopplerPage |
| * |
| * Returns a list of #PopplerAnnotMapping items that map from a location on |
| * @page to a #PopplerAnnot. This list must be freed with |
| * poppler_page_free_annot_mapping() when done. |
| * |
| * Return value: (element-type PopplerAnnotMapping) (transfer full): A #GList of #PopplerAnnotMapping |
| **/ |
| GList * |
| poppler_page_get_annot_mapping (PopplerPage *page) |
| { |
| GList *map_list = nullptr; |
| double width, height; |
| gint i; |
| Annots *annots; |
| |
| g_return_val_if_fail (POPPLER_IS_PAGE (page), NULL); |
| |
| annots = page->page->getAnnots (); |
| if (!annots) |
| return nullptr; |
| |
| poppler_page_get_size (page, &width, &height); |
| |
| for (i = 0; i < annots->getNumAnnots (); i++) { |
| PopplerAnnotMapping *mapping; |
| PopplerRectangle rect; |
| Annot *annot; |
| PDFRectangle *annot_rect; |
| gint rotation = 0; |
| |
| annot = annots->getAnnot (i); |
| |
| /* Create the mapping */ |
| mapping = poppler_annot_mapping_new (); |
| |
| switch (annot->getType ()) |
| { |
| case Annot::typeText: |
| mapping->annot = _poppler_annot_text_new (annot); |
| break; |
| case Annot::typeFreeText: |
| mapping->annot = _poppler_annot_free_text_new (annot); |
| break; |
| case Annot::typeFileAttachment: |
| mapping->annot = _poppler_annot_file_attachment_new (annot); |
| break; |
| case Annot::typeMovie: |
| mapping->annot = _poppler_annot_movie_new (annot); |
| break; |
| case Annot::typeScreen: |
| mapping->annot = _poppler_annot_screen_new (page->document, annot); |
| break; |
| case Annot::typeLine: |
| mapping->annot = _poppler_annot_line_new (annot); |
| break; |
| case Annot::typeSquare: |
| mapping->annot = _poppler_annot_square_new (annot); |
| break; |
| case Annot::typeCircle: |
| mapping->annot = _poppler_annot_circle_new (annot); |
| break; |
| case Annot::typeHighlight: |
| case Annot::typeUnderline: |
| case Annot::typeSquiggly: |
| case Annot::typeStrikeOut: |
| mapping->annot = _poppler_annot_text_markup_new (annot); |
| break; |
| default: |
| mapping->annot = _poppler_annot_new (annot); |
| break; |
| } |
| |
| annot_rect = annot->getRect (); |
| rect.x1 = annot_rect->x1 - page->page->getCropBox()->x1; |
| rect.y1 = annot_rect->y1 - page->page->getCropBox()->y1; |
| rect.x2 = annot_rect->x2 - page->page->getCropBox()->x1; |
| rect.y2 = annot_rect->y2 - page->page->getCropBox()->y1; |
| |
| if (! (annot->getFlags () & Annot::flagNoRotate)) |
| rotation = page->page->getRotate (); |
| |
| switch (rotation) |
| { |
| case 90: |
| mapping->area.x1 = rect.y1; |
| mapping->area.y1 = height - rect.x2; |
| mapping->area.x2 = mapping->area.x1 + (rect.y2 - rect.y1); |
| mapping->area.y2 = mapping->area.y1 + (rect.x2 - rect.x1); |
| break; |
| case 180: |
| mapping->area.x1 = width - rect.x2; |
| mapping->area.y1 = height - rect.y2; |
| mapping->area.x2 = mapping->area.x1 + (rect.x2 - rect.x1); |
| mapping->area.y2 = mapping->area.y1 + (rect.y2 - rect.y1); |
| break; |
| case 270: |
| mapping->area.x1 = width - rect.y2; |
| mapping->area.y1 = rect.x1; |
| mapping->area.x2 = mapping->area.x1 + (rect.y2 - rect.y1); |
| mapping->area.y2 = mapping->area.y1 + (rect.x2 - rect.x1); |
| break; |
| default: |
| mapping->area.x1 = rect.x1; |
| mapping->area.y1 = rect.y1; |
| mapping->area.x2 = rect.x2; |
| mapping->area.y2 = rect.y2; |
| } |
| |
| map_list = g_list_prepend (map_list, mapping); |
| } |
| |
| return g_list_reverse (map_list); |
| } |
| |
| /** |
| * poppler_page_free_annot_mapping: |
| * @list: (element-type PopplerAnnotMapping): A list of |
| * #PopplerAnnotMapping<!-- -->s |
| * |
| * Frees a list of #PopplerAnnotMapping<!-- -->s allocated by |
| * poppler_page_get_annot_mapping(). It also unreferences the #PopplerAnnot<!-- -->s |
| * that each mapping contains, so if you want to keep them around, you need to |
| * reference them with g_object_ref(). |
| **/ |
| void |
| poppler_page_free_annot_mapping (GList *list) |
| { |
| if (G_UNLIKELY (!list)) |
| return; |
| |
| g_list_foreach (list, (GFunc)poppler_annot_mapping_free, nullptr); |
| g_list_free (list); |
| } |
| |
| /** |
| * poppler_page_add_annot: |
| * @page: a #PopplerPage |
| * @annot: a #PopplerAnnot to add |
| * |
| * Adds annotation @annot to @page. |
| * |
| * Since: 0.16 |
| */ |
| void |
| poppler_page_add_annot (PopplerPage *page, |
| PopplerAnnot *annot) |
| { |
| g_return_if_fail (POPPLER_IS_PAGE (page)); |
| g_return_if_fail (POPPLER_IS_ANNOT (annot)); |
| |
| page->page->addAnnot (annot->annot); |
| } |
| |
| /** |
| * poppler_page_remove_annot: |
| * @page: a #PopplerPage |
| * @annot: a #PopplerAnnot to remove |
| * |
| * Removes annotation @annot from @page |
| * |
| * Since: 0.22 |
| */ |
| void |
| poppler_page_remove_annot (PopplerPage *page, |
| PopplerAnnot *annot) |
| { |
| g_return_if_fail (POPPLER_IS_PAGE (page)); |
| g_return_if_fail (POPPLER_IS_ANNOT (annot)); |
| |
| page->page->removeAnnot (annot->annot); |
| } |
| |
| /* PopplerRectangle type */ |
| |
| POPPLER_DEFINE_BOXED_TYPE (PopplerRectangle, poppler_rectangle, |
| poppler_rectangle_copy, |
| poppler_rectangle_free) |
| |
| /** |
| * poppler_rectangle_new: |
| * |
| * Creates a new #PopplerRectangle |
| * |
| * Returns: a new #PopplerRectangle, use poppler_rectangle_free() to free it |
| */ |
| PopplerRectangle * |
| poppler_rectangle_new (void) |
| { |
| return g_slice_new0 (PopplerRectangle); |
| } |
| |
| /** |
| * poppler_rectangle_copy: |
| * @rectangle: a #PopplerRectangle to copy |
| * |
| * Creates a copy of @rectangle |
| * |
| * Returns: a new allocated copy of @rectangle |
| */ |
| PopplerRectangle * |
| poppler_rectangle_copy (PopplerRectangle *rectangle) |
| { |
| g_return_val_if_fail (rectangle != nullptr, NULL); |
| |
| return g_slice_dup (PopplerRectangle, rectangle); |
| } |
| |
| /** |
| * poppler_rectangle_free: |
| * @rectangle: a #PopplerRectangle |
| * |
| * Frees the given #PopplerRectangle |
| */ |
| void |
| poppler_rectangle_free (PopplerRectangle *rectangle) |
| { |
| g_slice_free (PopplerRectangle, rectangle); |
| } |
| |
| /* PopplerPoint type */ |
| |
| POPPLER_DEFINE_BOXED_TYPE (PopplerPoint, poppler_point, |
| poppler_point_copy, |
| poppler_point_free) |
| |
| /** |
| * poppler_point_new: |
| * |
| * Creates a new #PopplerPoint. It must be freed with poppler_point_free() after use. |
| * |
| * Returns: a new #PopplerPoint |
| * |
| * Since: 0.26 |
| **/ |
| PopplerPoint * |
| poppler_point_new (void) |
| { |
| return g_slice_new0 (PopplerPoint); |
| } |
| |
| /** |
| * poppler_point_copy: |
| * @point: a #PopplerPoint to copy |
| * |
| * Creates a copy of @point. The copy must be freed with poppler_point_free() |
| * after use. |
| * |
| * Returns: a new allocated copy of @point |
| * |
| * Since: 0.26 |
| **/ |
| PopplerPoint * |
| poppler_point_copy (PopplerPoint *point) |
| { |
| g_return_val_if_fail (point != nullptr, NULL); |
| |
| return g_slice_dup (PopplerPoint, point); |
| } |
| |
| /** |
| * poppler_point_free: |
| * @point: a #PopplerPoint |
| * |
| * Frees the memory used by @point |
| * |
| * Since: 0.26 |
| **/ |
| void |
| poppler_point_free (PopplerPoint *point) |
| { |
| g_slice_free (PopplerPoint, point); |
| } |
| |
| /* PopplerQuadrilateral type */ |
| |
| POPPLER_DEFINE_BOXED_TYPE (PopplerQuadrilateral, poppler_quadrilateral, |
| poppler_quadrilateral_copy, |
| poppler_quadrilateral_free) |
| |
| /** |
| * poppler_quadrilateral_new: |
| * |
| * Creates a new #PopplerQuadrilateral. It must be freed with poppler_quadrilateral_free() after use. |
| * |
| * Returns: a new #PopplerQuadrilateral. |
| * |
| * Since: 0.26 |
| **/ |
| PopplerQuadrilateral * |
| poppler_quadrilateral_new (void) |
| { |
| return g_slice_new0 (PopplerQuadrilateral); |
| } |
| |
| /** |
| * poppler_quadrilateral_copy: |
| * @quad: a #PopplerQuadrilateral to copy |
| * |
| * Creates a copy of @quad. The copy must be freed with poppler_quadrilateral_free() after use. |
| * |
| * Returns: a new allocated copy of @quad |
| * |
| * Since: 0.26 |
| **/ |
| PopplerQuadrilateral * |
| poppler_quadrilateral_copy (PopplerQuadrilateral *quad) |
| { |
| g_return_val_if_fail (quad != nullptr, NULL); |
| |
| return g_slice_dup (PopplerQuadrilateral, quad); |
| } |
| |
| /** |
| * poppler_quadrilateral_free: |
| * @quad: a #PopplerQuadrilateral |
| * |
| * Frees the memory used by @quad |
| * |
| * Since: 0.26 |
| **/ |
| void |
| poppler_quadrilateral_free (PopplerQuadrilateral *quad) |
| { |
| g_slice_free (PopplerQuadrilateral, quad); |
| } |
| |
| /* PopplerTextAttributes type */ |
| |
| POPPLER_DEFINE_BOXED_TYPE (PopplerTextAttributes, poppler_text_attributes, |
| poppler_text_attributes_copy, |
| poppler_text_attributes_free) |
| |
| /** |
| * poppler_text_attributes_new: |
| * |
| * Creates a new #PopplerTextAttributes |
| * |
| * Returns: a new #PopplerTextAttributes, use poppler_text_attributes_free() to free it |
| * |
| * Since: 0.18 |
| */ |
| PopplerTextAttributes * |
| poppler_text_attributes_new (void) |
| { |
| return (PopplerTextAttributes *) g_slice_new0 (PopplerTextAttributes); |
| } |
| |
| static gchar * |
| get_font_name_from_word (TextWord *word, gint word_i) |
| { |
| GooString *font_name = word->getFontName(word_i); |
| const gchar *name; |
| gboolean subset; |
| gint i; |
| |
| if (!font_name || font_name->getLength () == 0) |
| return g_strdup ("Default"); |
| |
| // check for a font subset name: capital letters followed by a '+' sign |
| for (i = 0; i < font_name->getLength (); ++i) { |
| if (font_name->getChar (i) < 'A' || font_name->getChar (i) > 'Z') { |
| break; |
| } |
| } |
| subset = i > 0 && i < font_name->getLength () && font_name->getChar (i) == '+'; |
| name = font_name->c_str (); |
| if (subset) |
| name += i + 1; |
| |
| return g_strdup (name); |
| } |
| |
| /* |
| * Allocates a new PopplerTextAttributes with word attributes |
| */ |
| static PopplerTextAttributes * |
| poppler_text_attributes_new_from_word (TextWord *word, gint i) |
| { |
| PopplerTextAttributes *attrs = poppler_text_attributes_new (); |
| gdouble r, g, b; |
| |
| attrs->font_name = get_font_name_from_word (word, i); |
| attrs->font_size = word->getFontSize(); |
| attrs->is_underlined = word->isUnderlined(); |
| word->getColor (&r, &g, &b); |
| attrs->color.red = (int) (r * 65535. + 0.5); |
| attrs->color.green = (int)(g * 65535. + 0.5); |
| attrs->color.blue = (int)(b * 65535. + 0.5); |
| |
| return attrs; |
| } |
| |
| /** |
| * poppler_text_attributes_copy: |
| * @text_attrs: a #PopplerTextAttributes to copy |
| * |
| * Creates a copy of @text_attrs |
| * |
| * Returns: a new allocated copy of @text_attrs |
| * |
| * Since: 0.18 |
| */ |
| PopplerTextAttributes * |
| poppler_text_attributes_copy (PopplerTextAttributes *text_attrs) |
| { |
| PopplerTextAttributes *attrs; |
| |
| attrs = g_slice_dup (PopplerTextAttributes, text_attrs); |
| attrs->font_name = g_strdup (text_attrs->font_name); |
| return attrs; |
| } |
| |
| /** |
| * poppler_text_attributes_free: |
| * @text_attrs: a #PopplerTextAttributes |
| * |
| * Frees the given #PopplerTextAttributes |
| * |
| * Since: 0.18 |
| */ |
| void |
| poppler_text_attributes_free (PopplerTextAttributes *text_attrs) |
| { |
| g_free (text_attrs->font_name); |
| g_slice_free (PopplerTextAttributes, text_attrs); |
| } |
| |
| /** |
| * SECTION:poppler-color |
| * @short_description: Colors |
| * @title: PopplerColor |
| */ |
| |
| /* PopplerColor type */ |
| POPPLER_DEFINE_BOXED_TYPE (PopplerColor, poppler_color, poppler_color_copy, poppler_color_free) |
| |
| /** |
| * poppler_color_new: |
| * |
| * Creates a new #PopplerColor |
| * |
| * Returns: a new #PopplerColor, use poppler_color_free() to free it |
| */ |
| PopplerColor * |
| poppler_color_new (void) |
| { |
| return (PopplerColor *) g_new0 (PopplerColor, 1); |
| } |
| |
| /** |
| * poppler_color_copy: |
| * @color: a #PopplerColor to copy |
| * |
| * Creates a copy of @color |
| * |
| * Returns: a new allocated copy of @color |
| */ |
| PopplerColor * |
| poppler_color_copy (PopplerColor *color) |
| { |
| PopplerColor *new_color; |
| |
| new_color = g_new (PopplerColor, 1); |
| *new_color = *color; |
| |
| return new_color; |
| } |
| |
| /** |
| * poppler_color_free: |
| * @color: a #PopplerColor |
| * |
| * Frees the given #PopplerColor |
| */ |
| void |
| poppler_color_free (PopplerColor *color) |
| { |
| g_free (color); |
| } |
| |
| /* PopplerLinkMapping type */ |
| POPPLER_DEFINE_BOXED_TYPE (PopplerLinkMapping, poppler_link_mapping, |
| poppler_link_mapping_copy, |
| poppler_link_mapping_free) |
| |
| /** |
| * poppler_link_mapping_new: |
| * |
| * Creates a new #PopplerLinkMapping |
| * |
| * Returns: a new #PopplerLinkMapping, use poppler_link_mapping_free() to free it |
| */ |
| PopplerLinkMapping * |
| poppler_link_mapping_new (void) |
| { |
| return g_slice_new0 (PopplerLinkMapping); |
| } |
| |
| /** |
| * poppler_link_mapping_copy: |
| * @mapping: a #PopplerLinkMapping to copy |
| * |
| * Creates a copy of @mapping |
| * |
| * Returns: a new allocated copy of @mapping |
| */ |
| PopplerLinkMapping * |
| poppler_link_mapping_copy (PopplerLinkMapping *mapping) |
| { |
| PopplerLinkMapping *new_mapping; |
| |
| new_mapping = g_slice_dup (PopplerLinkMapping, mapping); |
| |
| if (new_mapping->action) |
| new_mapping->action = poppler_action_copy (new_mapping->action); |
| |
| return new_mapping; |
| } |
| |
| /** |
| * poppler_link_mapping_free: |
| * @mapping: a #PopplerLinkMapping |
| * |
| * Frees the given #PopplerLinkMapping |
| */ |
| void |
| poppler_link_mapping_free (PopplerLinkMapping *mapping) |
| { |
| if (G_UNLIKELY (!mapping)) |
| return; |
| |
| if (mapping->action) |
| poppler_action_free (mapping->action); |
| |
| g_slice_free (PopplerLinkMapping, mapping); |
| } |
| |
| /* Poppler Image mapping type */ |
| POPPLER_DEFINE_BOXED_TYPE (PopplerImageMapping, poppler_image_mapping, |
| poppler_image_mapping_copy, |
| poppler_image_mapping_free) |
| |
| /** |
| * poppler_image_mapping_new: |
| * |
| * Creates a new #PopplerImageMapping |
| * |
| * Returns: a new #PopplerImageMapping, use poppler_image_mapping_free() to free it |
| */ |
| PopplerImageMapping * |
| poppler_image_mapping_new (void) |
| { |
| return g_slice_new0 (PopplerImageMapping); |
| } |
| |
| /** |
| * poppler_image_mapping_copy: |
| * @mapping: a #PopplerImageMapping to copy |
| * |
| * Creates a copy of @mapping |
| * |
| * Returns: a new allocated copy of @mapping |
| */ |
| PopplerImageMapping * |
| poppler_image_mapping_copy (PopplerImageMapping *mapping) |
| { |
| return g_slice_dup (PopplerImageMapping, mapping); |
| } |
| |
| /** |
| * poppler_image_mapping_free: |
| * @mapping: a #PopplerImageMapping |
| * |
| * Frees the given #PopplerImageMapping |
| */ |
| void |
| poppler_image_mapping_free (PopplerImageMapping *mapping) |
| { |
| g_slice_free (PopplerImageMapping, mapping); |
| } |
| |
| /* Page Transition */ |
| POPPLER_DEFINE_BOXED_TYPE (PopplerPageTransition, poppler_page_transition, |
| poppler_page_transition_copy, |
| poppler_page_transition_free) |
| |
| /** |
| * poppler_page_transition_new: |
| * |
| * Creates a new #PopplerPageTransition |
| * |
| * Returns: a new #PopplerPageTransition, use poppler_page_transition_free() to free it |
| */ |
| PopplerPageTransition * |
| poppler_page_transition_new (void) |
| { |
| return (PopplerPageTransition *) g_new0 (PopplerPageTransition, 1); |
| } |
| |
| /** |
| * poppler_page_transition_copy: |
| * @transition: a #PopplerPageTransition to copy |
| * |
| * Creates a copy of @transition |
| * |
| * Returns: a new allocated copy of @transition |
| */ |
| PopplerPageTransition * |
| poppler_page_transition_copy (PopplerPageTransition *transition) |
| { |
| PopplerPageTransition *new_transition; |
| |
| new_transition = poppler_page_transition_new (); |
| *new_transition = *transition; |
| |
| return new_transition; |
| } |
| |
| /** |
| * poppler_page_transition_free: |
| * @transition: a #PopplerPageTransition |
| * |
| * Frees the given #PopplerPageTransition |
| */ |
| void |
| poppler_page_transition_free (PopplerPageTransition *transition) |
| { |
| g_free (transition); |
| } |
| |
| /* Form Field Mapping Type */ |
| POPPLER_DEFINE_BOXED_TYPE (PopplerFormFieldMapping, poppler_form_field_mapping, |
| poppler_form_field_mapping_copy, |
| poppler_form_field_mapping_free) |
| |
| /** |
| * poppler_form_field_mapping_new: |
| * |
| * Creates a new #PopplerFormFieldMapping |
| * |
| * Returns: a new #PopplerFormFieldMapping, use poppler_form_field_mapping_free() to free it |
| */ |
| PopplerFormFieldMapping * |
| poppler_form_field_mapping_new (void) |
| { |
| return g_slice_new0 (PopplerFormFieldMapping); |
| } |
| |
| /** |
| * poppler_form_field_mapping_copy: |
| * @mapping: a #PopplerFormFieldMapping to copy |
| * |
| * Creates a copy of @mapping |
| * |
| * Returns: a new allocated copy of @mapping |
| */ |
| PopplerFormFieldMapping * |
| poppler_form_field_mapping_copy (PopplerFormFieldMapping *mapping) |
| { |
| PopplerFormFieldMapping *new_mapping; |
| |
| new_mapping = g_slice_dup (PopplerFormFieldMapping, mapping); |
| |
| if (mapping->field) |
| new_mapping->field = (PopplerFormField *)g_object_ref (mapping->field); |
| |
| return new_mapping; |
| } |
| |
| /** |
| * poppler_form_field_mapping_free: |
| * @mapping: a #PopplerFormFieldMapping |
| * |
| * Frees the given #PopplerFormFieldMapping |
| */ |
| void |
| poppler_form_field_mapping_free (PopplerFormFieldMapping *mapping) |
| { |
| if (G_UNLIKELY (!mapping)) |
| return; |
| |
| if (mapping->field) |
| g_object_unref (mapping->field); |
| |
| g_slice_free (PopplerFormFieldMapping, mapping); |
| } |
| |
| /* PopplerAnnot Mapping Type */ |
| POPPLER_DEFINE_BOXED_TYPE (PopplerAnnotMapping, poppler_annot_mapping, |
| poppler_annot_mapping_copy, |
| poppler_annot_mapping_free) |
| |
| /** |
| * poppler_annot_mapping_new: |
| * |
| * Creates a new #PopplerAnnotMapping |
| * |
| * Returns: a new #PopplerAnnotMapping, use poppler_annot_mapping_free() to free it |
| */ |
| PopplerAnnotMapping * |
| poppler_annot_mapping_new (void) |
| { |
| return g_slice_new0 (PopplerAnnotMapping); |
| } |
| |
| /** |
| * poppler_annot_mapping_copy: |
| * @mapping: a #PopplerAnnotMapping to copy |
| * |
| * Creates a copy of @mapping |
| * |
| * Returns: a new allocated copy of @mapping |
| */ |
| PopplerAnnotMapping * |
| poppler_annot_mapping_copy (PopplerAnnotMapping *mapping) |
| { |
| PopplerAnnotMapping *new_mapping; |
| |
| new_mapping = g_slice_dup (PopplerAnnotMapping, mapping); |
| |
| if (mapping->annot) |
| new_mapping->annot = (PopplerAnnot *) g_object_ref (mapping->annot); |
| |
| return new_mapping; |
| } |
| |
| /** |
| * poppler_annot_mapping_free: |
| * @mapping: a #PopplerAnnotMapping |
| * |
| * Frees the given #PopplerAnnotMapping |
| */ |
| void |
| poppler_annot_mapping_free (PopplerAnnotMapping *mapping) |
| { |
| if (G_UNLIKELY (!mapping)) |
| return; |
| |
| if (mapping->annot) |
| g_object_unref (mapping->annot); |
| |
| g_slice_free (PopplerAnnotMapping, mapping); |
| } |
| |
| /** |
| * poppler_page_get_crop_box: |
| * @page: a #PopplerPage |
| * @rect: (out): a #PopplerRectangle to fill |
| * |
| * Retrurns the crop box of @page |
| */ |
| void |
| poppler_page_get_crop_box (PopplerPage *page, PopplerRectangle *rect) |
| { |
| const PDFRectangle* cropBox = page->page->getCropBox (); |
| |
| rect->x1 = cropBox->x1; |
| rect->x2 = cropBox->x2; |
| rect->y1 = cropBox->y1; |
| rect->y2 = cropBox->y2; |
| } |
| |
| /** |
| * poppler_page_get_text_layout: |
| * @page: A #PopplerPage |
| * @rectangles: (out) (array length=n_rectangles) (transfer container): return location for an array of #PopplerRectangle |
| * @n_rectangles: (out): length of returned array |
| * |
| * Obtains the layout of the text as a list of #PopplerRectangle |
| * This array must be freed with g_free() when done. |
| * |
| * The position in the array represents an offset in the text returned by |
| * poppler_page_get_text() |
| * |
| * See also poppler_page_get_text_layout_for_area(). |
| * |
| * Return value: %TRUE if the page contains text, %FALSE otherwise |
| * |
| * Since: 0.16 |
| **/ |
| gboolean |
| poppler_page_get_text_layout (PopplerPage *page, |
| PopplerRectangle **rectangles, |
| guint *n_rectangles) |
| { |
| PopplerRectangle selection = {0, 0, 0, 0}; |
| |
| g_return_val_if_fail (POPPLER_IS_PAGE (page), FALSE); |
| |
| poppler_page_get_size (page, &selection.x2, &selection.y2); |
| |
| return poppler_page_get_text_layout_for_area (page, &selection, rectangles, n_rectangles); |
| } |
| |
| /** |
| * poppler_page_get_text_layout_for_area: |
| * @page: A #PopplerPage |
| * @area: a #PopplerRectangle |
| * @rectangles: (out) (array length=n_rectangles) (transfer container): return location for an array of #PopplerRectangle |
| * @n_rectangles: (out): length of returned array |
| * |
| * Obtains the layout of the text contained in @area as a list of #PopplerRectangle |
| * This array must be freed with g_free() when done. |
| * |
| * The position in the array represents an offset in the text returned by |
| * poppler_page_get_text_for_area() |
| * |
| * Return value: %TRUE if the page contains text, %FALSE otherwise |
| * |
| * Since: 0.26 |
| **/ |
| gboolean |
| poppler_page_get_text_layout_for_area (PopplerPage *page, |
| PopplerRectangle *area, |
| PopplerRectangle **rectangles, |
| guint *n_rectangles) |
| { |
| TextPage *text; |
| PopplerRectangle *rect; |
| PDFRectangle selection; |
| int i, k; |
| guint offset = 0; |
| guint n_rects = 0; |
| gdouble x1, y1, x2, y2; |
| gdouble x3, y3, x4, y4; |
| int n_lines; |
| |
| g_return_val_if_fail (POPPLER_IS_PAGE (page), FALSE); |
| g_return_val_if_fail (area != nullptr, FALSE); |
| |
| *n_rectangles = 0; |
| |
| selection.x1 = area->x1; |
| selection.y1 = area->y1; |
| selection.x2 = area->x2; |
| selection.y2 = area->y2; |
| |
| text = poppler_page_get_text_page (page); |
| std::vector<TextWordSelection*>** word_list = text->getSelectionWords (&selection, selectionStyleGlyph, &n_lines); |
| if (!word_list) |
| return FALSE; |
| |
| n_rects += n_lines - 1; |
| for (i = 0; i < n_lines; i++) |
| { |
| std::vector<TextWordSelection*> *line_words = word_list[i]; |
| n_rects += line_words->size() - 1; |
| for (std::size_t j = 0; j < line_words->size(); j++) |
| { |
| TextWordSelection *word_sel = (*line_words)[j]; |
| n_rects += word_sel->getEnd() - word_sel->getBegin(); |
| } |
| } |
| |
| *rectangles = g_new (PopplerRectangle, n_rects); |
| *n_rectangles = n_rects; |
| |
| for (i = 0; i < n_lines; i++) |
| { |
| std::vector<TextWordSelection*> *line_words = word_list[i]; |
| for (std::size_t j = 0; j < line_words->size(); j++) |
| { |
| TextWordSelection *word_sel = (*line_words)[j]; |
| TextWord *word = word_sel->getWord(); |
| int end = word_sel->getEnd(); |
| |
| for (k = word_sel->getBegin(); k < end; k++) |
| { |
| rect = *rectangles + offset; |
| word->getCharBBox (k, |
| &(rect->x1), |
| &(rect->y1), |
| &(rect->x2), |
| &(rect->y2)); |
| offset++; |
| } |
| |
| rect = *rectangles + offset; |
| word->getBBox (&x1, &y1, &x2, &y2); |
| |
| if (j < line_words->size() - 1) |
| { |
| TextWordSelection *next_word_sel = (*line_words)[j + 1]; |
| |
| next_word_sel->getWord()->getBBox(&x3, &y3, &x4, &y4); |
| // space is from one word to other and with the same height as |
| // first word. |
| rect->x1 = x2; |
| rect->y1 = y1; |
| rect->x2 = x3; |
| rect->y2 = y2; |
| offset++; |
| } |
| |
| delete word_sel; |
| } |
| |
| if (i < n_lines - 1 && offset > 0) |
| { |
| // end of line |
| rect->x1 = x2; |
| rect->y1 = y2; |
| rect->x2 = x2; |
| rect->y2 = y2; |
| offset++; |
| } |
| |
| delete line_words; |
| } |
| |
| gfree (word_list); |
| |
| return TRUE; |
| } |
| |
| /** |
| * poppler_page_free_text_attributes: |
| * @list: (element-type PopplerTextAttributes): A list of |
| * #PopplerTextAttributes<!-- -->s |
| * |
| * Frees a list of #PopplerTextAttributes<!-- -->s allocated by |
| * poppler_page_get_text_attributes(). |
| * |
| * Since: 0.18 |
| **/ |
| void |
| poppler_page_free_text_attributes (GList *list) |
| { |
| if (G_UNLIKELY (list == nullptr)) |
| return; |
| |
| g_list_foreach (list, (GFunc)poppler_text_attributes_free, nullptr); |
| g_list_free (list); |
| } |
| |
| static gboolean |
| word_text_attributes_equal (TextWord *a, gint ai, TextWord *b, gint bi) |
| { |
| double ar, ag, ab, br, bg, bb; |
| |
| if (!a->getFontInfo(ai)->matches (b->getFontInfo(bi))) |
| return FALSE; |
| |
| if (a->getFontSize() != b->getFontSize()) |
| return FALSE; |
| |
| if (a->isUnderlined() != b->isUnderlined()) |
| return FALSE; |
| |
| a->getColor(&ar, &ag, &ab); |
| b->getColor(&br, &bg, &bb); |
| return (ar == br && ag == bg && ab == bb); |
| } |
| |
| /** |
| * poppler_page_get_text_attributes: |
| * @page: A #PopplerPage |
| * |
| * Obtains the attributes of the text as a #GList of #PopplerTextAttributes. |
| * This list must be freed with poppler_page_free_text_attributes() when done. |
| * |
| * Each list element is a #PopplerTextAttributes struct where start_index and |
| * end_index indicates the range of text (as returned by poppler_page_get_text()) |
| * to which text attributes apply. |
| * |
| * See also poppler_page_get_text_attributes_for_area() |
| * |
| * Return value: (element-type PopplerTextAttributes) (transfer full): A #GList of #PopplerTextAttributes |
| * |
| * Since: 0.18 |
| **/ |
| GList * |
| poppler_page_get_text_attributes (PopplerPage *page) |
| { |
| PopplerRectangle selection = {0, 0, 0, 0}; |
| |
| g_return_val_if_fail (POPPLER_IS_PAGE (page), NULL); |
| |
| poppler_page_get_size (page, &selection.x2, &selection.y2); |
| |
| return poppler_page_get_text_attributes_for_area (page, &selection); |
| } |
| |
| /** |
| * poppler_page_get_text_attributes_for_area: |
| * @page: A #PopplerPage |
| * @area: a #PopplerRectangle |
| * |
| * Obtains the attributes of the text in @area as a #GList of #PopplerTextAttributes. |
| * This list must be freed with poppler_page_free_text_attributes() when done. |
| * |
| * Each list element is a #PopplerTextAttributes struct where start_index and |
| * end_index indicates the range of text (as returned by poppler_page_get_text_for_area()) |
| * to which text attributes apply. |
| * |
| * Return value: (element-type PopplerTextAttributes) (transfer full): A #GList of #PopplerTextAttributes |
| * |
| * Since: 0.26 |
| **/ |
| GList * |
| poppler_page_get_text_attributes_for_area (PopplerPage *page, |
| PopplerRectangle *area) |
| { |
| TextPage *text; |
| PDFRectangle selection; |
| int n_lines; |
| PopplerTextAttributes *attrs = nullptr; |
| TextWord *word, *prev_word = nullptr; |
| gint word_i, prev_word_i; |
| gint i; |
| gint offset = 0; |
| GList *attributes = nullptr; |
| |
| g_return_val_if_fail (POPPLER_IS_PAGE (page), NULL); |
| g_return_val_if_fail (area != nullptr, FALSE); |
| |
| selection.x1 = area->x1; |
| selection.y1 = area->y1; |
| selection.x2 = area->x2; |
| selection.y2 = area->y2; |
| |
| text = poppler_page_get_text_page (page); |
| std::vector<TextWordSelection*>** word_list = text->getSelectionWords (&selection, selectionStyleGlyph, &n_lines); |
| if (!word_list) |
| return nullptr; |
| |
| for (i = 0; i < n_lines; i++) |
| { |
| std::vector<TextWordSelection*> *line_words = word_list[i]; |
| for (std::size_t j = 0; j < line_words->size(); j++) |
| { |
| TextWordSelection *word_sel = (*line_words)[j]; |
| int end = word_sel->getEnd(); |
| |
| word = word_sel->getWord(); |
| |
| for (word_i = word_sel->getBegin(); word_i < end; word_i++) |
| { |
| if (!prev_word || !word_text_attributes_equal (word, word_i, prev_word, prev_word_i)) |
| { |
| attrs = poppler_text_attributes_new_from_word (word, word_i); |
| attrs->start_index = offset; |
| attributes = g_list_prepend (attributes, attrs); |
| } |
| attrs->end_index = offset; |
| offset++; |
| prev_word = word; |
| prev_word_i = word_i; |
| } |
| |
| if (j < line_words->size() - 1) |
| { |
| attrs->end_index = offset; |
| offset++; |
| } |
| |
| delete word_sel; |
| } |
| |
| if (i < n_lines - 1) |
| { |
| attrs->end_index = offset; |
| offset++; |
| } |
| |
| delete line_words; |
| } |
| |
| gfree (word_list); |
| |
| return g_list_reverse(attributes); |
| } |