Some test text!
iOS / Guides / Optimize
To optimize a PDF with default settings.
PTPDFDoc *doc = [[PTPDFDoc alloc] initWithFilepath: filename];
[PTOptimizer Optimize: doc settings: [[PTOptimizerSettings alloc] init]];
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.
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:
To compress images using JBIG2 compression inside a PDF.
PTPDFDoc *doc = [[PTPDFDoc alloc] initWithFilepath: filename];
PTSDFDoc *cos_doc = [pdf_doc GetSDFDoc];
int num_objs = [cos_doc XRefSize];
for(int i=1; i<num_objs; ++i)
{
PTObj * obj = [cos_doc GetObj: i];
if(!obj || [obj IsFree] || ![obj IsStream])
continue;
// Process only images
PTDictIterator *itr = [obj Find: @"Subtype"];
if(![itr HasNext] || !([[[itr Value] GetName] isEqualToString:@"Image"]))
continue;
PTImage *input_image = [[PTImage alloc] initWithImage_xobject: 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] && [[[itr Value] GetName] isEqualToString:@"JBIG2Decode"])
continue;
PTFilter *filter=[obj GetDecodedStream];
PTFilterReader *reader = [[PTFilterReader alloc] initWithFilter: filter];
PTObjSet *hint_set = [[PTObjSet alloc] init]; // A hint to image encoder to use JBIG2 compression
PTObj * hint=[hint_set CreateArray];
[hint PushBackName: @"JBIG2"];
[hint PushBackName: @"Lossless"];
PTImage *new_image = [PTImage CreateWithFilterData: cos_doc
image_data: reader
width: [input_image GetImageWidth]
height: [input_image GetImageHeight]
bpc: 1
color_space: [PTColorSpace CreateDeviceGray]
encoder_hints: hint];
[cos_doc Swap: i obj_num2: [[pdf_doc 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.
Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales