1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741
//! Defines the [PdfPage] struct, exposing functionality related to a single page in a
//! `PdfPages` collection.
use crate::bindgen::{
FPDFBitmap_BGRA, FLATTEN_FAIL, FLATTEN_NOTHINGTODO, FLATTEN_SUCCESS, FLAT_PRINT, FPDF_ANNOT,
FPDF_BITMAP, FPDF_BOOL, FPDF_PAGE, FS_RECTF,
};
use crate::bindings::PdfiumLibraryBindings;
use crate::bitmap::{PdfBitmap, PdfBitmapRotation};
use crate::bitmap_config::{PdfBitmapConfig, PdfBitmapRenderSettings};
use crate::document::PdfDocument;
use crate::error::{PdfiumError, PdfiumInternalError};
use crate::page_boundaries::PdfPageBoundaries;
use crate::page_objects::PdfPageObjects;
use crate::page_size::PdfPagePaperSize;
use crate::page_text::PdfPageText;
use crate::prelude::PdfPageAnnotations;
use std::ops::{Add, AddAssign, Div, Mul, Sub, SubAssign};
use std::os::raw::c_int;
use std::ptr::null_mut;
/// The internal coordinate system inside a [PdfDocument] is measured in Points, a
/// device-independent unit equal to 1/72 inches, roughly 0.358 mm. Points are converted to pixels
/// when a [PdfPage] is rendered to a [PdfBitmap].
#[derive(Debug, Copy, Clone, PartialOrd, PartialEq)]
pub struct PdfPoints {
pub value: f32,
}
impl PdfPoints {
/// A [PdfPoints] object with the value 0.0.
pub const ZERO: PdfPoints = PdfPoints::zero();
/// Creates a new [PdfPoints] object with the given value.
#[inline]
pub const fn new(value: f32) -> Self {
Self { value }
}
/// Creates a new [PdfPoints] object with the value 0.0.
///
/// Consider using the compile-time constant value [PdfPoints::ZERO]
/// rather than calling this function directly.
#[inline]
pub const fn zero() -> Self {
Self::new(0.0)
}
/// Creates a new [PdfPoints] object from the given measurement in inches.
#[inline]
pub fn from_inches(inches: f32) -> Self {
Self::new(inches * 72.0)
}
/// Creates a new [PdfPoints] object from the given measurement in centimeters.
#[inline]
pub fn from_cm(cm: f32) -> Self {
Self::from_inches(cm / 2.54)
}
/// Creates a new [PdfPoints] object from the given measurement in millimeters.
#[inline]
pub fn from_mm(mm: f32) -> Self {
Self::from_cm(mm / 10.0)
}
/// Converts the value of this [PdfPoints] object to inches.
#[inline]
pub fn to_inches(&self) -> f32 {
self.value / 72.0
}
/// Converts the value of this [PdfPoints] object to centimeters.
#[inline]
pub fn to_cm(&self) -> f32 {
self.to_inches() * 2.54
}
/// Converts the value of this [PdfPoints] object to millimeters.
#[inline]
pub fn to_mm(self) -> f32 {
self.to_cm() * 10.0
}
}
impl Add<PdfPoints> for PdfPoints {
type Output = PdfPoints;
#[inline]
fn add(self, rhs: Self) -> Self::Output {
PdfPoints::new(self.value + rhs.value)
}
}
impl AddAssign<PdfPoints> for PdfPoints {
#[inline]
fn add_assign(&mut self, rhs: PdfPoints) {
self.value += rhs.value;
}
}
impl Sub<PdfPoints> for PdfPoints {
type Output = PdfPoints;
#[inline]
fn sub(self, rhs: Self) -> Self::Output {
PdfPoints::new(self.value - rhs.value)
}
}
impl SubAssign<PdfPoints> for PdfPoints {
#[inline]
fn sub_assign(&mut self, rhs: PdfPoints) {
self.value -= rhs.value;
}
}
impl Mul<f32> for PdfPoints {
type Output = PdfPoints;
#[inline]
fn mul(self, rhs: f32) -> Self::Output {
PdfPoints::new(self.value * rhs)
}
}
impl Div<f32> for PdfPoints {
type Output = PdfPoints;
#[inline]
fn div(self, rhs: f32) -> Self::Output {
PdfPoints::new(self.value / rhs)
}
}
/// A rectangle measured in [PdfPoints].
///
/// The coordinate space of a [PdfPage] has its origin (0,0) at the bottom left of the page,
/// with x values increasing as coordinates move horizontally to the right and
/// y values increasing as coordinates move vertically up.
#[derive(Debug, Copy, Clone, PartialEq)]
pub struct PdfRect {
pub bottom: PdfPoints,
pub left: PdfPoints,
pub top: PdfPoints,
pub right: PdfPoints,
}
impl PdfRect {
#[inline]
pub(crate) fn from_pdfium(rect: FS_RECTF) -> Self {
Self {
bottom: PdfPoints::new(rect.bottom),
left: PdfPoints::new(rect.left),
top: PdfPoints::new(rect.top),
right: PdfPoints::new(rect.right),
}
}
#[inline]
pub(crate) fn from_pdfium_as_result(
result: FPDF_BOOL,
rect: FS_RECTF,
bindings: &dyn PdfiumLibraryBindings,
) -> Result<PdfRect, PdfiumError> {
if result == 0 {
if let Some(error) = bindings.get_pdfium_last_error() {
Err(PdfiumError::PdfiumLibraryInternalError(error))
} else {
// This would be an unusual situation; a null handle indicating failure,
// yet pdfium's error code indicates success.
Err(PdfiumError::PdfiumLibraryInternalError(
PdfiumInternalError::Unknown,
))
}
} else {
Ok(PdfRect::from_pdfium(rect))
}
}
/// Creates a new [PdfRect] from the given [PdfPoints] measurements.
///
/// The coordinate space of a [PdfPage] has its origin (0,0) at the bottom left of the page,
/// with x values increasing as coordinates move horizontally to the right and
/// y values increasing as coordinates move vertically up.
#[inline]
pub fn new(bottom: PdfPoints, left: PdfPoints, top: PdfPoints, right: PdfPoints) -> Self {
Self {
bottom,
left,
top,
right,
}
}
/// Creates a new [PdfRect] from the given raw points values.
///
/// The coordinate space of a [PdfPage] has its origin (0,0) at the bottom left of the page,
/// with x values increasing as coordinates move horizontally to the right and
/// y values increasing as coordinates move vertically up.
#[inline]
pub fn new_from_values(bottom: f32, left: f32, top: f32, right: f32) -> Self {
Self::new(
PdfPoints::new(bottom),
PdfPoints::new(left),
PdfPoints::new(top),
PdfPoints::new(right),
)
}
/// Returns the width of this [PdfRect].
#[inline]
pub fn width(&self) -> PdfPoints {
self.right - self.left
}
/// Returns the height of this [PdfRect].
#[inline]
pub fn height(&self) -> PdfPoints {
self.top - self.bottom
}
/// Returns `true` if the bounds of this [PdfRect] lie entirely within the given rectangle.
#[inline]
pub fn is_inside(&self, rect: &PdfRect) -> bool {
self.left >= rect.left
&& self.right <= rect.right
&& self.top <= rect.top
&& self.bottom >= rect.bottom
}
/// Returns `true` if the bounds of this [PdfRect] lie at least partially within
/// the given rectangle.
#[inline]
pub fn does_overlap(&self, rect: &PdfRect) -> bool {
self.left < rect.right
&& self.right > rect.left
&& self.bottom < rect.top
&& self.top > rect.bottom
}
}
/// The orientation of a [PdfPage].
#[derive(Copy, Clone, Debug, PartialEq)]
pub enum PdfPageOrientation {
Portrait,
Landscape,
}
impl PdfPageOrientation {
#[inline]
pub(crate) fn from_width_and_height(width: PdfPoints, height: PdfPoints) -> Self {
if width.value > height.value {
PdfPageOrientation::Landscape
} else {
PdfPageOrientation::Portrait
}
}
}
/// Content regeneration strategies that instruct `pdfium-render` when, if ever, it should
/// automatically regenerate the content of a [PdfPage].
///
/// Updates to a [PdfPage] are not committed to the underlying [PdfDocument] until the page's
/// content is regenerated. If a page is reloaded or closed without regenerating the page's
/// content, any changes not applied are lost.
///
/// By default, `pdfium-render` will trigger content regeneration on any change to a [PdfPage];
/// this removes the possibility of data loss, and ensures changes can be read back from other
/// data structures as soon as they are made. However, if many changes are made to a page at once,
/// then regenerating the content after every change is inefficient; it is faster to stage
/// all changes first, then regenerate the page's content just once. In this case,
/// changing the content regeneration strategy for a [PdfPage] can improve performance,
/// but you must be careful not to forget to commit your changes before closing
/// or reloading the page.
#[derive(Copy, Clone, Debug, PartialEq)]
pub enum PdfPageContentRegenerationStrategy {
/// `pdfium-render` will call the [PdfPage::regenerate_content()] function on any
/// change to this [PdfPage]. This is the default setting.
AutomaticOnEveryChange,
/// `pdfium-render` will call the [PdfPage::regenerate_content()] function only when
/// this [PdfPage] is about to move out of scope.
AutomaticOnDrop,
/// `pdfium-render` will never call the [PdfPage::regenerate_content()] function.
/// You must do so manually after staging your changes, or your changes will be lost
/// when this [PdfPage] moves out of scope.
Manual,
}
/// A single page in a [PdfDocument].
///
/// In addition to its own intrinsic properties, a [PdfPage] serves as the entry point
/// to all object collections related to a single page in a document.
/// These collections include:
/// * [PdfPage::annotations()], all the user annotations attached to the [PdfPage].
/// * [PdfPage::boundaries()], all the boundary boxes relating to the [PdfPage].
/// * [PdfPage::objects()], all the displayable objects on the [PdfPage].
pub struct PdfPage<'a> {
handle: FPDF_PAGE,
label: Option<String>,
document: &'a PdfDocument<'a>,
regeneration_strategy: PdfPageContentRegenerationStrategy,
is_content_regeneration_required: bool,
objects: PdfPageObjects<'a>,
annotations: PdfPageAnnotations<'a>,
bindings: &'a dyn PdfiumLibraryBindings,
}
impl<'a> PdfPage<'a> {
#[inline]
pub(crate) fn from_pdfium(
handle: FPDF_PAGE,
label: Option<String>,
document: &'a PdfDocument<'a>,
bindings: &'a dyn PdfiumLibraryBindings,
) -> Self {
PdfPage {
handle,
label,
document,
regeneration_strategy: PdfPageContentRegenerationStrategy::AutomaticOnEveryChange,
is_content_regeneration_required: false,
objects: PdfPageObjects::from_pdfium(*document.get_handle(), handle, bindings),
annotations: PdfPageAnnotations::from_pdfium(handle, bindings),
bindings,
}
}
/// Returns the internal `FPDF_PAGE` handle for this [PdfPage].
#[inline]
pub(crate) fn get_handle(&self) -> &FPDF_PAGE {
&self.handle
}
/// Returns the [PdfDocument] containing this [PdfPage].
#[inline]
pub(crate) fn get_document(&self) -> &'a PdfDocument<'a> {
self.document
}
/// Returns the [PdfiumLibraryBindings] used by this [PdfPage].
#[inline]
pub(crate) fn get_bindings(&self) -> &'a dyn PdfiumLibraryBindings {
self.bindings
}
/// Returns the label assigned to this [PdfPage], if any.
#[inline]
pub fn label(&self) -> Option<&String> {
self.label.as_ref()
}
/// Returns the width of this [PdfPage] in device-independent points.
/// One point is 1/72 inches, roughly 0.358 mm.
#[inline]
pub fn width(&self) -> PdfPoints {
PdfPoints::new(self.bindings.FPDF_GetPageWidthF(self.handle))
}
/// Returns the height of this [PdfPage] in device-independent points.
/// One point is 1/72 inches, roughly 0.358 mm.
#[inline]
pub fn height(&self) -> PdfPoints {
PdfPoints::new(self.bindings.FPDF_GetPageHeightF(self.handle))
}
/// Returns the width and height of this [PdfPage] expressed as a [PdfRect].
#[inline]
pub fn page_size(&self) -> PdfRect {
PdfRect::new(
PdfPoints::ZERO,
PdfPoints::ZERO,
self.height(),
self.width(),
)
}
/// Returns [PdfPageOrientation::Landscape] if the width of this [PdfPage]
/// is greater than its height; otherwise returns [PdfPageOrientation::Portrait].
#[inline]
pub fn orientation(&self) -> PdfPageOrientation {
PdfPageOrientation::from_width_and_height(self.width(), self.height())
}
/// Returns `true` if this [PdfPage] has orientation [PdfPageOrientation::Portrait].
#[inline]
pub fn is_portrait(&self) -> bool {
self.orientation() == PdfPageOrientation::Portrait
}
/// Returns `true` if this [PdfPage] has orientation [PdfPageOrientation::Landscape].
#[inline]
pub fn is_landscape(&self) -> bool {
self.orientation() == PdfPageOrientation::Landscape
}
/// Returns any intrinsic rotation encoded into this document indicating a rotation
/// should be applied to this [PdfPage] during rendering.
#[inline]
pub fn rotation(&self) -> Result<PdfBitmapRotation, PdfiumError> {
PdfBitmapRotation::from_pdfium(self.bindings.FPDFPage_GetRotation(self.handle))
}
/// Sets the intrinsic rotation that should be applied to this [PdfPage] during rendering.
#[inline]
pub fn set_rotation(&mut self, rotation: PdfBitmapRotation) {
self.bindings
.FPDFPage_SetRotation(self.handle, rotation.as_pdfium());
}
/// Returns `true` if any object on the page contains transparency.
#[inline]
pub fn has_transparency(&self) -> bool {
self.bindings
.is_true(self.bindings.FPDFPage_HasTransparency(self.handle))
}
/// Returns the collection of bounding boxes defining the extents of this [PdfPage].
#[inline]
pub fn boundaries(&self) -> PdfPageBoundaries {
PdfPageBoundaries::from_pdfium(self, self.bindings)
}
/// Returns the paper size of this [PdfPage].
#[inline]
pub fn paper_size(&self) -> PdfPagePaperSize {
PdfPagePaperSize::from_points(self.width(), self.height())
}
/// Returns the collection of text boxes contained within this [PdfPage].
pub fn text(&self) -> Result<PdfPageText, PdfiumError> {
if self.regeneration_strategy == PdfPageContentRegenerationStrategy::AutomaticOnEveryChange
&& self.is_content_regeneration_required
{
self.regenerate_content_immut()?;
}
let text_handle = self.bindings.FPDFText_LoadPage(self.handle);
if text_handle.is_null() {
if let Some(error) = self.bindings.get_pdfium_last_error() {
Err(PdfiumError::PdfiumLibraryInternalError(error))
} else {
// This would be an unusual situation; a null handle indicating failure,
// yet pdfium's error code indicates success.
Err(PdfiumError::PdfiumLibraryInternalError(
PdfiumInternalError::Unknown,
))
}
} else {
Ok(PdfPageText::from_pdfium(text_handle, self, self.bindings))
}
}
/// Returns an immutable collection of all the page objects on this [PdfPage].
#[inline]
pub fn objects(&self) -> &PdfPageObjects {
if self.regeneration_strategy == PdfPageContentRegenerationStrategy::AutomaticOnEveryChange
&& self.is_content_regeneration_required
{
let result = self.regenerate_content_immut();
debug_assert!(result.is_ok());
}
&self.objects
}
/// Returns a mutable collection of all the page objects on this [PdfPage].
#[inline]
pub fn objects_mut(&mut self) -> &mut PdfPageObjects<'a> {
// We can't know for sure whether the user will update any page objects,
// and we can't track what happens in the PdfPageObjects after we return
// a mutable reference to it, but if the user is going to the trouble of retrieving
// a mutable reference it seems best to assume they're intending to update something.
self.is_content_regeneration_required = self.regeneration_strategy
!= PdfPageContentRegenerationStrategy::AutomaticOnEveryChange;
self.objects.do_regenerate_page_content_after_each_change(
self.regeneration_strategy
== PdfPageContentRegenerationStrategy::AutomaticOnEveryChange,
);
&mut self.objects
}
/// Returns an immutable collection of the annotations that have been added to this [PdfPage].
#[inline]
pub fn annotations(&self) -> &PdfPageAnnotations {
if self.regeneration_strategy == PdfPageContentRegenerationStrategy::AutomaticOnEveryChange
&& self.is_content_regeneration_required
{
let result = self.regenerate_content_immut();
debug_assert!(result.is_ok());
}
&self.annotations
}
/// Returns a [PdfBitmap] using pixel dimensions, rotation settings, and rendering options
/// configured in the given [PdfBitmapConfig].
///
/// See also [PdfPage::get_bitmap()], which directly creates a [PdfBitmap] object from this page
/// using caller-specified pixel dimensions and page rotation settings.
#[inline]
pub fn get_bitmap_with_config(
&self,
config: &PdfBitmapConfig,
) -> Result<PdfBitmap, PdfiumError> {
let config = config.apply_to_page(self);
let handle = self.create_empty_bitmap_handle(config.width, config.height, config.format)?;
Ok(PdfBitmap::from_pdfium(handle, config, &self, self.bindings))
}
/// Returns a [PdfBitmap] with the given pixel dimensions and render-time rotation
/// for this PdfPage containing the rendered content of this [PdfPage].
///
/// It is the responsibility of the caller to ensure the given pixel width and height
/// correctly maintain the page's aspect ratio.
///
/// See also [PdfPage::get_bitmap_with_config()], which calculates the correct pixel dimensions,
/// rotation settings, and rendering options to apply from a [PdfBitmapConfig] object.
pub fn get_bitmap(
&self,
width: u16,
height: u16,
rotation: Option<PdfBitmapRotation>,
) -> Result<PdfBitmap, PdfiumError> {
let handle =
self.create_empty_bitmap_handle(width as i32, height as i32, FPDFBitmap_BGRA as i32)?;
Ok(PdfBitmap::from_pdfium(
handle,
PdfBitmapRenderSettings {
width: width as i32,
height: height as i32,
format: FPDFBitmap_BGRA as i32,
rotate: rotation.unwrap_or(PdfBitmapRotation::None).as_pdfium(),
do_render_form_data: true,
form_field_highlight: vec![],
render_flags: FPDF_ANNOT as i32,
},
&self,
self.bindings,
))
}
/// Returns a `FPDF_BITMAP` handle to an empty bitmap with the given width and height.
fn create_empty_bitmap_handle(
&self,
width: i32,
height: i32,
format: i32,
) -> Result<FPDF_BITMAP, PdfiumError> {
let handle = self.bindings.FPDFBitmap_CreateEx(
width,
height,
format,
null_mut(),
0, // Not relevant because Pdfium will create the buffer itself.
);
if handle.is_null() {
if let Some(error) = self.bindings.get_pdfium_last_error() {
Err(PdfiumError::PdfiumLibraryInternalError(error))
} else {
// This would be an unusual situation; a null handle indicating failure,
// yet Pdfium's error code indicates success.
Err(PdfiumError::PdfiumLibraryInternalError(
PdfiumInternalError::Unknown,
))
}
} else {
Ok(handle)
}
}
/// Flattens all annotations and form fields on this [PdfPage] into the page contents.
pub fn flatten(&mut self) -> Result<(), PdfiumError> {
// TODO: AJRC - 28/5/22 - consider allowing the caller to set the FLAT_NORMALDISPLAY or FLAT_PRINT flag.
let flag = FLAT_PRINT;
match self.bindings.FPDFPage_Flatten(self.handle, flag as c_int) as u32 {
FLATTEN_SUCCESS => {
self.is_content_regeneration_required = true;
self.regenerate_content()
}
FLATTEN_NOTHINGTODO => Ok(()),
FLATTEN_FAIL => Err(PdfiumError::PageFlattenFailure),
_ => Err(PdfiumError::PageFlattenFailure),
}
}
/// Returns the strategy used by `pdfium-render` to regenerate the content of a [PdfPage].
///
/// Updates to a [PdfPage] are not committed to the underlying [PdfDocument] until the page's
/// content is regenerated. If a page is reloaded or closed without regenerating the page's
/// content, any changes not applied are lost.
///
/// By default, `pdfium-render` will trigger content regeneration on any change to a [PdfPage];
/// this removes the possibility of data loss, and ensures changes can be read back from other
/// data structures as soon as they are made. However, if many changes are made to a page at once,
/// then regenerating the content after every change is inefficient; it is faster to stage
/// all changes first, then regenerate the page's content just once. In this case,
/// changing the content regeneration strategy for a [PdfPage] can improve performance,
/// but you must be careful not to forget to commit your changes before closing
/// or reloading the page.
#[inline]
pub fn content_regeneration_strategy(&self) -> PdfPageContentRegenerationStrategy {
self.regeneration_strategy
}
/// Sets the strategy used by `pdfium-render` to regenerate the content of a [PdfPage].
///
/// Updates to a [PdfPage] are not committed to the underlying [PdfDocument] until the page's
/// content is regenerated. If a page is reloaded or closed without regenerating the page's
/// content, any changes not applied are lost.
///
/// By default, `pdfium-render` will trigger content regeneration on any change to a [PdfPage];
/// this removes the possibility of data loss, and ensures changes can be read back from other
/// data structures as soon as they are made. However, if many changes are made to a page at once,
/// then regenerating the content after every change is inefficient; it is faster to stage
/// all changes first, then regenerate the page's content just once. In this case,
/// changing the content regeneration strategy for a [PdfPage] can improve performance,
/// but you must be careful not to forget to commit your changes before closing
/// or reloading the page.
#[inline]
pub fn set_content_regeneration_strategy(
&mut self,
strategy: PdfPageContentRegenerationStrategy,
) {
self.regeneration_strategy = strategy;
}
/// Commits any staged but unsaved changes to this [PdfPage] to the underlying [PdfDocument].
///
/// Updates to a [PdfPage] are not committed to the underlying [PdfDocument] until the page's
/// content is regenerated. If a page is reloaded or closed without regenerating the page's
/// content, any changes not applied are lost.
///
/// By default, `pdfium-render` will trigger content regeneration on any change to a [PdfPage];
/// this removes the possibility of data loss, and ensures changes can be read back from other
/// data structures as soon as they are made. However, if many changes are made to a page at once,
/// then regenerating the content after every change is inefficient; it is faster to stage
/// all changes first, then regenerate the page's content just once. In this case,
/// changing the content regeneration strategy for a [PdfPage] can improve performance,
/// but you must be careful not to forget to commit your changes before closing
/// or reloading the page.
#[inline]
pub fn regenerate_content(&mut self) -> Result<(), PdfiumError> {
// This is a publicly-visible wrapper for the private regenerate_content_immut() function.
// It is only available to callers who hold a mutable reference to the page.
self.regenerate_content_immut()
}
/// Commits any staged but unsaved changes to this [PdfPage] to the underlying [PdfDocument].
pub(crate) fn regenerate_content_immut(&self) -> Result<(), PdfiumError> {
Self::regenerate_content_immut_for_handle(self.handle, self.bindings)
}
/// Commits any staged but unsaved changes to the page identified by the given internal
/// `FPDF_PAGE` handle to the underlying [PdfDocument] containing that page.
pub(crate) fn regenerate_content_immut_for_handle(
page: FPDF_PAGE,
bindings: &dyn PdfiumLibraryBindings,
) -> Result<(), PdfiumError> {
if bindings.is_true(bindings.FPDFPage_GenerateContent(page)) {
Ok(())
} else {
Err(PdfiumError::PdfiumLibraryInternalError(
bindings
.get_pdfium_last_error()
.unwrap_or(PdfiumInternalError::Unknown),
))
}
}
}
impl<'a> Drop for PdfPage<'a> {
/// Closes this [PdfPage], releasing held memory.
#[inline]
fn drop(&mut self) {
if self.regeneration_strategy != PdfPageContentRegenerationStrategy::Manual
&& self.is_content_regeneration_required
{
// Regenerate page content now if necessary, before the PdfPage moves out of scope.
let result = self.regenerate_content();
debug_assert!(result.is_ok());
}
self.bindings.FPDF_ClosePage(self.handle);
}
}
#[cfg(test)]
mod test {
use crate::page::PdfRect;
#[test]
fn test_pdf_rect_is_inside() {
assert!(PdfRect::new_from_values(3.0, 3.0, 9.0, 9.0)
.is_inside(&PdfRect::new_from_values(2.0, 2.0, 10.0, 10.0)));
assert!(!PdfRect::new_from_values(2.0, 2.0, 10.0, 10.0)
.is_inside(&PdfRect::new_from_values(3.0, 3.0, 9.0, 9.0)));
assert!(!PdfRect::new_from_values(2.0, 2.0, 7.0, 7.0)
.is_inside(&PdfRect::new_from_values(5.0, 4.0, 10.0, 10.0)));
assert!(!PdfRect::new_from_values(2.0, 2.0, 7.0, 7.0)
.is_inside(&PdfRect::new_from_values(8.0, 4.0, 10.0, 10.0)));
assert!(!PdfRect::new_from_values(2.0, 2.0, 7.0, 7.0)
.is_inside(&PdfRect::new_from_values(5.0, 8.0, 10.0, 10.0)));
}
#[test]
fn test_pdf_rect_does_overlap() {
assert!(PdfRect::new_from_values(2.0, 2.0, 7.0, 7.0)
.does_overlap(&PdfRect::new_from_values(5.0, 4.0, 10.0, 10.0)));
assert!(!PdfRect::new_from_values(2.0, 2.0, 7.0, 7.0)
.does_overlap(&PdfRect::new_from_values(8.0, 4.0, 10.0, 10.0)));
assert!(!PdfRect::new_from_values(2.0, 2.0, 7.0, 7.0)
.does_overlap(&PdfRect::new_from_values(5.0, 8.0, 10.0, 10.0)));
}
}