| Catalyst-View-GD documentation | Contained in the Catalyst-View-GD distribution. |
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.
This defaults to gif but should be the name of the method to call on the
GD::Image instance in order to render the images.
This is an array ref of values to be passed as an argument to the GD::Image render method.
The default for this is built from the gd_image_type parameter, which in
most cases will just work, but in some more specific rendering methods in
GD::Image it will not and you will need to assign this explicitly.
This really just handles consuming the configuration parameters.
This method will always look in the gd_image stash for an instance of
GD::Image and it will then render and serve it according to the
configuration setup.
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.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Catalyst-View-GD documentation | Contained in the Catalyst-View-GD distribution. |
package Catalyst::View::GD; use strict; use warnings; use NEXT; use GD; use Scalar::Util 'blessed'; use Catalyst::Exception; our $VERSION = '0.01'; our $AUTHORITY = 'cpan:STEVAN'; use base 'Catalyst::View'; __PACKAGE__->mk_accessors(qw[ gd_image_type gd_image_content_type gd_image_render_args ]); sub new { my($class, $c, $args) = @_; my $self = $class->NEXT::new($c, $args); my $config = $c->config->{'View::GD'}; $args->{gd_image_type} ||= $config->{gd_image_type} || 'gif'; $args->{gd_image_content_type} ||= $config->{gd_image_content_type} || ('image/' . $args->{gd_image_type}); $args->{gd_image_render_args} ||= $config->{gd_image_render_args} || []; $self->gd_image_type($args->{gd_image_type}); $self->gd_image_content_type($args->{gd_image_content_type}); $self->gd_image_render_args($args->{gd_image_render_args}); return $self; } sub process { my $self = shift; my $c = shift; my @args = @_; my $gd_image_type = $c->stash->{gd_image_type} || $self->gd_image_type; my $gd_image_content_type = $c->stash->{gd_image_content_type} || $self->gd_image_content_type; my $gd_image_render_args = $c->stash->{gd_image_render_args} || $self->gd_image_render_args; my $gd_image = $c->stash->{gd_image}; (defined $gd_image) || die "No image to render"; (blessed $gd_image && $gd_image->isa('GD::Image')) || die "Bad image ($gd_image), must be an instance of GD::Image"; my $render_method = $gd_image->can($gd_image_type); (defined $render_method) || die "Cannot render '$gd_image_type' for '$gd_image' : no '$gd_image_type' available"; my $img = eval { $gd_image->$render_method(@{$self->gd_image_render_args}) }; if ($@) { die "Failed to render '$gd_image' as '$gd_image_type' because: $@"; } $c->response->content_type($gd_image_content_type); $c->response->body($img); } 1; __END__