in reply to Re^2: Imager - Problem with Filehandle (Catalyst, DBIx::Class::InflateColumn::FS)
in thread Imager - Problem with Filehandle (Catalyst, DBIx::Class::InflateColumn::FS)
Finally I got this to work using IO::String:
my $data; $thumb->write( type => 'png', data => \$data ) or die; my $thumb_fh = IO::String->new( \$data ) or die; $self->form->item->thumb_pfad($thumb_fh);
Thanks again for your help
|
---|