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
//! Defines the [PdfPageObjectsCommon] trait, providing functionality common to all
//! containers of multiple `PdfPageObject` objects.
use crate::color::PdfColor;
use crate::error::{PdfiumError, PdfiumInternalError};
use crate::font::PdfFont;
use crate::page::{PdfPoints, PdfRect};
use crate::page_object::PdfPageObject;
use crate::page_object_image::PdfPageImageObject;
use crate::page_object_path::PdfPagePathObject;
use crate::page_object_text::PdfPageTextObject;
use crate::page_objects_private::internal::PdfPageObjectsPrivate;
use std::ops::{Range, RangeInclusive};
#[cfg(feature = "image")]
use image::DynamicImage;
pub type PdfPageObjectIndex = usize;
/// Functionality common to all containers of multiple [PdfPageObject] objects.
/// Both pages and annotations can contain page objects.
pub trait PdfPageObjectsCommon<'a> {
/// Returns the total number of page objects in the collection.
fn len(&self) -> PdfPageObjectIndex;
/// Returns true if this page objects collection is empty.
#[inline]
fn is_empty(&self) -> bool {
self.len() == 0
}
/// Returns a Range from `0..(number of objects)` for this page objects collection.
#[inline]
fn as_range(&self) -> Range<PdfPageObjectIndex> {
0..self.len()
}
/// Returns an inclusive Range from `0..=(number of objects - 1)` for this page objects collection.
#[inline]
fn as_range_inclusive(&self) -> RangeInclusive<PdfPageObjectIndex> {
if self.is_empty() {
0..=0
} else {
0..=(self.len() - 1)
}
}
/// Returns a single [PdfPageObject] from this page objects collection.
fn get(&self, index: PdfPageObjectIndex) -> Result<PdfPageObject<'a>, PdfiumError>;
/// Returns the first [PdfPageObject] in this page objects collection.
#[inline]
fn first(&self) -> Result<PdfPageObject<'a>, PdfiumError> {
if !self.is_empty() {
self.get(0)
} else {
Err(PdfiumError::NoPageObjectsInCollection)
}
}
/// Returns the last [PdfPageObject] in this page objects collection.
#[inline]
fn last(&self) -> Result<PdfPageObject<'a>, PdfiumError> {
if !self.is_empty() {
self.get(self.len() - 1)
} else {
Err(PdfiumError::NoPageObjectsInCollection)
}
}
/// Returns an iterator over all the [PdfPageObject] objects in this page objects collection.
fn iter(&'a self) -> PdfPageObjectsIterator<'a>;
/// Adds the given [PdfPageObject] to this page objects collection. The object's
/// memory ownership will be transferred to the `PdfPage` containing this page objects
/// collection, and the updated page object will be returned.
///
/// If the containing `PdfPage` has a content regeneration strategy of
/// `PdfPageContentRegenerationStrategy::AutomaticOnEveryChange` then content regeneration
/// will be triggered on the page.
fn add_object(&mut self, object: PdfPageObject<'a>) -> Result<PdfPageObject<'a>, PdfiumError>;
/// Adds the given [PdfPageTextObject] to this page objects collection,
/// returning the text object wrapped inside a generic [PdfPageObject] wrapper.
///
/// If the containing `PdfPage` has a content regeneration strategy of
/// `PdfPageContentRegenerationStrategy::AutomaticOnEveryChange` then content regeneration
/// will be triggered on the page.
#[inline]
fn add_text_object(
&mut self,
object: PdfPageTextObject<'a>,
) -> Result<PdfPageObject<'a>, PdfiumError> {
self.add_object(PdfPageObject::Text(object))
}
/// Creates a new [PdfPageTextObject] at the given x and y page co-ordinates
/// from the given arguments and adds it to this page objects collection,
/// returning the text object wrapped inside a generic [PdfPageObject] wrapper.
///
/// If the containing `PdfPage` has a content regeneration strategy of
/// `PdfPageContentRegenerationStrategy::AutomaticOnEveryChange` then content regeneration
/// will be triggered on the page.
fn create_text_object(
&mut self,
x: PdfPoints,
y: PdfPoints,
text: impl ToString,
font: &PdfFont,
font_size: PdfPoints,
) -> Result<PdfPageObject<'a>, PdfiumError>;
/// Adds the given [PdfPagePathObject] to this page objects collection,
/// returning the path object wrapped inside a generic [PdfPageObject] wrapper.
///
/// If the containing `PdfPage` has a content regeneration strategy of
/// `PdfPageContentRegenerationStrategy::AutomaticOnEveryChange` then content regeneration
/// will be triggered on the page.
#[inline]
fn add_path_object(
&mut self,
object: PdfPagePathObject<'a>,
) -> Result<PdfPageObject<'a>, PdfiumError> {
self.add_object(PdfPageObject::Path(object))
}
/// Creates a new [PdfPagePathObject] for the given line, with the given
/// stroke settings applied. The new path object will be added to this page objects collection
/// and then returned, wrapped inside a generic [PdfPageObject] wrapper.
///
/// If the containing `PdfPage` has a content regeneration strategy of
/// `PdfPageContentRegenerationStrategy::AutomaticOnEveryChange` then content regeneration
/// will be triggered on the page.
fn create_path_object_line(
&mut self,
x1: PdfPoints,
y1: PdfPoints,
x2: PdfPoints,
y2: PdfPoints,
stroke_color: PdfColor,
stroke_width: PdfPoints,
) -> Result<PdfPageObject<'a>, PdfiumError>;
/// Creates a new [PdfPagePathObject] for the given cubic Bézier curve, with the given
/// stroke settings applied. The new path object will be added to this page objects collection
/// and then returned, wrapped inside a generic [PdfPageObject] wrapper.
///
/// If the containing `PdfPage` has a content regeneration strategy of
/// `PdfPageContentRegenerationStrategy::AutomaticOnEveryChange` then content regeneration
/// will be triggered on the page.
#[allow(clippy::too_many_arguments)]
fn create_path_object_bezier(
&mut self,
x1: PdfPoints,
y1: PdfPoints,
x2: PdfPoints,
y2: PdfPoints,
control1_x: PdfPoints,
control1_y: PdfPoints,
control2_x: PdfPoints,
control2_y: PdfPoints,
stroke_color: PdfColor,
stroke_width: PdfPoints,
) -> Result<PdfPageObject<'a>, PdfiumError>;
/// Creates a new [PdfPagePathObject] for the given rectangle, with the given
/// fill and stroke settings applied. Both the stroke color and the stroke width must be
/// provided for the rectangle to be stroked. The new path object will be added to
/// this page objects collection and then returned, wrapped inside a generic
/// [PdfPageObject] wrapper.
///
/// If the containing `PdfPage` has a content regeneration strategy of
/// `PdfPageContentRegenerationStrategy::AutomaticOnEveryChange` then content regeneration
/// will be triggered on the page.
fn create_path_object_rect(
&mut self,
rect: PdfRect,
stroke_color: Option<PdfColor>,
stroke_width: Option<PdfPoints>,
fill_color: Option<PdfColor>,
) -> Result<PdfPageObject<'a>, PdfiumError>;
/// Creates a new [PdfPagePathObject]. The new path will be created with a circle that fills
/// the given rectangle, with the given fill and stroke settings applied. Both the stroke color
/// and the stroke width must be provided for the circle to be stroked. The new path object
/// will be added to this page objects collection and then returned, wrapped inside a generic
/// [PdfPageObject] wrapper.
///
/// If the containing `PdfPage` has a content regeneration strategy of
/// `PdfPageContentRegenerationStrategy::AutomaticOnEveryChange` then content regeneration
/// will be triggered on the page.
fn create_path_object_circle(
&mut self,
rect: PdfRect,
stroke_color: Option<PdfColor>,
stroke_width: Option<PdfPoints>,
fill_color: Option<PdfColor>,
) -> Result<PdfPageObject<'a>, PdfiumError>;
/// Creates a new [PdfPagePathObject]. The new path will be created with a circle centered
/// at the given coordinates, with the given radius, and with the given fill and stroke settings
/// applied. Both the stroke color and the stroke width must be provided for the circle to be
/// stroked. The new path object will be added to this page objects collection and then
/// returned, wrapped inside a generic [PdfPageObject] wrapper.
///
/// If the containing `PdfPage` has a content regeneration strategy of
/// `PdfPageContentRegenerationStrategy::AutomaticOnEveryChange` then the content regeneration
/// will be triggered on the page.
fn create_path_object_circle_at(
&mut self,
center_x: PdfPoints,
center_y: PdfPoints,
radius: PdfPoints,
stroke_color: Option<PdfColor>,
stroke_width: Option<PdfPoints>,
fill_color: Option<PdfColor>,
) -> Result<PdfPageObject<'a>, PdfiumError>;
/// Creates a new [PdfPagePathObject]. The new path will be created with an ellipse that fills
/// the given rectangle, with the given fill and stroke settings applied. Both the stroke color
/// and the stroke width must be provided for the ellipse to be stroked. The new path object
/// will be added to this page objects collection and then returned, wrapped inside a generic
/// [PdfPageObject] wrapper.
///
/// If the containing `PdfPage` has a content regeneration strategy of
/// `PdfPageContentRegenerationStrategy::AutomaticOnEveryChange` then the content regeneration
/// will be triggered on the page.
fn create_path_object_ellipse(
&mut self,
rect: PdfRect,
stroke_color: Option<PdfColor>,
stroke_width: Option<PdfPoints>,
fill_color: Option<PdfColor>,
) -> Result<PdfPageObject<'a>, PdfiumError>;
/// Creates a new [PdfPagePathObject]. The new path will be created with an ellipse centered
/// at the given coordinates, with the given radii, and with the given fill and stroke settings
/// applied. Both the stroke color and the stroke width must be provided for the ellipse to be
/// stroked. The new path object will be added to this page objects collection and then
/// returned, wrapped inside a generic [PdfPageObject] wrapper.
///
/// If the containing `PdfPage` has a content regeneration strategy of
/// `PdfPageContentRegenerationStrategy::AutomaticOnEveryChange` then the content regeneration
/// will be triggered on the page.
#[allow(clippy::too_many_arguments)]
fn create_path_object_ellipse_at(
&mut self,
center_x: PdfPoints,
center_y: PdfPoints,
x_radius: PdfPoints,
y_radius: PdfPoints,
stroke_color: Option<PdfColor>,
stroke_width: Option<PdfPoints>,
fill_color: Option<PdfColor>,
) -> Result<PdfPageObject<'a>, PdfiumError>;
/// Adds the given [PdfPageImageObject] to this page objects collection,
/// returning the image object wrapped inside a generic [PdfPageObject] wrapper.
///
/// If the containing `PdfPage` has a content regeneration strategy of
/// `PdfPageContentRegenerationStrategy::AutomaticOnEveryChange` then content regeneration
/// will be triggered on the page.
#[inline]
fn add_image_object(
&mut self,
object: PdfPageImageObject<'a>,
) -> Result<PdfPageObject<'a>, PdfiumError> {
self.add_object(PdfPageObject::Image(object))
}
/// Creates a new [PdfPageImageObject] at the given x and y page co-ordinates
/// from the given arguments and adds it to this page objects collection,
/// returning the image object wrapped inside a generic [PdfPageObject] wrapper.
///
/// By default, new image objects have their width and height both set to 1.0 points.
/// If provided, the given width and/or height will be applied to the newly created object to
/// scale its size.
///
/// If the containing `PdfPage` has a content regeneration strategy of
/// `PdfPageContentRegenerationStrategy::AutomaticOnEveryChange` then the content regeneration
/// will be triggered on the page.
///
/// This function is only available when this crate's `image` feature is enabled.
#[cfg(feature = "image")]
fn create_image_object(
&mut self,
x: PdfPoints,
y: PdfPoints,
image: &DynamicImage,
width: Option<PdfPoints>,
height: Option<PdfPoints>,
) -> Result<PdfPageObject<'a>, PdfiumError>;
/// Removes the given [PdfPageObject] from this page objects collection. The object's
/// memory ownership will be removed from the `PdfPage` containing this page objects
/// collection, and the updated page object will be returned. It can be added back to a
/// page objects collection or dropped, at which point the memory owned by the object will
/// be freed.
///
/// If the containing `PdfPage` has a content regeneration strategy of
/// `PdfPageContentRegenerationStrategy::AutomaticOnEveryChange` then content regeneration
/// will be triggered on the page.
fn remove_object(
&mut self,
object: PdfPageObject<'a>,
) -> Result<PdfPageObject<'a>, PdfiumError>;
/// Removes the [PdfPageObject] at the given index from this page objects collection.
/// The object's memory ownership will be removed from the `PdfPage` containing this page objects
/// collection, and the updated page object will be returned. It can be added back into a
/// page objects collection or discarded, at which point the memory owned by the object will
/// be freed.
///
/// If the containing `PdfPage` has a content regeneration strategy of
/// `PdfPageContentRegenerationStrategy::AutomaticOnEveryChange` then content regeneration
/// will be triggered on the page.
fn remove_object_at_index(
&mut self,
index: PdfPageObjectIndex,
) -> Result<PdfPageObject<'a>, PdfiumError>;
}
// Blanket implementation for all PdfPageObjects collection types.
impl<'a, T> PdfPageObjectsCommon<'a> for T
where
T: PdfPageObjectsPrivate<'a>,
{
#[inline]
fn len(&self) -> PdfPageObjectIndex {
self.len_impl()
}
#[inline]
fn get(&self, index: PdfPageObjectIndex) -> Result<PdfPageObject<'a>, PdfiumError> {
self.get_impl(index)
}
#[inline]
fn iter(&'a self) -> PdfPageObjectsIterator<'a> {
self.iter_impl()
}
#[inline]
fn add_object(&mut self, object: PdfPageObject<'a>) -> Result<PdfPageObject<'a>, PdfiumError> {
self.add_object_impl(object)
}
#[inline]
fn create_text_object(
&mut self,
x: PdfPoints,
y: PdfPoints,
text: impl ToString,
font: &PdfFont,
font_size: PdfPoints,
) -> Result<PdfPageObject<'a>, PdfiumError> {
let mut object = PdfPageTextObject::new_from_handles(
self.document_handle(),
text,
font.handle(),
font_size,
self.bindings(),
)?;
object.translate(x, y)?;
self.add_text_object(object)
}
#[inline]
fn create_path_object_line(
&mut self,
x1: PdfPoints,
y1: PdfPoints,
x2: PdfPoints,
y2: PdfPoints,
stroke_color: PdfColor,
stroke_width: PdfPoints,
) -> Result<PdfPageObject<'a>, PdfiumError> {
let object = PdfPagePathObject::new_line_from_bindings(
self.bindings(),
x1,
y1,
x2,
y2,
stroke_color,
stroke_width,
)?;
self.add_path_object(object)
}
#[inline]
fn create_path_object_bezier(
&mut self,
x1: PdfPoints,
y1: PdfPoints,
x2: PdfPoints,
y2: PdfPoints,
control1_x: PdfPoints,
control1_y: PdfPoints,
control2_x: PdfPoints,
control2_y: PdfPoints,
stroke_color: PdfColor,
stroke_width: PdfPoints,
) -> Result<PdfPageObject<'a>, PdfiumError> {
let object = PdfPagePathObject::new_bezier_from_bindings(
self.bindings(),
x1,
y1,
x2,
y2,
control1_x,
control1_y,
control2_x,
control2_y,
stroke_color,
stroke_width,
)?;
self.add_path_object(object)
}
#[inline]
fn create_path_object_rect(
&mut self,
rect: PdfRect,
stroke_color: Option<PdfColor>,
stroke_width: Option<PdfPoints>,
fill_color: Option<PdfColor>,
) -> Result<PdfPageObject<'a>, PdfiumError> {
let object = PdfPagePathObject::new_rect_from_bindings(
self.bindings(),
rect,
stroke_color,
stroke_width,
fill_color,
)?;
self.add_path_object(object)
}
#[inline]
fn create_path_object_circle(
&mut self,
rect: PdfRect,
stroke_color: Option<PdfColor>,
stroke_width: Option<PdfPoints>,
fill_color: Option<PdfColor>,
) -> Result<PdfPageObject<'a>, PdfiumError> {
let object = PdfPagePathObject::new_circle_from_bindings(
self.bindings(),
rect,
stroke_color,
stroke_width,
fill_color,
)?;
self.add_path_object(object)
}
#[inline]
fn create_path_object_circle_at(
&mut self,
center_x: PdfPoints,
center_y: PdfPoints,
radius: PdfPoints,
stroke_color: Option<PdfColor>,
stroke_width: Option<PdfPoints>,
fill_color: Option<PdfColor>,
) -> Result<PdfPageObject<'a>, PdfiumError> {
let object = PdfPagePathObject::new_circle_at_from_bindings(
self.bindings(),
center_x,
center_y,
radius,
stroke_color,
stroke_width,
fill_color,
)?;
self.add_path_object(object)
}
#[inline]
fn create_path_object_ellipse(
&mut self,
rect: PdfRect,
stroke_color: Option<PdfColor>,
stroke_width: Option<PdfPoints>,
fill_color: Option<PdfColor>,
) -> Result<PdfPageObject<'a>, PdfiumError> {
let object = PdfPagePathObject::new_ellipse_from_bindings(
self.bindings(),
rect,
stroke_color,
stroke_width,
fill_color,
)?;
self.add_path_object(object)
}
#[inline]
fn create_path_object_ellipse_at(
&mut self,
center_x: PdfPoints,
center_y: PdfPoints,
x_radius: PdfPoints,
y_radius: PdfPoints,
stroke_color: Option<PdfColor>,
stroke_width: Option<PdfPoints>,
fill_color: Option<PdfColor>,
) -> Result<PdfPageObject<'a>, PdfiumError> {
let object = PdfPagePathObject::new_ellipse_at_from_bindings(
self.bindings(),
center_x,
center_y,
x_radius,
y_radius,
stroke_color,
stroke_width,
fill_color,
)?;
self.add_path_object(object)
}
#[cfg(feature = "image")]
fn create_image_object(
&mut self,
x: PdfPoints,
y: PdfPoints,
image: &DynamicImage,
width: Option<PdfPoints>,
height: Option<PdfPoints>,
) -> Result<PdfPageObject<'a>, PdfiumError> {
let image_width = image.width();
let image_height = image.height();
let mut object =
PdfPageImageObject::new_from_handle(self.document_handle(), self.bindings())?;
object.set_image(image)?;
// Apply specified dimensions, if provided.
match (width, height) {
(Some(width), Some(height)) => {
object.scale(width.value, height.value)?;
}
(Some(width), None) => {
let aspect_ratio = image_height as f32 / image_width as f32;
let height = width * aspect_ratio;
object.scale(width.value, height.value)?;
}
(None, Some(height)) => {
let aspect_ratio = image_height as f32 / image_width as f32;
let width = height / aspect_ratio;
object.scale(width.value, height.value)?;
}
(None, None) => {}
}
object.translate(x, y)?;
self.add_image_object(object)
}
#[inline]
fn remove_object(
&mut self,
object: PdfPageObject<'a>,
) -> Result<PdfPageObject<'a>, PdfiumError> {
self.remove_object_impl(object)
}
fn remove_object_at_index(
&mut self,
index: PdfPageObjectIndex,
) -> Result<PdfPageObject<'a>, PdfiumError> {
if index >= self.len() {
return Err(PdfiumError::PageObjectIndexOutOfBounds);
}
if let Ok(object) = self.get(index) {
self.remove_object(object)
} else {
Err(PdfiumError::PdfiumLibraryInternalError(
PdfiumInternalError::Unknown,
))
}
}
}
/// An iterator over all the [PdfPageObject] objects in a page objects collection.
pub struct PdfPageObjectsIterator<'a> {
objects: &'a dyn PdfPageObjectsPrivate<'a>,
next_index: PdfPageObjectIndex,
}
impl<'a> PdfPageObjectsIterator<'a> {
#[inline]
pub(crate) fn new(objects: &'a dyn PdfPageObjectsPrivate<'a>) -> Self {
PdfPageObjectsIterator {
objects,
next_index: 0,
}
}
}
impl<'a> Iterator for PdfPageObjectsIterator<'a> {
type Item = PdfPageObject<'a>;
fn next(&mut self) -> Option<Self::Item> {
let next = self.objects.get_impl(self.next_index);
self.next_index += 1;
next.ok()
}
}