error_reporting(0); include("functions.php"); $h1 = "DJ Mike's Image Maker 2"; $h2 = "Psychedelicize"; #### Start psychedelicize #### if ( $_GET[psychedelicize] ) { $image = new Imagick("$_SESSION[path]"); $palette = new Imagick("images/rainbow.gif"); if ( !$_GET[psych_roll] ) { $psych_roll = 0; } else { $psych_roll = (int)$_GET[psych_roll]; $palette->rollimage( $psych_roll, $psych_roll); } foreach ($image as $frame) { $frame->clutimage($palette); } $format = strtolower( $image->getimageformat() ); $path = "temp/$ID.$_SESSION[views].$format"; $frames = $image->getNumberImages(); if ( $frames > 1) { $image->writeImages("$path", TRUE); } else { $image->writeImage("$path"); } # save settings $_SESSION[path] = "$path"; $_SESSION[psych_roll] = $psych_roll; header("Location: display.php"); exit; } #### end psychedelicize function #### include("top.php"); ?>