<?php

	$image = new image($imgRoot . '/treeBig.jpg');

	$image->resize(array(
			'width_max' => 100,
			'height_max' => 100,
		));

	$image->resize(array(
			'width' => 300,
			'height' => 120,
			'background' => '331100',
			'scale' => false,
		));

	$image->output_jpg(100); // 100% quality due to hard edge

?>