Some test text!

Search
Hamburger Icon

Cpp / Guides / Optimize

Optimize & compress PDFs in C++

To optimize a PDF with default settings.

PDFDoc doc(filename);
Optimizer::Optimize(doc);

Compress & optimize PDF files
Full code sample which shows how to use 'pdftron.PDF.Optimizer' to reduce PDF file size by removing redundant information and compressing data streams using the latest in image compression technology.

About optimize and compress

Compression as a subset of optimization represents encoding specific data using fewer bits than the original content by reducing the size of the data. This is distinct from optimize (which modifies all images) because you have the ability to choose individual images and to selectively choose the compression type for each.

Apryse SDK supports all basic and advanced compression filters allowed in PDF including:

  • JPEG2000
  • JBIG2
  • CCITT Fax
  • Flate/PNG
  • JPEG/DCT
  • Crypt Filters

Compress images in a PDF document

To compress images using JBIG2 compression inside a PDF.

PDFDoc doc(filename);
SDFDoc& cos_doc = pdf_doc.GetSDFDoc();
int num_objs = cos_doc.XRefSize();
for(int i=1; i<num_objs; ++i) 
{
	Obj obj = cos_doc.GetObj(i);
	if(!obj || obj.IsFree() || !obj.IsStream())
		continue; 

	// Process only images
	DictIterator itr = obj.Find("Subtype");
	if(!itr.HasNext() || strcmp(itr.Value().GetName(), "Image"))
		continue;
	
	Image input_image(obj);

	// Process only gray-scale images
	if(input_image.GetComponentNum() != 1)
		continue;

	int bpc = input_image.GetBitsPerComponent();
	if(bpc != 1)	// Recompress only 1 BPC images
		continue;

	// Skip images that are already compressed using JBIG2
	itr = obj.Find("Filter");
	if (itr.HasNext() && itr.Value().IsName() && !strcmp(itr.Value().GetName(), "JBIG2Decode")) 
		continue; 

	Filter filter=obj.GetDecodedStream();
	FilterReader reader(filter);

	ObjSet hint_set; 	// A hint to image encoder to use JBIG2 compression
	Obj hint=hint_set.CreateArray();

	hint.PushBackName("JBIG2");
	hint.PushBackName("Lossless");

	Image new_image = Image::Create(
		cos_doc, 
		reader, 
		input_image.GetImageWidth(), 
		input_image.GetImageHeight(), 
		1, 
		ColorSpace::CreateDeviceGray(), 
		hint
	);
	cos_doc.Swap(i, new_img.GetSDFDoc().GetObjNum());
}

PDF image JBIG2 compression
Full sample code which illustrates how to recompress bitonal (black and white) images in existing PDF documents using JBIG2 compression.

Get the answers you need: Chat with us