Hi Anthony,
It uses command line tools but unfortuantly it only recognises some of them(i think), have been trying to alter the colour channels and make a background block colour transparent but it just keeps returing an error of no such files/commands found.
Il keeping trying though(unfortunately not hugely familiar with either applications

......not many on the Drupal forum are that familliar with it either so was chancing the arm on the hope someone might know about it here !!!
Thanks anyways
PS: I might just try use the imagemagick on its own, can I ask a basic question, if I have a php script to remove the background of an image -
<?php
$filename = "The name of the image from the upload form";
$cmd = " $filename -transparent the_colour ";
exec(" convert $cmd output_filename_and_path ");
?>
<?php
// If the form has been submitted do this
if ( $Submit ) {
// Temporary upload image name
$original_image = $_FILES['filename']['tmp_name'];
// Get the image dimensions
$size=GetImageSize( $original_image );
// Name to save the image as - in this case the same as the original
$new_image = $_FILES['filename']['name'];
// Maximum image width
$max_width = "200";
// Maximum image height
$max_height = "90";
// Resize the image and save
exec("convert -size {$size[0]}x{$size[1]} $original_image -thumbnail $max_widthx$max_height $new_image");
echo "File uploaded<br>";
echo "<img src=\"".$new_image."\">";
}
else { ?>
<p>File to upload:</p>
<form method="post" action="<?php echo $PHP_SELF; ?>" enctype="multipart/form-data">
<input type="file" name="filename" />
<input type="Submit" name="Submit" value="Submit" />
</form>
<?php } ?>
Where exactly would I put this script, or is there a command line tool that would do it automatically instead.....sorry have been gettinga bit confused by the whole process....greatly appriciate any advise or info that may have.
Thanks mary
