ImageEn for Delphi and C++ Builder ImageEn for Delphi and C++ Builder

 

ImageEn Forum
Profile    Join    Active Topics    Forum FAQ    Search this forumSearch
 All Forums
 ImageEn Library for Delphi, C++ and .Net
 ImageEn and IEvolution Support Forum
 PDFium PDF size

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

View 
UserName:
Password:
Format  Bold Italicized Underline  Align Left Centered Align Right  Horizontal Rule  Insert Hyperlink   Browse for an image to attach to your post Browse for a zip to attach to your post Insert Code  Insert Quote Insert List
   
Message 

 

Emoji
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Black Eye [B)]
Frown [:(] Shocked [:0] Angry [:(!] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

T O P I C    R E V I E W
zerob Posted - Apr 01 2025 : 07:46:39
Hi Nigel

On the Sample i've sent you, where i created 10 small images, 10 Shapesquares and some texts, the PDF size difference between
Native and PDFium is massive.

Native saves a 3Mb PDF and PDFium a 48Mb PDF.
Is the PDFium engine saving the pictures in uncompressed bitmap format?
So there is no way to compress stuff with the PDFium engine?
Also as the image for the test is 10 times the same image in repeat, the pdf standard is able to reference a single instance of an image
as far as i know. (save 1, use many times).

There are some discusions about saving in JPEG with pdfium (althrough in Rust).
https://github.com/ajrcarey/pdfium-render/issues/184

a sample From a file:
use pdfium_render::prelude::*;

fn main() -> Result<(), PdfiumError> {
let pdfium = Pdfium::new(Pdfium::bind_to_library("../pdfium/libpdfium.so").unwrap());
let mut document = pdfium.create_new_pdf().unwrap();

let mut page = document
.pages_mut()
.create_page_at_start(PdfPagePaperSize::a4())
.unwrap();

let mut object = PdfPageImageObject::new_from_jpeg(&document, "./pexels-rdne-8903303.jpg")?;

object.scale(500.0, 500.0)?;
page.objects_mut().add_image_object(object)?;

document.save_to_file("output.pdf")
}

--------------------------------------------------------

or one sample from a buffer:
use pdfium_render::prelude::*;
use std::fs::File;
use std::io::BufReader;

fn main() -> Result<(), PdfiumError> {
let pdfium = Pdfium::new(Pdfium::bind_to_library("../pdfium/libpdfium.so")?);

let mut document = pdfium.create_new_pdf()?;

let mut page = document
.pages_mut()
.create_page_at_start(PdfPagePaperSize::a4())?;

let mut object = PdfPageImageObject::new_from_jpeg_reader(
&document,
BufReader::new(File::open("./pexels-rdne-8903303.jpg").map_err(PdfiumError::IoError)?),
)?;

object.scale(500.0, 500.0)?;
page.objects_mut().add_image_object(object)?;

document.save_to_file("output.pdf")
}
1   L A T E S T    R E P L I E S    (Newest First)
xequte Posted - Apr 01 2025 : 17:43:06
Hi

We've added JPEG compression for PDFium files in the latest beta. You can email me for it.

Nigel
Xequte Software
www.imageen.com