<?php
/*
* This example shows how to save CSS sprite to specified location or force to download it
*/
//declaring class instance
include("../css_sprite.class.php");
$sprite = new spritify();
//adding test images
$sprite->add_image("../test_images/php.jpg", "jpeg");
$sprite->add_image("../test_images/php.gif", "gif");
$sprite->add_image("../test_images/elephpant.png", "elephant");
//retrieving error
$arr = $sprite->get_errors();
//if there are any then output them
if(!empty($arr))
{
foreach($arr as $error)
{
echo "<p>".$error."</p>";
}
}
else
{
//saves file in provided path
//in this example it is in the same folder with file name file.png
//$sprite->safe_image("./file.png");
//forces file download in browser window
$sprite->safe_image();
}
?>