
Catalyst::Helper::View::GD::Thumbnail - Helper for GD Thumbnail Views

Create a thumbnail view:
script/myapp_create view Thumbnail Thumbnail
Then in your controller:
sub thumbnail :Local :Args(1) {
my ($self, $c, $image_file_path) = @_;
$c->stash->{x} = 100;
# Create a 100px wide thumbnail
#or
$c->stash->{y} = 100;
# Create a 100px tall thumbnail
$c->stash->{image} = $image_file_path;
$c->forward('View::Thumbnail');
}

Helper for Thumbnail Views.

Please report any bugs or feature requests to bug-catalyst-view-thumbnail at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Catalyst-View-GD-Thumbnail. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.


Nick Logan (ugexe) <ug@skunkds.com>

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.