Catalyst::View::GD(3pm) | User Contributed Perl Documentation | Catalyst::View::GD(3pm) |
Catalyst::View::GD - A Catalyst View for GD images
# lib/MyApp/View/GD.pm package MyApp::View::GD; use base 'Catalyst::View::GD'; 1; # configure in lib/MyApp.pm MyApp->config({ ... 'View::GD' => { gd_image_type => 'png', # defaults to 'gif' gd_image_content_type => 'images/png', # defaults to 'image/$gd_image_type' gd_image_render_args => [ 5 ], # defaults to [] }, }); sub foo : Local { my($self, $c) = @_; $c->stash->{gd_image} = $self->create_foo_image(); $c->forward('MyApp::View::GD'); }
This is a Catalyst View subclass which can handle rendering GD based image content.
It is also possible to override the global configuration on a per-request basis by assigning values in the stash using the same keys as used in the configuration.
All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT.
Stevan Little <stevan.little@iinteractive.com>
Copyright 2007 by Infinity Interactive, Inc.
<http://www.iinteractive.com>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
2021-01-08 | perl v5.32.0 |