Authen::PluggableCaptcha::Render::Image::Imager::effects


Authen-PluggableCaptcha documentation Contained in the Authen-PluggableCaptcha distribution.

Index


Code Index:


Authen-PluggableCaptcha documentation Contained in the Authen-PluggableCaptcha distribution.

#!/usr/bin/perl
#
# Authen::PluggableCaptcha::Render::Image::Imager::effects
#
######################################################

use strict;

package Authen::PluggableCaptcha::Render::Image::Imager::effects;
use vars qw(@ISA $VERSION);
$VERSION= '0.01';

######################################################

sub _init_effect {
	my 	( $self , $kw_args )= @_;
	foreach my $key ( keys %{$kw_args} ) {
		$self->{$key}= $$kw_args{$key};
	}
}

sub render {
	my 	( $self )= @_;
	die "render must be subclassed";
}
######################################################
1;