blob: 81b89a8c56b765e0243831c71c989aa319ea3d51 [file] [log] [blame]
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "pdf/pdfium/pdfium_page.h"
#include <math.h>
#include <stddef.h>
#include <algorithm>
#include <memory>
#include <utility>
#include "base/bind.h"
#include "base/callback.h"
#include "base/check_op.h"
#include "base/metrics/histogram_functions.h"
#include "base/notreached.h"
#include "base/numerics/math_constants.h"
#include "base/numerics/safe_math.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
#include "pdf/pdfium/pdfium_api_string_buffer_adapter.h"
#include "pdf/pdfium/pdfium_engine.h"
#include "pdf/pdfium/pdfium_unsupported_features.h"
#include "pdf/ppapi_migration/geometry_conversions.h"
#include "pdf/thumbnail.h"
#include "ppapi/c/private/ppb_pdf.h"
#include "printing/units.h"
#include "third_party/pdfium/public/cpp/fpdf_scopers.h"
#include "third_party/pdfium/public/fpdf_annot.h"
#include "third_party/pdfium/public/fpdf_catalog.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "ui/gfx/geometry/point.h"
#include "ui/gfx/geometry/point_f.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/gfx/geometry/rect_f.h"
#include "ui/gfx/geometry/size_f.h"
#include "ui/gfx/geometry/vector2d.h"
#include "ui/gfx/geometry/vector2d_f.h"
#include "ui/gfx/range/range.h"
using printing::ConvertUnitDouble;
using printing::kPixelsPerInch;
using printing::kPointsPerInch;
namespace chrome_pdf {
namespace {
constexpr float k45DegreesInRadians = base::kPiFloat / 4;
constexpr float k90DegreesInRadians = base::kPiFloat / 2;
constexpr float k180DegreesInRadians = base::kPiFloat;
constexpr float k270DegreesInRadians = 3 * base::kPiFloat / 2;
constexpr float k360DegreesInRadians = 2 * base::kPiFloat;
gfx::RectF FloatPageRectToPixelRect(FPDF_PAGE page, const gfx::RectF& input) {
int output_width = FPDF_GetPageWidthF(page);
int output_height = FPDF_GetPageHeightF(page);
int min_x;
int min_y;
int max_x;
int max_y;
if (!FPDF_PageToDevice(page, 0, 0, output_width, output_height, 0, input.x(),
input.y(), &min_x, &min_y)) {
return gfx::RectF();
}
if (!FPDF_PageToDevice(page, 0, 0, output_width, output_height, 0,
input.right(), input.bottom(), &max_x, &max_y)) {
return gfx::RectF();
}
if (max_x < min_x)
std::swap(min_x, max_x);
if (max_y < min_y)
std::swap(min_y, max_y);
// Make sure small but non-zero dimensions for |input| does not get rounded
// down to 0.
int width = max_x - min_x;
int height = max_y - min_y;
if (width == 0 && input.width())
width = 1;
if (height == 0 && input.height())
height = 1;
gfx::RectF output_rect(
ConvertUnitDouble(min_x, kPointsPerInch, kPixelsPerInch),
ConvertUnitDouble(min_y, kPointsPerInch, kPixelsPerInch),
ConvertUnitDouble(width, kPointsPerInch, kPixelsPerInch),
ConvertUnitDouble(height, kPointsPerInch, kPixelsPerInch));
return output_rect;
}
gfx::RectF GetFloatCharRectInPixels(FPDF_PAGE page,
FPDF_TEXTPAGE text_page,
int index) {
double left;
double right;
double bottom;
double top;
if (!FPDFText_GetCharBox(text_page, index, &left, &right, &bottom, &top))
return gfx::RectF();
if (right < left)
std::swap(left, right);
if (bottom < top)
std::swap(top, bottom);
gfx::RectF page_coords(left, top, right - left, bottom - top);
return FloatPageRectToPixelRect(page, page_coords);
}
int GetFirstNonUnicodeWhiteSpaceCharIndex(FPDF_TEXTPAGE text_page,
int start_char_index,
int chars_count) {
int i = start_char_index;
while (i < chars_count &&
base::IsUnicodeWhitespace(FPDFText_GetUnicode(text_page, i))) {
i++;
}
return i;
}
PP_PrivateDirection GetDirectionFromAngle(float angle) {
// Rotating the angle by 45 degrees to simplify the conditions statements.
// It's like if we rotated the whole cartesian coordinate system like below.
// X X
// X IV X
// X X
// X X
// X X
// III X I
// X X
// X X
// X X
// X II X
// X X
angle = fmodf(angle + k45DegreesInRadians, k360DegreesInRadians);
// Quadrant I.
if (angle >= 0 && angle <= k90DegreesInRadians)
return PP_PRIVATEDIRECTION_LTR;
// Quadrant II.
if (angle > k90DegreesInRadians && angle <= k180DegreesInRadians)
return PP_PRIVATEDIRECTION_TTB;
// Quadrant III.
if (angle > k180DegreesInRadians && angle <= k270DegreesInRadians)
return PP_PRIVATEDIRECTION_RTL;
// Quadrant IV.
return PP_PRIVATEDIRECTION_BTT;
}
void AddCharSizeToAverageCharSize(gfx::SizeF new_size,
gfx::SizeF* avg_size,
int* count) {
// Some characters sometimes have a bogus empty bounding box. We don't want
// them to impact the average.
if (!new_size.IsEmpty()) {
avg_size->set_width((avg_size->width() * *count + new_size.width()) /
(*count + 1));
avg_size->set_height((avg_size->height() * *count + new_size.height()) /
(*count + 1));
(*count)++;
}
}
float GetRotatedCharWidth(float angle, const gfx::SizeF& size) {
return fabsf(cosf(angle) * size.width()) + fabsf(sinf(angle) * size.height());
}
float GetAngleOfVector(const gfx::Vector2dF& v) {
float angle = atan2f(v.y(), v.x());
if (angle < 0)
angle += k360DegreesInRadians;
return angle;
}
float GetAngleDifference(float a, float b) {
// This is either the difference or (360 - difference).
float x = fmodf(fabsf(b - a), k360DegreesInRadians);
return x > k180DegreesInRadians ? k360DegreesInRadians - x : x;
}
bool FloatEquals(float f1, float f2) {
// The idea behind this is to use this fraction of the larger of the
// two numbers as the limit of the difference. This breaks down near
// zero, so we reuse this as the minimum absolute size we will use
// for the base of the scale too.
static constexpr float kEpsilonScale = 0.00001f;
return fabsf(f1 - f2) <
kEpsilonScale * fmaxf(fmaxf(fabsf(f1), fabsf(f2)), kEpsilonScale);
}
// Count overlaps across text annotations.
template <typename T, typename U>
uint32_t CountOverlaps(const std::vector<T>& first_set,
const std::vector<U>& second_set) {
// This method assumes vectors passed are sorted by |start_char_index|.
uint32_t overlaps = 0;
// Count overlaps between |first_set| and |second_set|.
for (const auto& first_set_object : first_set) {
gfx::Range first_range(
first_set_object.start_char_index,
first_set_object.start_char_index + first_set_object.char_count);
for (const auto& second_set_object : second_set) {
gfx::Range second_range(
second_set_object.start_char_index,
second_set_object.start_char_index + second_set_object.char_count);
if (first_range.Intersects(second_range)) {
overlaps++;
} else if (first_range.start() < second_range.start()) {
// Both range vectors are sorted by |start_char_index|. In case they
// don't overlap, and the |second_range| starts after the |first_range|,
// then all successive |second_set_object| will not overlap with
// |first_range|.
break;
}
}
}
return overlaps;
}
// Count overlaps within text annotations.
template <typename T>
uint32_t CountInternalTextOverlaps(const std::vector<T>& text_objects) {
// This method assumes text_objects is sorted by |start_char_index|.
uint32_t overlaps = 0;
for (size_t i = 0; i < text_objects.size(); ++i) {
gfx::Range range1(
text_objects[i].start_char_index,
text_objects[i].start_char_index + text_objects[i].char_count);
for (size_t j = i + 1; j < text_objects.size(); ++j) {
DCHECK_GE(text_objects[j].start_char_index,
text_objects[i].start_char_index);
gfx::Range range2(
text_objects[j].start_char_index,
text_objects[j].start_char_index + text_objects[j].char_count);
if (range1.Intersects(range2)) {
overlaps++;
} else {
// The input is sorted by |start_char_index|. In case |range1| and
// |range2| do not overlap, and |range2| starts after |range1|, then
// successive ranges in the inner loop will also not overlap with
// |range1|.
break;
}
}
}
return overlaps;
}
bool IsRadioButtonOrCheckBox(int button_type) {
return button_type == FPDF_FORMFIELD_CHECKBOX ||
button_type == FPDF_FORMFIELD_RADIOBUTTON;
}
} // namespace
PDFiumPage::LinkTarget::LinkTarget() : page(-1) {}
PDFiumPage::LinkTarget::LinkTarget(const LinkTarget& other) = default;
PDFiumPage::LinkTarget::~LinkTarget() = default;
PDFiumPage::PDFiumPage(PDFiumEngine* engine, int i)
: engine_(engine), index_(i), available_(false) {}
PDFiumPage::PDFiumPage(PDFiumPage&& that) = default;
PDFiumPage::~PDFiumPage() {
DCHECK_EQ(0, preventing_unload_count_);
}
void PDFiumPage::Unload() {
// Do not unload while in the middle of a load.
if (preventing_unload_count_)
return;
text_page_.reset();
if (page_) {
if (engine_->form()) {
FORM_OnBeforeClosePage(page(), engine_->form());
}
page_.reset();
}
}
FPDF_PAGE PDFiumPage::GetPage() {
ScopedUnsupportedFeature scoped_unsupported_feature(engine_);
if (!available_)
return nullptr;
if (!page_) {
ScopedUnloadPreventer scoped_unload_preventer(this);
page_.reset(FPDF_LoadPage(engine_->doc(), index_));
if (page_ && engine_->form()) {
FORM_OnAfterLoadPage(page(), engine_->form());
}
}
return page();
}
FPDF_TEXTPAGE PDFiumPage::GetTextPage() {
if (!available_)
return nullptr;
if (!text_page_) {
ScopedUnloadPreventer scoped_unload_preventer(this);
text_page_.reset(FPDFText_LoadPage(GetPage()));
}
return text_page();
}
void PDFiumPage::CalculatePageObjectTextRunBreaks() {
if (calculated_page_object_text_run_breaks_)
return;
calculated_page_object_text_run_breaks_ = true;
int chars_count = FPDFText_CountChars(GetTextPage());
if (chars_count == 0)
return;
CalculateLinks();
for (const auto& link : links_) {
if (link.start_char_index >= 0 && link.start_char_index < chars_count) {
page_object_text_run_breaks_.insert(link.start_char_index);
int next_text_run_break_index = link.start_char_index + link.char_count;
// Don't insert a break if the link is at the end of the page text.
if (next_text_run_break_index < chars_count) {
page_object_text_run_breaks_.insert(next_text_run_break_index);
}
}
}
PopulateAnnotations();
for (const auto& highlight : highlights_) {
if (highlight.start_char_index >= 0 &&
highlight.start_char_index < chars_count) {
page_object_text_run_breaks_.insert(highlight.start_char_index);
int next_text_run_break_index =
highlight.start_char_index + highlight.char_count;
// Don't insert a break if the highlight is at the end of the page text.
if (next_text_run_break_index < chars_count) {
page_object_text_run_breaks_.insert(next_text_run_break_index);
}
}
}
}
void PDFiumPage::CalculateTextRunStyleInfo(
int char_index,
pp::PDF::PrivateAccessibilityTextStyleInfo* style_info) {
FPDF_TEXTPAGE text_page = GetTextPage();
style_info->font_size = FPDFText_GetFontSize(text_page, char_index);
int flags = 0;
size_t buffer_size =
FPDFText_GetFontInfo(text_page, char_index, nullptr, 0, &flags);
if (buffer_size > 0) {
PDFiumAPIStringBufferAdapter<std::string> api_string_adapter(
&style_info->font_name, buffer_size, true);
void* data = api_string_adapter.GetData();
size_t bytes_written =
FPDFText_GetFontInfo(text_page, char_index, data, buffer_size, nullptr);
// Trim the null character.
api_string_adapter.Close(bytes_written);
}
style_info->font_weight = FPDFText_GetFontWeight(text_page, char_index);
// As defined in PDF 1.7 table 5.20.
constexpr int kFlagItalic = (1 << 6);
// Bold text is considered bold when greater than or equal to 700.
constexpr int kStandardBoldValue = 700;
style_info->is_italic = (flags & kFlagItalic);
style_info->is_bold = style_info->font_weight >= kStandardBoldValue;
unsigned int fill_r;
unsigned int fill_g;
unsigned int fill_b;
unsigned int fill_a;
if (FPDFText_GetFillColor(text_page, char_index, &fill_r, &fill_g, &fill_b,
&fill_a)) {
style_info->fill_color = MakeARGB(fill_a, fill_r, fill_g, fill_b);
} else {
style_info->fill_color = MakeARGB(0xff, 0, 0, 0);
}
unsigned int stroke_r;
unsigned int stroke_g;
unsigned int stroke_b;
unsigned int stroke_a;
if (FPDFText_GetStrokeColor(text_page, char_index, &stroke_r, &stroke_g,
&stroke_b, &stroke_a)) {
style_info->stroke_color = MakeARGB(stroke_a, stroke_r, stroke_g, stroke_b);
} else {
style_info->stroke_color = MakeARGB(0xff, 0, 0, 0);
}
int render_mode = FPDFText_GetTextRenderMode(text_page, char_index);
if (render_mode < 0 || render_mode > PP_TEXTRENDERINGMODE_LAST) {
style_info->render_mode = PP_TEXTRENDERINGMODE_UNKNOWN;
} else {
style_info->render_mode = static_cast<PP_TextRenderingMode>(render_mode);
}
}
bool PDFiumPage::AreTextStyleEqual(
int char_index,
const pp::PDF::PrivateAccessibilityTextStyleInfo& style) {
pp::PDF::PrivateAccessibilityTextStyleInfo char_style;
CalculateTextRunStyleInfo(char_index, &char_style);
return char_style.font_name == style.font_name &&
char_style.font_weight == style.font_weight &&
char_style.render_mode == style.render_mode &&
FloatEquals(char_style.font_size, style.font_size) &&
char_style.fill_color == style.fill_color &&
char_style.stroke_color == style.stroke_color &&
char_style.is_italic == style.is_italic &&
char_style.is_bold == style.is_bold;
}
void PDFiumPage::LogOverlappingAnnotations() {
if (logged_overlapping_annotations_)
return;
logged_overlapping_annotations_ = true;
DCHECK(calculated_page_object_text_run_breaks_);
std::vector<Link> links = links_;
std::sort(links.begin(), links.end(), [](const Link& a, const Link& b) {
return a.start_char_index < b.start_char_index;
});
uint32_t overlap_count = CountLinkHighlightOverlaps(links, highlights_);
// We log this overlap count per page of the PDF. Typically we expect only a
// few overlaps because intersecting links/highlights are not that common.
base::UmaHistogramCustomCounts("PDF.LinkHighlightOverlapsInPage",
overlap_count, 1, 100, 50);
}
base::Optional<pp::PDF::PrivateAccessibilityTextRunInfo>
PDFiumPage::GetTextRunInfo(int start_char_index) {
FPDF_PAGE page = GetPage();
FPDF_TEXTPAGE text_page = GetTextPage();
int chars_count = FPDFText_CountChars(text_page);
// Check to make sure |start_char_index| is within bounds.
if (start_char_index < 0 || start_char_index >= chars_count)
return base::nullopt;
int actual_start_char_index = GetFirstNonUnicodeWhiteSpaceCharIndex(
text_page, start_char_index, chars_count);
// Check to see if GetFirstNonUnicodeWhiteSpaceCharIndex() iterated through
// all the characters.
if (actual_start_char_index >= chars_count) {
// If so, |info.len| needs to take the number of characters
// iterated into account.
DCHECK_GT(actual_start_char_index, start_char_index);
pp::PDF::PrivateAccessibilityTextRunInfo info;
info.len = chars_count - start_char_index;
info.bounds = pp::FloatRect();
info.direction = PP_PRIVATEDIRECTION_NONE;
return info;
}
// If the first character in a text run is a space, we need to start
// |text_run_bounds| from the space character instead of the first
// non-space unicode character.
gfx::RectF text_run_bounds =
actual_start_char_index > start_char_index
? GetFloatCharRectInPixels(page, text_page, start_char_index)
: gfx::RectF();
// Pdfium trims more than 1 consecutive spaces to 1 space.
DCHECK_LE(actual_start_char_index - start_char_index, 1);
int char_index = actual_start_char_index;
// Set text run's style info from the first character of the text run.
pp::PDF::PrivateAccessibilityTextRunInfo info;
CalculateTextRunStyleInfo(char_index, &info.style);
gfx::RectF start_char_rect =
GetFloatCharRectInPixels(page, text_page, char_index);
float text_run_font_size = info.style.font_size;
// Heuristic: Initialize the average character size to one-third of the font
// size to avoid having the first few characters misrepresent the average.
// Without it, if a text run starts with a '.', its small bounding box could
// lead to a break in the text run after only one space. Ex: ". Hello World"
// would be split in two runs: "." and "Hello World".
double font_size_minimum = FPDFText_GetFontSize(text_page, char_index) / 3.0;
gfx::SizeF avg_char_size(font_size_minimum, font_size_minimum);
int non_whitespace_chars_count = 1;
AddCharSizeToAverageCharSize(start_char_rect.size(), &avg_char_size,
&non_whitespace_chars_count);
// Add first non-space char to text run.
text_run_bounds.Union(start_char_rect);
PP_PrivateDirection char_direction =
GetDirectionFromAngle(FPDFText_GetCharAngle(text_page, char_index));
if (char_index < chars_count)
char_index++;
gfx::RectF prev_char_rect = start_char_rect;
float estimated_font_size =
std::max(start_char_rect.width(), start_char_rect.height());
// The angle of the vector starting at the first character center-point and
// ending at the current last character center-point.
float text_run_angle = 0;
CalculatePageObjectTextRunBreaks();
const auto breakpoint_iter =
std::lower_bound(page_object_text_run_breaks_.begin(),
page_object_text_run_breaks_.end(), char_index);
int breakpoint_index = breakpoint_iter != page_object_text_run_breaks_.end()
? *breakpoint_iter
: -1;
// Continue adding characters until heuristics indicate we should end the text
// run.
while (char_index < chars_count) {
// Split a text run when it encounters a page object like links or images.
if (char_index == breakpoint_index)
break;
unsigned int character = FPDFText_GetUnicode(text_page, char_index);
gfx::RectF char_rect =
GetFloatCharRectInPixels(page, text_page, char_index);
if (!base::IsUnicodeWhitespace(character)) {
// Heuristic: End the text run if the text style of the current character
// is different from the text run's style.
if (!AreTextStyleEqual(char_index, info.style))
break;
// Heuristic: End text run if character isn't going in the same direction.
if (char_direction !=
GetDirectionFromAngle(FPDFText_GetCharAngle(text_page, char_index)))
break;
// Heuristic: End the text run if the difference between the text run
// angle and the angle between the center-points of the previous and
// current characters is greater than 90 degrees.
float current_angle = GetAngleOfVector(char_rect.CenterPoint() -
prev_char_rect.CenterPoint());
if (start_char_rect != prev_char_rect) {
text_run_angle = GetAngleOfVector(prev_char_rect.CenterPoint() -
start_char_rect.CenterPoint());
if (GetAngleDifference(text_run_angle, current_angle) >
k90DegreesInRadians) {
break;
}
}
// Heuristic: End the text run if the center-point distance to the
// previous character is less than 2.5x the average character size.
AddCharSizeToAverageCharSize(char_rect.size(), &avg_char_size,
&non_whitespace_chars_count);
float avg_char_width = GetRotatedCharWidth(current_angle, avg_char_size);
float distance =
(char_rect.CenterPoint() - prev_char_rect.CenterPoint()).Length() -
GetRotatedCharWidth(current_angle, char_rect.size()) / 2 -
GetRotatedCharWidth(current_angle, prev_char_rect.size()) / 2;
if (distance > 2.5f * avg_char_width)
break;
text_run_bounds.Union(char_rect);
prev_char_rect = char_rect;
}
if (!char_rect.IsEmpty()) {
// Update the estimated font size if needed.
float char_largest_side = std::max(char_rect.height(), char_rect.width());
estimated_font_size = std::max(char_largest_side, estimated_font_size);
}
char_index++;
}
// Some PDFs have missing or obviously bogus font sizes; substitute the
// font size by the width or height (whichever's the largest) of the bigger
// character in the current text run.
if (text_run_font_size <= 1 || text_run_font_size < estimated_font_size / 2 ||
text_run_font_size > estimated_font_size * 2) {
text_run_font_size = estimated_font_size;
}
info.len = char_index - start_char_index;
info.style.font_size = text_run_font_size;
info.bounds = PPFloatRectFromRectF(text_run_bounds);
// Infer text direction from first and last character of the text run. We
// can't base our decision on the character direction, since a character of a
// RTL language will have an angle of 0 when not rotated, just like a
// character in a LTR language.
info.direction = char_index - actual_start_char_index > 1
? GetDirectionFromAngle(text_run_angle)
: PP_PRIVATEDIRECTION_NONE;
return info;
}
uint32_t PDFiumPage::GetCharUnicode(int char_index) {
FPDF_TEXTPAGE text_page = GetTextPage();
return FPDFText_GetUnicode(text_page, char_index);
}
gfx::RectF PDFiumPage::GetCharBounds(int char_index) {
FPDF_PAGE page = GetPage();
FPDF_TEXTPAGE text_page = GetTextPage();
return GetFloatCharRectInPixels(page, text_page, char_index);
}
std::vector<PDFEngine::AccessibilityLinkInfo> PDFiumPage::GetLinkInfo() {
std::vector<PDFEngine::AccessibilityLinkInfo> link_info;
if (!available_)
return link_info;
CalculateLinks();
link_info.reserve(links_.size());
for (const Link& link : links_) {
PDFEngine::AccessibilityLinkInfo cur_info;
cur_info.url = link.target.url;
cur_info.start_char_index = link.start_char_index;
cur_info.char_count = link.char_count;
gfx::Rect link_rect;
for (const auto& rect : link.bounding_rects)
link_rect.Union(rect);
cur_info.bounds = gfx::RectF(link_rect.x(), link_rect.y(),
link_rect.width(), link_rect.height());
link_info.push_back(std::move(cur_info));
}
return link_info;
}
std::vector<PDFEngine::AccessibilityImageInfo> PDFiumPage::GetImageInfo() {
std::vector<PDFEngine::AccessibilityImageInfo> image_info;
if (!available_)
return image_info;
CalculateImages();
image_info.reserve(images_.size());
for (const Image& image : images_) {
PDFEngine::AccessibilityImageInfo cur_info;
cur_info.alt_text = image.alt_text;
cur_info.bounds =
gfx::RectF(image.bounding_rect.x(), image.bounding_rect.y(),
image.bounding_rect.width(), image.bounding_rect.height());
image_info.push_back(std::move(cur_info));
}
return image_info;
}
std::vector<PDFEngine::AccessibilityHighlightInfo>
PDFiumPage::GetHighlightInfo() {
std::vector<PDFEngine::AccessibilityHighlightInfo> highlight_info;
if (!available_)
return highlight_info;
PopulateAnnotations();
highlight_info.reserve(highlights_.size());
for (const Highlight& highlight : highlights_) {
PDFEngine::AccessibilityHighlightInfo cur_info;
cur_info.start_char_index = highlight.start_char_index;
cur_info.char_count = highlight.char_count;
cur_info.bounds = gfx::RectF(
highlight.bounding_rect.x(), highlight.bounding_rect.y(),
highlight.bounding_rect.width(), highlight.bounding_rect.height());
cur_info.color = highlight.color;
cur_info.note_text = highlight.note_text;
highlight_info.push_back(std::move(cur_info));
}
return highlight_info;
}
std::vector<PDFEngine::AccessibilityTextFieldInfo>
PDFiumPage::GetTextFieldInfo() {
std::vector<PDFEngine::AccessibilityTextFieldInfo> text_field_info;
if (!available_)
return text_field_info;
PopulateAnnotations();
text_field_info.reserve(text_fields_.size());
for (const TextField& text_field : text_fields_) {
PDFEngine::AccessibilityTextFieldInfo cur_info;
cur_info.name = text_field.name;
cur_info.value = text_field.value;
cur_info.is_read_only = !!(text_field.flags & FPDF_FORMFLAG_READONLY);
cur_info.is_required = !!(text_field.flags & FPDF_FORMFLAG_REQUIRED);
cur_info.is_password = !!(text_field.flags & FPDF_FORMFLAG_TEXT_PASSWORD);
cur_info.bounds = gfx::RectF(
text_field.bounding_rect.x(), text_field.bounding_rect.y(),
text_field.bounding_rect.width(), text_field.bounding_rect.height());
text_field_info.push_back(std::move(cur_info));
}
return text_field_info;
}
PDFiumPage::Area PDFiumPage::GetLinkTargetAtIndex(int link_index,
LinkTarget* target) {
if (!available_ || link_index < 0)
return NONSELECTABLE_AREA;
CalculateLinks();
if (link_index >= static_cast<int>(links_.size()))
return NONSELECTABLE_AREA;
*target = links_[link_index].target;
return target->url.empty() ? DOCLINK_AREA : WEBLINK_AREA;
}
PDFiumPage::Area PDFiumPage::GetLinkTarget(FPDF_LINK link, LinkTarget* target) {
FPDF_DEST dest_link = FPDFLink_GetDest(engine_->doc(), link);
if (dest_link)
return GetDestinationTarget(dest_link, target);
FPDF_ACTION action = FPDFLink_GetAction(link);
if (!action)
return NONSELECTABLE_AREA;
switch (FPDFAction_GetType(action)) {
case PDFACTION_GOTO: {
FPDF_DEST dest_action = FPDFAction_GetDest(engine_->doc(), action);
if (dest_action)
return GetDestinationTarget(dest_action, target);
// TODO(crbug.com/55776): We don't fully support all types of the
// in-document links.
return NONSELECTABLE_AREA;
}
case PDFACTION_URI:
return GetURITarget(action, target);
// TODO(crbug.com/767191): Support PDFACTION_LAUNCH.
// TODO(crbug.com/142344): Support PDFACTION_REMOTEGOTO.
case PDFACTION_LAUNCH:
case PDFACTION_REMOTEGOTO:
default:
return NONSELECTABLE_AREA;
}
}
PDFiumPage::Area PDFiumPage::GetCharIndex(const gfx::Point& point,
PageOrientation orientation,
int* char_index,
int* form_type,
LinkTarget* target) {
if (!available_)
return NONSELECTABLE_AREA;
gfx::Point device_point = point - rect_.OffsetFromOrigin();
double new_x;
double new_y;
FPDF_BOOL ret =
FPDF_DeviceToPage(GetPage(), 0, 0, rect_.width(), rect_.height(),
ToPDFiumRotation(orientation), device_point.x(),
device_point.y(), &new_x, &new_y);
DCHECK(ret);
// hit detection tolerance, in points.
constexpr double kTolerance = 20.0;
int rv = FPDFText_GetCharIndexAtPos(GetTextPage(), new_x, new_y, kTolerance,
kTolerance);
*char_index = rv;
FPDF_LINK link = FPDFLink_GetLinkAtPoint(GetPage(), new_x, new_y);
int control =
FPDFPage_HasFormFieldAtPoint(engine_->form(), GetPage(), new_x, new_y);
// If there is a control and link at the same point, figure out their z-order
// to determine which is on top.
if (link && control > FPDF_FORMFIELD_UNKNOWN) {
int control_z_order = FPDFPage_FormFieldZOrderAtPoint(
engine_->form(), GetPage(), new_x, new_y);
int link_z_order = FPDFLink_GetLinkZOrderAtPoint(GetPage(), new_x, new_y);
DCHECK_NE(control_z_order, link_z_order);
if (control_z_order > link_z_order) {
*form_type = control;
return FormTypeToArea(*form_type);
}
// We don't handle all possible link types of the PDF. For example,
// launch actions, cross-document links, etc.
// In that case, GetLinkTarget() will return NONSELECTABLE_AREA
// and we should proceed with area detection.
Area area = GetLinkTarget(link, target);
if (area != NONSELECTABLE_AREA)
return area;
} else if (link) {
// We don't handle all possible link types of the PDF. For example,
// launch actions, cross-document links, etc.
// See identical block above.
Area area = GetLinkTarget(link, target);
if (area != NONSELECTABLE_AREA)
return area;
} else if (control > FPDF_FORMFIELD_UNKNOWN) {
*form_type = control;
return FormTypeToArea(*form_type);
}
if (rv < 0)
return NONSELECTABLE_AREA;
return GetLink(*char_index, target) != -1 ? WEBLINK_AREA : TEXT_AREA;
}
// static
PDFiumPage::Area PDFiumPage::FormTypeToArea(int form_type) {
switch (form_type) {
case FPDF_FORMFIELD_COMBOBOX:
case FPDF_FORMFIELD_TEXTFIELD:
#if defined(PDF_ENABLE_XFA)
// TODO(bug_353450): figure out selection and copying for XFA fields.
case FPDF_FORMFIELD_XFA_COMBOBOX:
case FPDF_FORMFIELD_XFA_TEXTFIELD:
#endif
return FORM_TEXT_AREA;
default:
return NONSELECTABLE_AREA;
}
}
base::char16 PDFiumPage::GetCharAtIndex(int index) {
if (!available_)
return L'\0';
return static_cast<base::char16>(FPDFText_GetUnicode(GetTextPage(), index));
}
int PDFiumPage::GetCharCount() {
if (!available_)
return 0;
return FPDFText_CountChars(GetTextPage());
}
bool PDFiumPage::IsCharIndexInBounds(int index) {
return index >= 0 && index < GetCharCount();
}
PDFiumPage::Area PDFiumPage::GetDestinationTarget(FPDF_DEST destination,
LinkTarget* target) {
if (!target)
return NONSELECTABLE_AREA;
int page_index = FPDFDest_GetDestPageIndex(engine_->doc(), destination);
if (page_index < 0)
return NONSELECTABLE_AREA;
target->page = page_index;
base::Optional<gfx::PointF> xy;
GetPageDestinationTarget(destination, &xy, &target->zoom);
if (xy) {
gfx::PointF point = TransformPageToScreenXY(xy.value());
target->x_in_pixels = point.x();
target->y_in_pixels = point.y();
}
return DOCLINK_AREA;
}
void PDFiumPage::GetPageDestinationTarget(FPDF_DEST destination,
base::Optional<gfx::PointF>* xy,
base::Optional<float>* zoom_value) {
*xy = base::nullopt;
*zoom_value = base::nullopt;
if (!available_)
return;
FPDF_BOOL has_x_coord;
FPDF_BOOL has_y_coord;
FPDF_BOOL has_zoom;
FS_FLOAT x;
FS_FLOAT y;
FS_FLOAT zoom;
FPDF_BOOL success = FPDFDest_GetLocationInPage(
destination, &has_x_coord, &has_y_coord, &has_zoom, &x, &y, &zoom);
if (!success)
return;
if (has_x_coord && has_y_coord)
*xy = gfx::PointF(x, y);
if (has_zoom)
*zoom_value = zoom;
}
gfx::PointF PDFiumPage::TransformPageToScreenXY(const gfx::PointF& xy) {
if (!available_)
return gfx::PointF();
gfx::RectF page_rect(xy.x(), xy.y(), 0, 0);
gfx::RectF pixel_rect(FloatPageRectToPixelRect(GetPage(), page_rect));
return gfx::PointF(pixel_rect.x(), pixel_rect.y());
}
PDFiumPage::Area PDFiumPage::GetURITarget(FPDF_ACTION uri_action,
LinkTarget* target) const {
if (target) {
std::string url = CallPDFiumStringBufferApi(
base::BindRepeating(&FPDFAction_GetURIPath, engine_->doc(), uri_action),
/*check_expected_size=*/true);
if (!url.empty())
target->url = url;
}
return WEBLINK_AREA;
}
int PDFiumPage::GetLink(int char_index, LinkTarget* target) {
if (!available_)
return -1;
CalculateLinks();
// Get the bounding box of the rect again, since it might have moved because
// of the tolerance above.
double left;
double right;
double bottom;
double top;
if (!FPDFText_GetCharBox(GetTextPage(), char_index, &left, &right, &bottom,
&top)) {
return -1;
}
gfx::Point origin = PageToScreen(gfx::Point(), 1.0, left, top, right, bottom,
PageOrientation::kOriginal)
.origin();
for (size_t i = 0; i < links_.size(); ++i) {
for (const auto& rect : links_[i].bounding_rects) {
if (rect.Contains(origin)) {
if (target)
target->url = links_[i].target.url;
return i;
}
}
}
return -1;
}
void PDFiumPage::CalculateLinks() {
if (calculated_links_)
return;
calculated_links_ = true;
PopulateWebLinks();
PopulateAnnotationLinks();
}
void PDFiumPage::PopulateWebLinks() {
ScopedFPDFPageLink links(FPDFLink_LoadWebLinks(GetTextPage()));
int count = FPDFLink_CountWebLinks(links.get());
for (int i = 0; i < count; ++i) {
// WARNING: FPDFLink_GetURL() is not compatible with
// CallPDFiumWideStringBufferApi().
base::string16 url;
int url_length = FPDFLink_GetURL(links.get(), i, nullptr, 0);
if (url_length > 0) {
PDFiumAPIStringBufferAdapter<base::string16> api_string_adapter(
&url, url_length, true);
unsigned short* data =
reinterpret_cast<unsigned short*>(api_string_adapter.GetData());
int actual_length = FPDFLink_GetURL(links.get(), i, data, url_length);
api_string_adapter.Close(actual_length);
}
Link link;
link.target.url = base::UTF16ToUTF8(url);
if (!engine_->IsValidLink(link.target.url))
continue;
// Make sure all the characters in the URL are valid per RFC 1738.
// http://crbug.com/340326 has a sample bad PDF.
// GURL does not work correctly, e.g. it just strips \t \r \n.
bool is_invalid_url = false;
for (size_t j = 0; j < link.target.url.length(); ++j) {
// Control characters are not allowed.
// 0x7F is also a control character.
// 0x80 and above are not in US-ASCII.
if (link.target.url[j] < ' ' || link.target.url[j] >= '\x7F') {
is_invalid_url = true;
break;
}
}
if (is_invalid_url)
continue;
int rect_count = FPDFLink_CountRects(links.get(), i);
for (int j = 0; j < rect_count; ++j) {
double left;
double top;
double right;
double bottom;
FPDFLink_GetRect(links.get(), i, j, &left, &top, &right, &bottom);
gfx::Rect rect = PageToScreen(gfx::Point(), 1.0, left, top, right, bottom,
PageOrientation::kOriginal);
if (rect.IsEmpty())
continue;
link.bounding_rects.push_back(rect);
}
FPDF_BOOL is_link_over_text = FPDFLink_GetTextRange(
links.get(), i, &link.start_char_index, &link.char_count);
DCHECK(is_link_over_text);
links_.push_back(link);
}
}
void PDFiumPage::PopulateAnnotationLinks() {
int start_pos = 0;
FPDF_LINK link_annot;
FPDF_PAGE page = GetPage();
while (FPDFLink_Enumerate(page, &start_pos, &link_annot)) {
Link link;
Area area = GetLinkTarget(link_annot, &link.target);
if (area == NONSELECTABLE_AREA)
continue;
FS_RECTF link_rect;
if (!FPDFLink_GetAnnotRect(link_annot, &link_rect))
continue;
// The horizontal/vertical coordinates in PDF Links could be
// flipped. Swap the coordinates before further processing.
if (link_rect.right < link_rect.left)
std::swap(link_rect.right, link_rect.left);
if (link_rect.bottom > link_rect.top)
std::swap(link_rect.bottom, link_rect.top);
int quad_point_count = FPDFLink_CountQuadPoints(link_annot);
// Calculate the bounds of link using the quad points data.
// If quad points for link is not present then use
// |link_rect| to calculate the bounds instead.
if (quad_point_count > 0) {
for (int i = 0; i < quad_point_count; ++i) {
FS_QUADPOINTSF point;
if (FPDFLink_GetQuadPoints(link_annot, i, &point)) {
// PDF Specifications: Quadpoints start from bottom left (x1, y1) and
// runs counter clockwise.
link.bounding_rects.push_back(
PageToScreen(gfx::Point(), 1.0, point.x4, point.y4, point.x2,
point.y2, PageOrientation::kOriginal));
}
}
} else {
link.bounding_rects.push_back(PageToScreen(
gfx::Point(), 1.0, link_rect.left, link_rect.top, link_rect.right,
link_rect.bottom, PageOrientation::kOriginal));
}
// Calculate underlying text range of link.
GetUnderlyingTextRangeForRect(
gfx::RectF(link_rect.left, link_rect.bottom,
std::abs(link_rect.right - link_rect.left),
std::abs(link_rect.bottom - link_rect.top)),
&link.start_char_index, &link.char_count);
links_.emplace_back(link);
}
}
void PDFiumPage::CalculateImages() {
if (calculated_images_)
return;
calculated_images_ = true;
FPDF_PAGE page = GetPage();
int page_object_count = FPDFPage_CountObjects(page);
MarkedContentIdToImageMap marked_content_id_image_map;
bool is_tagged = FPDFCatalog_IsTagged(engine_->doc());
for (int i = 0; i < page_object_count; ++i) {
FPDF_PAGEOBJECT page_object = FPDFPage_GetObject(page, i);
if (FPDFPageObj_GetType(page_object) != FPDF_PAGEOBJ_IMAGE)
continue;
float left;
float top;
float right;
float bottom;
FPDF_BOOL ret =
FPDFPageObj_GetBounds(page_object, &left, &bottom, &right, &top);
DCHECK(ret);
Image image;
image.bounding_rect = PageToScreen(gfx::Point(), 1.0, left, top, right,
bottom, PageOrientation::kOriginal);
if (is_tagged) {
// Collect all marked content IDs for image objects so that they can
// later be used to retrieve alt text from struct tree for the page.
FPDF_IMAGEOBJ_METADATA image_metadata;
if (FPDFImageObj_GetImageMetadata(page_object, page, &image_metadata)) {
int marked_content_id = image_metadata.marked_content_id;
if (marked_content_id >= 0) {
// If |marked_content_id| is already present, ignore the one being
// inserted.
marked_content_id_image_map.insert(
{marked_content_id, images_.size()});
}
}
}
images_.push_back(image);
}
if (!marked_content_id_image_map.empty())
PopulateImageAltText(marked_content_id_image_map);
}
void PDFiumPage::PopulateImageAltText(
const MarkedContentIdToImageMap& marked_content_id_image_map) {
ScopedFPDFStructTree struct_tree(FPDF_StructTree_GetForPage(GetPage()));
if (!struct_tree)
return;
std::set<FPDF_STRUCTELEMENT> visited_elements;
int tree_children_count = FPDF_StructTree_CountChildren(struct_tree.get());
for (int i = 0; i < tree_children_count; ++i) {
FPDF_STRUCTELEMENT current_element =
FPDF_StructTree_GetChildAtIndex(struct_tree.get(), i);
PopulateImageAltTextForStructElement(marked_content_id_image_map,
current_element, &visited_elements);
}
}
void PDFiumPage::PopulateImageAltTextForStructElement(
const MarkedContentIdToImageMap& marked_content_id_image_map,
FPDF_STRUCTELEMENT current_element,
std::set<FPDF_STRUCTELEMENT>* visited_elements) {
if (!current_element)
return;
bool inserted = visited_elements->insert(current_element).second;
if (!inserted)
return;
int marked_content_id =
FPDF_StructElement_GetMarkedContentID(current_element);
if (marked_content_id >= 0) {
auto it = marked_content_id_image_map.find(marked_content_id);
if (it != marked_content_id_image_map.end() &&
images_[it->second].alt_text.empty()) {
images_[it->second].alt_text =
base::UTF16ToUTF8(CallPDFiumWideStringBufferApi(
base::BindRepeating(&FPDF_StructElement_GetAltText,
current_element),
/*check_expected_size=*/true));
}
}
int children_count = FPDF_StructElement_CountChildren(current_element);
for (int i = 0; i < children_count; ++i) {
FPDF_STRUCTELEMENT child =
FPDF_StructElement_GetChildAtIndex(current_element, i);
PopulateImageAltTextForStructElement(marked_content_id_image_map, child,
visited_elements);
}
}
void PDFiumPage::PopulateAnnotations() {
if (calculated_annotations_)
return;
FPDF_PAGE page = GetPage();
if (!page)
return;
int annotation_count = FPDFPage_GetAnnotCount(page);
for (int i = 0; i < annotation_count; ++i) {
ScopedFPDFAnnotation annot(FPDFPage_GetAnnot(page, i));
DCHECK(annot);
FPDF_ANNOTATION_SUBTYPE subtype = FPDFAnnot_GetSubtype(annot.get());
switch (subtype) {
case FPDF_ANNOT_HIGHLIGHT: {
PopulateHighlight(annot.get());
break;
}
case FPDF_ANNOT_WIDGET: {
PopulateFormField(annot.get());
break;
}
default:
break;
}
}
calculated_annotations_ = true;
}
void PDFiumPage::PopulateHighlight(FPDF_ANNOTATION annot) {
DCHECK(annot);
DCHECK_EQ(FPDFAnnot_GetSubtype(annot), FPDF_ANNOT_HIGHLIGHT);
FS_RECTF rect;
if (!FPDFAnnot_GetRect(annot, &rect))
return;
Highlight highlight;
// We use the bounding box of the highlight as the bounding rect.
highlight.bounding_rect =
PageToScreen(gfx::Point(), 1.0, rect.left, rect.top, rect.right,
rect.bottom, PageOrientation::kOriginal);
GetUnderlyingTextRangeForRect(
gfx::RectF(rect.left, rect.bottom, std::abs(rect.right - rect.left),
std::abs(rect.bottom - rect.top)),
&highlight.start_char_index, &highlight.char_count);
// Retrieve the color of the highlight.
unsigned int color_r;
unsigned int color_g;
unsigned int color_b;
unsigned int color_a;
FPDF_PAGEOBJECT page_object = FPDFAnnot_GetObject(annot, 0);
if (FPDFPageObj_GetFillColor(page_object, &color_r, &color_g, &color_b,
&color_a)) {
highlight.color = MakeARGB(color_a, color_r, color_g, color_b);
} else {
// Set the same default color as in pdfium. See calls to
// GetColorStringWithDefault() in CPVT_GenerateAP::Generate*AP() in
// pdfium.
highlight.color = MakeARGB(255, 255, 255, 0);
}
// Retrieve the contents of the popup note associated with highlight.
// See table 164 in ISO 32000-1 standard for more details around "Contents"
// key in a highlight annotation.
static constexpr char kContents[] = "Contents";
highlight.note_text = base::UTF16ToUTF8(CallPDFiumWideStringBufferApi(
base::BindRepeating(&FPDFAnnot_GetStringValue, annot, kContents),
/*check_expected_size=*/true));
highlights_.push_back(std::move(highlight));
}
void PDFiumPage::PopulateTextField(FPDF_ANNOTATION annot) {
DCHECK(annot);
FPDF_FORMHANDLE form_handle = engine_->form();
DCHECK_EQ(FPDFAnnot_GetFormFieldType(form_handle, annot),
FPDF_FORMFIELD_TEXTFIELD);
TextField text_field;
if (!PopulateFormFieldProperties(annot, &text_field))
return;
text_field.value = base::UTF16ToUTF8(CallPDFiumWideStringBufferApi(
base::BindRepeating(&FPDFAnnot_GetFormFieldValue, form_handle, annot),
/*check_expected_size=*/true));
text_fields_.push_back(std::move(text_field));
}
void PDFiumPage::PopulateChoiceField(FPDF_ANNOTATION annot) {
DCHECK(annot);
FPDF_FORMHANDLE form_handle = engine_->form();
int form_field_type = FPDFAnnot_GetFormFieldType(form_handle, annot);
DCHECK(form_field_type == FPDF_FORMFIELD_LISTBOX ||
form_field_type == FPDF_FORMFIELD_COMBOBOX);
ChoiceField choice_field;
if (!PopulateFormFieldProperties(annot, &choice_field))
return;
int options_count = FPDFAnnot_GetOptionCount(form_handle, annot);
if (options_count < 0)
return;
choice_field.options.resize(options_count);
for (int i = 0; i < options_count; ++i) {
choice_field.options[i].name =
base::UTF16ToUTF8(CallPDFiumWideStringBufferApi(
base::BindRepeating(&FPDFAnnot_GetOptionLabel, form_handle, annot,
i),
/*check_expected_size=*/true));
choice_field.options[i].is_selected =
FPDFAnnot_IsOptionSelected(form_handle, annot, i);
}
choice_fields_.push_back(std::move(choice_field));
}
void PDFiumPage::PopulateButton(FPDF_ANNOTATION annot) {
DCHECK(annot);
FPDF_FORMHANDLE form_handle = engine_->form();
int button_type = FPDFAnnot_GetFormFieldType(form_handle, annot);
DCHECK(button_type == FPDF_FORMFIELD_PUSHBUTTON ||
IsRadioButtonOrCheckBox(button_type));
Button button;
if (!PopulateFormFieldProperties(annot, &button))
return;
button.type = button_type;
if (IsRadioButtonOrCheckBox(button_type)) {
button.control_count = FPDFAnnot_GetFormControlCount(form_handle, annot);
if (button.control_count <= 0)
return;
button.control_index = FPDFAnnot_GetFormControlIndex(form_handle, annot);
button.value = base::UTF16ToUTF8(CallPDFiumWideStringBufferApi(
base::BindRepeating(&FPDFAnnot_GetFormFieldExportValue, form_handle,
annot),
/*check_expected_size=*/true));
button.is_checked = FPDFAnnot_IsChecked(form_handle, annot);
}
buttons_.push_back(std::move(button));
}
void PDFiumPage::PopulateFormField(FPDF_ANNOTATION annot) {
DCHECK_EQ(FPDFAnnot_GetSubtype(annot), FPDF_ANNOT_WIDGET);
int form_field_type = FPDFAnnot_GetFormFieldType(engine_->form(), annot);
// TODO(crbug.com/1030242): Populate other types of form fields too.
switch (form_field_type) {
case FPDF_FORMFIELD_PUSHBUTTON:
case FPDF_FORMFIELD_CHECKBOX:
case FPDF_FORMFIELD_RADIOBUTTON: {
PopulateButton(annot);
break;
}
case FPDF_FORMFIELD_COMBOBOX:
case FPDF_FORMFIELD_LISTBOX: {
PopulateChoiceField(annot);
break;
}
case FPDF_FORMFIELD_TEXTFIELD: {
PopulateTextField(annot);
break;
}
default:
break;
}
}
bool PDFiumPage::PopulateFormFieldProperties(FPDF_ANNOTATION annot,
FormField* form_field) {
DCHECK(annot);
FS_RECTF rect;
if (!FPDFAnnot_GetRect(annot, &rect))
return false;
// We use the bounding box of the form field as the bounding rect.
form_field->bounding_rect =
PageToScreen(gfx::Point(), 1.0, rect.left, rect.top, rect.right,
rect.bottom, PageOrientation::kOriginal);
FPDF_FORMHANDLE form_handle = engine_->form();
form_field->name = base::UTF16ToUTF8(CallPDFiumWideStringBufferApi(
base::BindRepeating(&FPDFAnnot_GetFormFieldName, form_handle, annot),
/*check_expected_size=*/true));
form_field->flags = FPDFAnnot_GetFormFieldFlags(form_handle, annot);
return true;
}
bool PDFiumPage::GetUnderlyingTextRangeForRect(const gfx::RectF& rect,
int* start_index,
int* char_len) {
if (!available_)
return false;
FPDF_TEXTPAGE text_page = GetTextPage();
int char_count = FPDFText_CountChars(text_page);
if (char_count <= 0)
return false;
int start_char_index = -1;
int cur_char_count = 0;
// Iterate over page text to find such continuous characters whose mid-points
// lie inside the rectangle.
for (int i = 0; i < char_count; ++i) {
double char_left;
double char_right;
double char_bottom;
double char_top;
if (!FPDFText_GetCharBox(text_page, i, &char_left, &char_right,
&char_bottom, &char_top)) {
break;
}
float xmid = (char_left + char_right) / 2;
float ymid = (char_top + char_bottom) / 2;
if (rect.Contains(xmid, ymid)) {
if (start_char_index == -1)
start_char_index = i;
++cur_char_count;
} else if (start_char_index != -1) {
break;
}
}
if (cur_char_count == 0)
return false;
*char_len = cur_char_count;
*start_index = start_char_index;
return true;
}
gfx::Rect PDFiumPage::PageToScreen(const gfx::Point& page_point,
double zoom,
double left,
double top,
double right,
double bottom,
PageOrientation orientation) const {
if (!available_)
return gfx::Rect();
double start_x = (rect_.x() - page_point.x()) * zoom;
double start_y = (rect_.y() - page_point.y()) * zoom;
double size_x = rect_.width() * zoom;
double size_y = rect_.height() * zoom;
if (!base::IsValueInRangeForNumericType<int>(start_x) ||
!base::IsValueInRangeForNumericType<int>(start_y) ||
!base::IsValueInRangeForNumericType<int>(size_x) ||
!base::IsValueInRangeForNumericType<int>(size_y)) {
return gfx::Rect();
}
int new_left;
int new_top;
int new_right;
int new_bottom;
FPDF_BOOL ret = FPDF_PageToDevice(
page(), static_cast<int>(start_x), static_cast<int>(start_y),
static_cast<int>(ceil(size_x)), static_cast<int>(ceil(size_y)),
ToPDFiumRotation(orientation), left, top, &new_left, &new_top);
DCHECK(ret);
ret = FPDF_PageToDevice(
page(), static_cast<int>(start_x), static_cast<int>(start_y),
static_cast<int>(ceil(size_x)), static_cast<int>(ceil(size_y)),
ToPDFiumRotation(orientation), right, bottom, &new_right, &new_bottom);
DCHECK(ret);
// If the PDF is rotated, the horizontal/vertical coordinates could be
// flipped. See
// http://www.netl.doe.gov/publications/proceedings/03/ubc/presentations/Goeckner-pres.pdf
if (new_right < new_left)
std::swap(new_right, new_left);
if (new_bottom < new_top)
std::swap(new_bottom, new_top);
base::CheckedNumeric<int32_t> new_size_x = new_right;
new_size_x -= new_left;
new_size_x += 1;
base::CheckedNumeric<int32_t> new_size_y = new_bottom;
new_size_y -= new_top;
new_size_y += 1;
if (!new_size_x.IsValid() || !new_size_y.IsValid())
return gfx::Rect();
return gfx::Rect(new_left, new_top, new_size_x.ValueOrDie(),
new_size_y.ValueOrDie());
}
void PDFiumPage::RequestThumbnail(float device_pixel_ratio,
SendThumbnailCallback send_callback) {
DCHECK(!thumbnail_callback_);
if (available()) {
GenerateAndSendThumbnail(device_pixel_ratio, std::move(send_callback));
return;
}
// It is safe to use base::Unretained(this) because the callback is only used
// by |this|.
thumbnail_callback_ = base::BindOnce(
&PDFiumPage::GenerateAndSendThumbnail, base::Unretained(this),
device_pixel_ratio, std::move(send_callback));
}
Thumbnail PDFiumPage::GenerateThumbnail(float device_pixel_ratio) {
DCHECK(available());
FPDF_PAGE page = GetPage();
gfx::Size page_size(base::saturated_cast<int>(FPDF_GetPageWidthF(page)),
base::saturated_cast<int>(FPDF_GetPageHeightF(page)));
Thumbnail thumbnail(page_size, device_pixel_ratio);
SkBitmap& sk_bitmap = thumbnail.bitmap();
ScopedFPDFBitmap fpdf_bitmap(FPDFBitmap_CreateEx(
sk_bitmap.width(), sk_bitmap.height(), FPDFBitmap_BGRA,
sk_bitmap.getPixels(), sk_bitmap.rowBytes()));
// Clear the bitmap.
FPDFBitmap_FillRect(fpdf_bitmap.get(), /*left=*/0, /*top=*/0,
sk_bitmap.width(), sk_bitmap.height(),
/*color=*/0xFFFFFFFF);
// The combination of the |FPDF_REVERSE_BYTE_ORDER| rendering flag and the
// |FPDFBitmap_BGRA| format when initializing |fpdf_bitmap| results in an RGBA
// rendering, which is the format required by HTML <canvas>.
FPDF_RenderPageBitmap(fpdf_bitmap.get(), GetPage(), /*start_x=*/0,
/*start_y=*/0, sk_bitmap.width(), sk_bitmap.height(),
/*rotate=*/0, FPDF_ANNOT | FPDF_REVERSE_BYTE_ORDER);
return thumbnail;
}
void PDFiumPage::GenerateAndSendThumbnail(float device_pixel_ratio,
SendThumbnailCallback send_callback) {
std::move(send_callback).Run(GenerateThumbnail(device_pixel_ratio));
}
void PDFiumPage::MarkAvailable() {
available_ = true;
// Fulfill pending thumbnail request.
if (thumbnail_callback_)
std::move(thumbnail_callback_).Run();
}
PDFiumPage::ScopedUnloadPreventer::ScopedUnloadPreventer(PDFiumPage* page)
: page_(page) {
page_->preventing_unload_count_++;
}
PDFiumPage::ScopedUnloadPreventer::~ScopedUnloadPreventer() {
page_->preventing_unload_count_--;
}
PDFiumPage::Link::Link() = default;
PDFiumPage::Link::Link(const Link& that) = default;
PDFiumPage::Link::~Link() = default;
PDFiumPage::Image::Image() = default;
PDFiumPage::Image::Image(const Image& that) = default;
PDFiumPage::Image::~Image() = default;
PDFiumPage::Highlight::Highlight() = default;
PDFiumPage::Highlight::Highlight(const Highlight& that) = default;
PDFiumPage::Highlight::~Highlight() = default;
PDFiumPage::FormField::FormField() = default;
PDFiumPage::FormField::FormField(const FormField& that) = default;
PDFiumPage::FormField::~FormField() = default;
PDFiumPage::TextField::TextField() = default;
PDFiumPage::TextField::TextField(const TextField& that) = default;
PDFiumPage::TextField::~TextField() = default;
PDFiumPage::ChoiceFieldOption::ChoiceFieldOption() = default;
PDFiumPage::ChoiceFieldOption::ChoiceFieldOption(
const ChoiceFieldOption& that) = default;
PDFiumPage::ChoiceFieldOption::~ChoiceFieldOption() = default;
PDFiumPage::ChoiceField::ChoiceField() = default;
PDFiumPage::ChoiceField::ChoiceField(const ChoiceField& that) = default;
PDFiumPage::ChoiceField::~ChoiceField() = default;
PDFiumPage::Button::Button() = default;
PDFiumPage::Button::Button(const Button& that) = default;
PDFiumPage::Button::~Button() = default;
// static
uint32_t PDFiumPage::CountLinkHighlightOverlaps(
const std::vector<Link>& links,
const std::vector<Highlight>& highlights) {
return CountOverlaps(links, highlights) + CountInternalTextOverlaps(links) +
CountInternalTextOverlaps(highlights);
}
int ToPDFiumRotation(PageOrientation orientation) {
// Could static_cast<int>(orientation), but using an exhaustive switch will
// trigger an error if we ever change the definition of PageOrientation.
switch (orientation) {
case PageOrientation::kOriginal:
return 0;
case PageOrientation::kClockwise90:
return 1;
case PageOrientation::kClockwise180:
return 2;
case PageOrientation::kClockwise270:
return 3;
}
NOTREACHED();
return 0;
}
} // namespace chrome_pdf