<?php

$conf[ 'output' ] = 'iframe';
$conf[ 'mw_format' ] = '';
$conf[ 'im_format' ] = '';

// check for optional extension methods:
if( extension_loaded( 'magickwand' ) ) // MagickWand
{
	$conf[ 'output' ] = 'magickwand';
	
	$conf[ 'mw_format' ] = 'PNG';
}

if( extension_loaded( 'imagick' ) )
{
	$conf[ 'output' ] = 'imagick';
	
	$conf[ 'im_format' ] = 'PNG';
}

?>
