Login   Register  
PHP Classes
elePHPant
Icontem

File: test.imagemask.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Andrew Collington  >  Image Masking  >  test.imagemask.php  >  Download  
File: test.imagemask.php
Role: Example script
Content type: text/plain
Description: A test file
Class: Image Masking
Apply masks to an image and output the cut image
Author: By
Last change:
Date: 2004-01-18 04:57
Size: 375 bytes
 

Contents

Class file image Download
<?php

    
require 'class.imagemask.php';
    
$im = new imageMask($_POST['colour']);
    
$im->setDebugging(false);
    
$im->maskOption($_POST['position']);
    if (
$im->loadImage(dirname(__FILE__) . "/pictures/{$_POST['file']}"))
    {
        if (
$im->applyMask(dirname(__FILE__) . "/masks/{$_POST['mask']}"))
        {
            
$im->showImage('png');
        }
    }

?>