NAME
Catalyst::Helper::View::GD::Thumbnail - Helper for GD Thumbnail Views
SYNOPSIS
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');
}
DESCRIPTION
Helper for Thumbnail Views.
METHODS
mk_compclass
AUTHOR
Nick Logan, nik_517@yahoo.com
SEE ALSO
COPYRIGHT & LICENSE
Copyright 2010 Nick Logan (ugexe), all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
NAME
[% class %] - Thumbnail View for [% app %]
DESCRIPTION
Thumbnail View for [% app %].
AUTHOR
[% author %]
SEE ALSO
LICENSE
This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself.