PHP Classes

File: example_batch.php

Recommend this page to a friend!
  Classes of Mark Rolich   PHP lib for PunyPNG API   example_batch.php   Download  
File: example_batch.php
Role: Example script
Content type: text/plain
Description: batch mode example
Class: PHP lib for PunyPNG API
Compress images using the PunyPNG Web service
Author: By
Last change: Update of example_batch.php
Date: 2 months ago
Size: 418 bytes
 

Contents

Class file image Download
<?php
include 'PunyPNG.php';

$pp = new PunyPNG();
$pp->apiKey = 'replace-with-your-api-key';
$pp->batchMode = true;

$images = array(
   
// this will fail, filesize exceeds 500kb limit
   
'http://upload.wikimedia.org/wikipedia/commons/a/a1/Lanzarote_3_Luc_Viatour.jpg',

   
'files/img1.png',
   
'files/img2.jpg',
   
'files/img3.gif'
);

$pp->compress($images);

echo
$pp->printInfo();
echo
$pp->printErrors();
?>