view release on metacpan or search on metacpan
example/example.pl view on Meta::CPAN
use lib qw(./blib/lib ./blib/arch);
use Prima qw(Application ImageViewer Label);
use Image::Magick;
use Prima::Image::Magick qw(:all);
my $p = Prima::Image-> new( width => 10, height => 10);
$p-> begin_paint;
$p-> clear;
example/example.pl view on Meta::CPAN
my $cubic = $p-> dup;
$cubic-> Resize( width => 100, height => 100, filter => 'Cubic');
push @types, [ $cubic, 'cubic' ];
Prima::MainWindow-> new(
text => 'Prima::Image::Magick demo',
)-> insert( map {
[ 'Prima::Label' =>
pack => { expand => 1, fill => 'both' },
text => "$$_[1] scaling"
], [ 'Prima::ImageViewer' =>
view all matches for this distribution
view release on metacpan or search on metacpan
B<containerStroke> is the stroke color for sub-projects on the chart. This defaults to black.
=item containerFill
B<containerFill> is the fill color for sub-project items. This defaults to grey (as defined by B<Image::Magick>).
=item itemFill
B<itemFill> is the fill color for task items on the chart. This defaults to blue. Note that there is no stroke color for tasks (it is set to the fill).
B<background> is quite obviously the background color. This defaults to white.
=item font
B<font> is the name of the font file as it is passed to B<Image::Magick>. See the docs for that module for more information. The default value for this property is determined by searching @INC for the directory of your Project::Gantt installation, an...
=item doTitle
B<doTitle> is a boolean that determines whether the title of the chart is drawn on it.
January 2005: Modifications made by Peter Weatherdon (peter.weatherdon AT us.cd-adapco.com), including various bug fixes, and nested sub-projects.
=head1 SEE ALSO
L<Image::Magick>, L<Class::Date>
=head1 COPYRIGHT
Copyright 2005, Alexander Christian Westholm.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/RRDTool/OO.pm view on Meta::CPAN
'graph_start' => 1217855462
};
In this case, the option (image => "-") has been used to create the hash key
with the same name, the value of which actually contains the BLOB of the image itself.
This is useful when image needs to be passed to other modules (e.g. Image::Magick),
instead of writing it to disk.
Be aware that rrdtool 1.3 is required for C<graphv> to work.
=head2 Error Handling
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Rudesind.pm view on Meta::CPAN
use Apache::Request;
use File::Slurp ();
use File::Spec;
use Image::Magick ();
use Path::Class ();
use Rudesind::Config;
use Rudesind::Gallery;
use Rudesind::Image;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/SVG/Grid.pm view on Meta::CPAN
L<GD>
L<Imager>
L<Image::Magick>
L<Image::Magick::Chart>
L<Image::Magick::PolyText>
L<Image::Magick::Tiler>
L<SVG>
L<https://www.w3.org/Graphics/SVG/>
view all matches for this distribution
view release on metacpan or search on metacpan
See L<SVG::Parser> for reading SVG files as C<SVG> objects.
=head2 Converting SVG to PNG and other raster image formats
The B<convert> command of L<http://www.imagemagick.org/> (also via L<Image::Magick> ) can convert SVG files to PNG
and other formats.
L<Image::LibRSVG> can convert SVG to other format.
=head1 EXAMPLES
view all matches for this distribution
view release on metacpan or search on metacpan
lib/SWF/Builder/Character/Bitmap.pm view on Meta::CPAN
my ($class, $obj, $type) = @_;
unless (defined($type)) {
if (UNIVERSAL::isa($obj, 'GD')) {
$type = 'GD';
} elsif (UNIVERSAL::isa($obj, 'Image::Magick')) {
$type = 'ImageMagick';
} elsif (not ref($obj)) {
if ($obj =~/\.png$/i or $obj =~/\.jpe?g$/i or $obj =~ /\.xpm$/i or $obj =~ /\.gd2$/i) {
$type = 'GD';
} else {
lib/SWF/Builder/Character/Bitmap.pm view on Meta::CPAN
takes a GD::Image object.
=item ImageMagick
takes an Image::Magick object.
=item Custom
takes an array reference of [ $width, $height, $colors, $is_alpha, \&pixsub ].
$width and $height are the width and height of the bitmap.
view all matches for this distribution
view release on metacpan or search on metacpan
samples/img2swf.plx view on Meta::CPAN
use strict;
use SWF::File;
use SWF::Element;
use Image::Magick;
use Compress::Zlib;
use Getopt::Std;
my %opt;
getopts('ft', \%opt);
samples/img2swf.plx view on Meta::CPAN
exit(1);
}
($swffile = $imagefile) =~s/\.[^.]+$/.swf/ unless defined $swffile;
my $image = Image::Magick->new;
$image->Read($imagefile);
my $height = $image->Get('height');
my $width = $image->Get('width');
die "Can't open $imagefile." if ($height == 0 and $width == 0);
view all matches for this distribution
view release on metacpan or search on metacpan
TableImage.pm view on Meta::CPAN
# Documentation is at the end of the file in POD format.
#-------------------------------------------------------
package Schedule::TableImage;
use strict;
use Image::Magick;
use Text::Wrapper;
require Exporter;
use fields qw(days hours events width height xoffset yoffset totaldays totalhours daywidth hourheight image max_textlen);
use vars qw(%FIELDS $VERSION);
TableImage.pm view on Meta::CPAN
#------------------------------------
sub _set_text_size {
my ($self) = @_;
my ($x_ppem, $y_ppem, $ascender, $max_advance);
my $text = "12:00 PM";
my $im = Image::Magick->new();
my $rc = $im->Read("label:$text");
$self->error("Error finding text size",
"Could not create image to read text size: $rc") if $rc;
($x_ppem, $y_ppem, $ascender, $self->{pt_txt_desc},$self->{pt_txt_width}, $self->{pt_txt_height}, $max_advance)
TableImage.pm view on Meta::CPAN
#---------------------------------------------
sub _setup_image {
my ($self, $w, $h) = @_;
# some typeing shortcuts
my $im = Image::Magick->new(size => "$w".'x'."$h" );
my ($rc); #errors
$rc = $im->Read('xc:white');
$self->error("Error creating schedule", "Could not create image to write text to: $rc") if $rc;
TableImage.pm view on Meta::CPAN
# POD from here to end of file
#---------------------------------
=head1 NAME
Schedule::TableImage - creates a graphic schedule with labelled events. User inputs the hours, days, and events to show. Uses Image::Magick to generate the image file.
=head1 SYNOPSIS
use Schedule::TableImage;
my $cal = Schedule::TableImage->new(days => \@days, hours => \@hour);
TableImage.pm view on Meta::CPAN
This schedule image is a grid in which days are labelled horizontally and hours are labelled vertically.
This is useful to a week view, although you can have as many days as you would like, with any label you like.
Events are colored boxes with text labels for a given time and day.
If events overlap on a given day or time, the width of the day expands to accomodate both (or all) events.
Requires Image::Magick, and Text::Wrapper.
=head1 FUNCTIONS
=head2 new
TableImage.pm view on Meta::CPAN
=head2 write_image
$cal->write_image('/public_html/myimage.png' [, '90']);
Writes the Image to the given path and filename. You can use any image type your Image::Magick installation supports.
Review the Image::Magick docs to see whether a quality metric is useful to you and your filetype.
=head2 clear_events
clear_events removes all events from your schedule object.
TableImage.pm view on Meta::CPAN
$cal->error("one error message", "a different error message");
The current error functionality simply dies with the error messages.
You probably never need to call this, but you may see the effects.
The first error message is something the user might want to see.
The second message has information for the programmer or debugger,
and includes any Image::Magick error messages.
=head1 AUTHOR
Rebecca Hunt (rahunt@mtholyoke.edu)
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Selenium/Screenshot.pm view on Meta::CPAN
L<Image::Compare|Image::Compare>
=item *
L<Image::Magick|Image::Magick>
=item *
L<Selenium::Remote::Driver|Selenium::Remote::Driver>
view all matches for this distribution
view release on metacpan or search on metacpan
scripts/Graphical/LSystem/Turtle.sf view on Meta::CPAN
#!/usr/bin/ruby
require('Image::Magick')
class Turtle(
x = 500,
y = 500,
angle = 0,
scripts/Graphical/LSystem/Turtle.sf view on Meta::CPAN
xoff = 0,
yoff = 0,
color = 'black',
) {
has im = %O<Image::Magick>.new(size => "#{x}x#{y}")
method init {
angle.deg2rad!
im.ReadImage('canvas:white')
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Silki/Role/Schema/File.pm view on Meta::CPAN
use namespace::autoclean;
use autodie;
use Digest::SHA qw( sha256_hex );
use File::stat;
use Image::Magick;
use Image::Thumbnail;
use Silki::Config;
use Silki::Types qw( File Maybe Str );
use Moose::Role;
lib/Silki/Role/Schema/File.pm view on Meta::CPAN
if -f $file
&& ( File::stat::populate( CORE::stat(_) ) )->mtime()
>= $self->creation_datetime()->epoch();
Image::Thumbnail->new(
module => 'Image::Magick',
size => $dimensions,
create => 1,
inputpath => $self->file_on_disk()->stringify(),
outputpath => $file->stringify(),
);
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Solstice/Resource/File/BlackBox.pm view on Meta::CPAN
use Solstice::Database;
use Solstice::DateTime;
use Solstice::Encryption;
use Image::Magick;
use Digest::MD5 qw(md5_hex);
use constant TRUE => 1;
use constant FALSE => 0;
lib/Solstice/Resource/File/BlackBox.pm view on Meta::CPAN
my $ct_service = $self->getContentTypeService();
if ($ct_service->isKnownType($self->getContentType())) {
# Images only: get width and height attributes once
if ($ct_service->isImageType($self->getContentType())) {
my $image = Image::Magick->new();
my $msg = $image->Read(filename => $file_path);
unless ($msg && $msg !~ /^Exception (415|420)/) {
$self->setAttribute('width', $image->Get('width'));
$self->setAttribute('height', $image->Get('height'));
}
view all matches for this distribution
view release on metacpan or search on metacpan
CGI::Carp
Data::Dumper
SVN::Agent
SVN::Agent::Dummy
Image::Magick
Sorauta::Utility
COPYRIGHT AND LICENCE
Put the correct copyright and licence information here.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Sorauta/SVN/AutoCommit.pm view on Meta::CPAN
use utf8;
use CGI::Carp qw/fatalsToBrowser/;
use Data::Dumper;
use SVN::Agent;
use SVN::Agent::Dummy;
use Image::Magick;
use Sorauta::Utility;
our $VERSION = '0.02';
# ãµã ãã¤ã«ã®ç¸¦æ¨ª
lib/Sorauta/SVN/AutoCommit.pm view on Meta::CPAN
# res:
# result: null
#==========================================
sub _create_thumbnail_image {
my($self, $sa, $original_file_path, $thumbnail_file_path) = @_;
my $image = Image::Magick->new;
# å
ç»åãèªã¿è¾¼ã
print $image->Read(
$original_file_path
);
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Syntax/Highlight/Universal/hrc/base/perl-genkeywords.hrc view on Meta::CPAN
<word name="Image::GD::Thumbnail"/>
<word name="Image::Grab"/>
<word name="Image::IPTCInfo"/>
<word name="Image::Imlib2"/>
<word name="Image::Info"/>
<word name="Image::Magick"/>
<word name="Image::ParseGIF"/>
<word name="Image::Size"/>
<word name="Image::Timeline"/>
<word name="Image::WorldMap"/>
</keywords>
view all matches for this distribution
view release on metacpan or search on metacpan
share/2021.csv view on Meta::CPAN
Fancazzista-Scrap-1.00,2021-02-01T21:38:58,AMICELI,cpan,released,1.00,,Fancazzista-Scrap,"Scrap websites article, reddit posts and dev.to article"
Net-SNMP-Mixin-Dot1dBase-0.10,2021-02-01T21:46:56,GAISSMAI,latest,released,0.10,,Net-SNMP-Mixin-Dot1dBase,"mixin class for the switch dot1d base values"
File-LoadLines-1.02,2021-02-01T21:54:48,JV,backpan,released,1.02,,File-LoadLines,"Load lines from file"
Tree-1.15,2021-02-01T23:34:45,RSAVAGE,latest,released,1.15,,Tree,"Persist multiple trees in a single db table, preserving child order"
Tree-Binary-1.09,2021-02-01T23:46:40,RSAVAGE,latest,released,1.09,,Tree-Binary,"An Object Oriented Binary Tree for Perl"
Tree-Cladogram-1.04,2021-02-01T23:57:37,RSAVAGE,latest,released,1.04,,Tree-Cladogram,"Render a cladogram using Imager or Image::Magick"
WordList-ID-ColorName-PERLANCAR-0.002,2021-02-02T00:05:35,PERLANCAR,backpan,released,0.002,1,WordList-ID-ColorName-PERLANCAR,"List of color names in Indonesian"
Tree-DAG_Node-1.32,2021-02-02T00:08:31,RSAVAGE,latest,released,1.32,,Tree-DAG_Node,"An N-ary tree"
Tree-DAG_Node-Persist-1.13,2021-02-02T00:20:11,RSAVAGE,latest,released,1.13,,Tree-DAG_Node-Persist,"Persist multiple trees in a single db table, preserving child order"
Tree-Persist-1.14,2021-02-02T00:35:40,RSAVAGE,latest,released,1.14,,Tree-Persist,"A transparent persistence layer for Tree and its children"
Tree-Simple-1.34,2021-02-02T01:26:51,RSAVAGE,latest,released,1.34,,Tree-Simple,"A simple tree object"
share/2021.csv view on Meta::CPAN
Stats-Fermi-0.1.3,2021-04-12T17:26:01,KOBOLDWIZ,cpan,released,v0.1.3,,Stats-Fermi,"Perl extension for Fermi, Boltzmann potentials"
OEIS-2021041201,2021-04-12T17:47:59,ABIGAIL,latest,released,2021041201,1,OEIS,"Fetch values from sequences of the OEIS."
Stats-Hawking-0.1.1,2021-04-12T18:52:44,KOBOLDWIZ,cpan,released,v0.1.1,1,Stats-Hawking,"Perl extension for a Hawking Boltzmann Model"
Logfile-Tail-0.7001_01,2021-04-12T19:24:37,BRAINBUZ,backpan,developer,0.7001_01,,Logfile-Tail,"read log files"
Playwright-0.006,2021-04-12T20:32:14,TEODESIAN,cpan,released,0.006,,Playwright,"Perl client for Playwright"
Alien-ImageMagick-0.08,2021-04-12T20:37:40,AMBS,latest,released,0.08,,Alien-ImageMagick,"cpanm compatible Image::Magick packaging."
Lagrange-0.1.3,2021-04-12T20:39:07,KOBOLDWIZ,cpan,released,v0.1.3,1,Lagrange,"Perl extension for Lagrange Theory and Applications"
Class-Hook-0.06,2021-04-12T21:03:46,JANITOR,latest,released,0.06,,Class-Hook,"Add hooks on methods from other classes"
Lagrange-0.1.5,2021-04-12T23:00:06,KOBOLDWIZ,cpan,released,v0.1.5,,Lagrange,"Perl extension for Lagrange Theory and Applications"
Minion-Backend-mysql-0.24,2021-04-12T23:06:08,PREACTION,cpan,released,0.24,,Minion-Backend-mysql,"MySQL backend"
Selenium-Client-1.04,2021-04-12T23:50:36,TEODESIAN,cpan,released,1.04,,Selenium-Client,"Module for communicating with WC3 standard selenium servers"
view all matches for this distribution
view release on metacpan or search on metacpan
share/2022.csv view on Meta::CPAN
"Acme-Mitey-Cards-0.004","2022-06-28T16:35:36","TOBYINK","backpan","released","0.004","","Acme-Mitey-Cards","demo of Mite"
"XS-Framework-1.5.4","2022-06-28T16:41:23","SYBER","cpan","released","v1.5.4","","XS-Framework","Framework for building C++ XS modules with shared code, typemaps and C++ perl API."
"Plack-Middleware-CSP-0.01","2022-06-28T17:34:53","ASHLEY","backpan","released","0.01","1","Plack-Middleware-CSP","Apply HTTP::CSPHeaders to your psgi application."
"Catmandu-RIS-0.13","2022-06-28T18:48:20","VPEIL","latest","released","0.13","","Catmandu-RIS","Catmandu modules for working with RIS data"
"Text-Bidi-2.17","2022-06-28T19:39:12","KAMENSKY","cpan","released","2.17","","Text-Bidi","Unicode bidi algorithm using libfribidi"
"Alien-ImageMagick-0.09","2022-06-28T19:56:09","AMBS","latest","released","0.09","","Alien-ImageMagick","cpanm compatible Image::Magick packaging."
"Text-Minify-XS-v0.6.4","2022-06-28T20:54:28","RRWO","backpan","released","v0.6.4","","Text-Minify-XS","remove indentation and trailing whitespace"
"File-Codeowners-0.54","2022-06-28T22:25:34","CCM","cpan","released","0.54","","File-Codeowners","Read and write CODEOWNERS files"
"App-Codeowners-0.51","2022-06-28T23:02:34","CCM","latest","released","0.51","","App-Codeowners","A tool for managing CODEOWNERS files"
"Mite-0.001001","2022-06-28T23:23:27","TOBYINK","backpan","released","0.001001","","Mite","Moose-like OO, fast to load, with zero dependencies"
"HTML-Valid-0.09","2022-06-28T23:52:25","BKB","latest","released","0.09","","HTML-Valid","tidy/validate HTML"
view all matches for this distribution
view release on metacpan or search on metacpan
share/2021.csv view on Meta::CPAN
Fancazzista-Scrap-1.00,2021-02-01T21:38:58,AMICELI,cpan,released,1.00,,Fancazzista-Scrap,"Scrap websites article, reddit posts and dev.to article"
Net-SNMP-Mixin-Dot1dBase-0.10,2021-02-01T21:46:56,GAISSMAI,latest,released,0.10,,Net-SNMP-Mixin-Dot1dBase,"mixin class for the switch dot1d base values"
File-LoadLines-1.02,2021-02-01T21:54:48,JV,backpan,released,1.02,,File-LoadLines,"Load lines from file"
Tree-1.15,2021-02-01T23:34:45,RSAVAGE,latest,released,1.15,,Tree,"Persist multiple trees in a single db table, preserving child order"
Tree-Binary-1.09,2021-02-01T23:46:40,RSAVAGE,latest,released,1.09,,Tree-Binary,"An Object Oriented Binary Tree for Perl"
Tree-Cladogram-1.04,2021-02-01T23:57:37,RSAVAGE,latest,released,1.04,,Tree-Cladogram,"Render a cladogram using Imager or Image::Magick"
WordList-ID-ColorName-PERLANCAR-0.002,2021-02-02T00:05:35,PERLANCAR,backpan,released,0.002,1,WordList-ID-ColorName-PERLANCAR,"List of color names in Indonesian"
Tree-DAG_Node-1.32,2021-02-02T00:08:31,RSAVAGE,latest,released,1.32,,Tree-DAG_Node,"An N-ary tree"
Tree-DAG_Node-Persist-1.13,2021-02-02T00:20:11,RSAVAGE,latest,released,1.13,,Tree-DAG_Node-Persist,"Persist multiple trees in a single db table, preserving child order"
Tree-Persist-1.14,2021-02-02T00:35:40,RSAVAGE,latest,released,1.14,,Tree-Persist,"A transparent persistence layer for Tree and its children"
Tree-Simple-1.34,2021-02-02T01:26:51,RSAVAGE,latest,released,1.34,,Tree-Simple,"A simple tree object"
share/2021.csv view on Meta::CPAN
Stats-Fermi-0.1.3,2021-04-12T17:26:01,KOBOLDWIZ,cpan,released,v0.1.3,,Stats-Fermi,"Perl extension for Fermi, Boltzmann potentials"
OEIS-2021041201,2021-04-12T17:47:59,ABIGAIL,latest,released,2021041201,1,OEIS,"Fetch values from sequences of the OEIS."
Stats-Hawking-0.1.1,2021-04-12T18:52:44,KOBOLDWIZ,cpan,released,v0.1.1,1,Stats-Hawking,"Perl extension for a Hawking Boltzmann Model"
Logfile-Tail-0.7001_01,2021-04-12T19:24:37,BRAINBUZ,backpan,developer,0.7001_01,,Logfile-Tail,"read log files"
Playwright-0.006,2021-04-12T20:32:14,TEODESIAN,cpan,released,0.006,,Playwright,"Perl client for Playwright"
Alien-ImageMagick-0.08,2021-04-12T20:37:40,AMBS,latest,released,0.08,,Alien-ImageMagick,"cpanm compatible Image::Magick packaging."
Lagrange-0.1.3,2021-04-12T20:39:07,KOBOLDWIZ,cpan,released,v0.1.3,1,Lagrange,"Perl extension for Lagrange Theory and Applications"
Class-Hook-0.06,2021-04-12T21:03:46,JANITOR,latest,released,0.06,,Class-Hook,"Add hooks on methods from other classes"
Lagrange-0.1.5,2021-04-12T23:00:06,KOBOLDWIZ,cpan,released,v0.1.5,,Lagrange,"Perl extension for Lagrange Theory and Applications"
Minion-Backend-mysql-0.24,2021-04-12T23:06:08,PREACTION,cpan,released,0.24,,Minion-Backend-mysql,"MySQL backend"
Selenium-Client-1.04,2021-04-12T23:50:36,TEODESIAN,cpan,released,1.04,,Selenium-Client,"Module for communicating with WC3 standard selenium servers"
view all matches for this distribution
view release on metacpan or search on metacpan
share/2022.csv view on Meta::CPAN
"Acme-Mitey-Cards-0.004","2022-06-28T16:35:36","TOBYINK","backpan","released","0.004","","Acme-Mitey-Cards","demo of Mite"
"XS-Framework-1.5.4","2022-06-28T16:41:23","SYBER","cpan","released","v1.5.4","","XS-Framework","Framework for building C++ XS modules with shared code, typemaps and C++ perl API."
"Plack-Middleware-CSP-0.01","2022-06-28T17:34:53","ASHLEY","backpan","released","0.01","1","Plack-Middleware-CSP","Apply HTTP::CSPHeaders to your psgi application."
"Catmandu-RIS-0.13","2022-06-28T18:48:20","VPEIL","latest","released","0.13","","Catmandu-RIS","Catmandu modules for working with RIS data"
"Text-Bidi-2.17","2022-06-28T19:39:12","KAMENSKY","cpan","released","2.17","","Text-Bidi","Unicode bidi algorithm using libfribidi"
"Alien-ImageMagick-0.09","2022-06-28T19:56:09","AMBS","latest","released","0.09","","Alien-ImageMagick","cpanm compatible Image::Magick packaging."
"Text-Minify-XS-v0.6.4","2022-06-28T20:54:28","RRWO","backpan","released","v0.6.4","","Text-Minify-XS","remove indentation and trailing whitespace"
"File-Codeowners-0.54","2022-06-28T22:25:34","CCM","cpan","released","0.54","","File-Codeowners","Read and write CODEOWNERS files"
"App-Codeowners-0.51","2022-06-28T23:02:34","CCM","latest","released","0.51","","App-Codeowners","A tool for managing CODEOWNERS files"
"Mite-0.001001","2022-06-28T23:23:27","TOBYINK","backpan","released","0.001001","","Mite","Moose-like OO, fast to load, with zero dependencies"
"HTML-Valid-0.09","2022-06-28T23:52:25","BKB","latest","released","0.09","","HTML-Valid","tidy/validate HTML"
view all matches for this distribution
view release on metacpan or search on metacpan
share/2024.csv view on Meta::CPAN
"Ixchel-0.12.2","2024-04-18T18:21:40","VVELOX","latest","released","v0.12.2","","Ixchel","Automate various sys admin stuff."
"IPCamera-Reolink-1.02","2024-04-18T18:27:28","SFOBERSKI","latest","released","1.02","","IPCamera-Reolink","Reolink API provides access to the System, Security, Network, Video input, Enc, Record, PTZ, and Alarm functions of a Reolink IP Camera or NVR...
"Number-Iterator-0.01","2024-04-18T19:45:31","LNATION","latest","released","0.01","1","Number-Iterator","The great new Number::Iterator!"
"CXC-Exporter-Util-0.08","2024-04-18T19:48:23","DJERIUS","latest","released","0.08","","CXC-Exporter-Util","Tagged Based Exporting"
"URN-OASIS-SAML2-0.004","2024-04-18T19:52:24","WATERKIP","cpan","released","0.004","","URN-OASIS-SAML2","Constants for urn:oasis SAML2 implementations"
"Alien-ImageMagick-0.10","2024-04-18T21:04:11","AMBS","latest","released","0.10","","Alien-ImageMagick","cpanm compatible Image::Magick packaging."
"Auth-GoogleAuth-1.05","2024-04-18T22:00:55","GRYPHON","latest","released","1.05","","Auth-GoogleAuth","Google Authenticator TBOT Abstraction"
"SortKey-date_in_text-0.001","2024-04-19T00:05:23","PERLANCAR","cpan","released","0.001","1","SortKey-date_in_text","Date found in text as sort key"
"App-Chart-272","2024-04-19T00:13:12","KRYDE","cpan","released","272","","App-Chart","Stock and commodity charting program."
"Finance-Quote-1.60_01","2024-04-19T01:32:15","BPSCHUCK","cpan","developer","1.60_01","","Finance-Quote","Get stock and mutual fund quotes from various exchanges"
"WebGPU-Direct-0.13-TRIAL","2024-04-19T03:21:38","ATRODO","cpan","developer","0.13","","WebGPU-Direct","Direct access to the WebGPU native APIs."
view all matches for this distribution
view release on metacpan or search on metacpan
share/2003.csv view on Meta::CPAN
Geo-TAF-1.04,2003-02-03T17:38:51,DJK,latest,released,1.04,,Geo-TAF,"Decode METAR and TAF strings"
Apache-AxKit-Plugin-AddXSLParams-Request-1.01,2003-02-03T17:58:40,KHAMPTON,cpan,released,1.01,,Apache-AxKit-Plugin-AddXSLParams-Request,"Provides a way to pass info from the Apache::Request to XSLT params"
CPAN-Checksums-1.016,2003-02-03T19:21:46,ANDK,backpan,released,1.016,,CPAN-Checksums,"Write a CHECKSUMS file for a directory as on CPAN"
Authen-SASL-Cyrus-0.07,2003-02-03T21:07:14,ADAMSON,cpan,released,0.07,,Authen-SASL-Cyrus,"XS SASL Authentication"
SQL-OrderBy-0.01,2003-02-03T21:26:52,GENE,backpan,released,0.01,,SQL-OrderBy,"Perl exstension to transform an SQL ORDER BY clause."
Image-IPTCInfo-RasterCaption-0.1,2003-02-03T21:52:39,LGODDARD,latest,released,0.1,1,Image-IPTCInfo-RasterCaption,"get/set IPTC raserized caption w/Image::Magick"
XML-RSS-1.01,2003-02-03T21:56:07,BDFOY,backpan,released,1.01,,XML-RSS,"tests for parsing RSS 2.0 data with XML::RSS.pm"
Finance-Streamer-1.09,2003-02-03T22:50:55,JERI,backpan,released,1.09,,Finance-Streamer,"Interface to Datek Streamer."
Apache-Session-Lazy-0.05,2003-02-03T22:57:32,GKAPUR,latest,released,0.05,,Apache-Session-Lazy,"Perl extension for opening Apache::Sessions on first read/write access."
SQL-OrderBy-0.02,2003-02-04T00:47:46,GENE,backpan,released,0.02,,SQL-OrderBy,"Perl extension to transform an SQL ORDER BY clause."
SQL-OrderBy-0.03,2003-02-04T00:52:48,GENE,backpan,released,0.03,,SQL-OrderBy,"Perl extension to transform an SQL ORDER BY clause."
share/2003.csv view on Meta::CPAN
Convert-UUlib-1.0,2003-11-24T16:10:49,MLEHMANN,backpan,released,1.0,,Convert-UUlib,"Perl interface to the uulib library (a.k.a. uudeview/uuenview)."
SOAP-Data-Builder-0.3,2003-11-24T16:18:59,TEEJAY,backpan,released,0.3,,SOAP-Data-Builder,"A wrapper simplifying SOAP::Data and SOAP::Serialiser"
GD-SVG-0.19,2003-11-24T16:28:47,TWH,cpan,released,0.19,,GD-SVG,
Text-TagTemplate-1.6.1,2003-11-24T17:07:59,MATISSE,backpan,released,1.6.1,,Text-TagTemplate,
Convert-Binary-C-0.49,2003-11-24T17:40:09,MHX,backpan,released,0.49,,Convert-Binary-C,"Binary Data Conversion using C Types"
Schedule-TableImage-1.00,2003-11-24T18:20:31,RAHUNT,cpan,released,1.00,1,Schedule-TableImage,"creates a graphic schedule with labelled events. User inputs the hours, days, and events to show. Uses Image::Magick to generate the image file."
POE-Component-EasyDBI-0.01,2003-11-24T18:35:00,XANTUS,backpan,released,0.01,1,POE-Component-EasyDBI,"Perl extension for asynchronous non-blocking DBI calls in POE"
Text-TabTable-1.02,2003-11-24T18:56:10,MDIMEO,latest,released,1.02,,Text-TabTable,
POE-Filter-Asterisk-Manager-0.02,2003-11-24T19:05:56,XANTUS,backpan,released,0.02,,POE-Filter-Asterisk-Manager,"convert stream to hashref, and hashref to stream"
POE-Component-Client-Asterisk-Manager-0.03,2003-11-24T19:17:17,XANTUS,backpan,released,0.03,,POE-Component-Client-Asterisk-Manager,"Event-based Asterisk Manager Client"
POE-Component-EasyDBI-0.02,2003-11-24T20:10:10,XANTUS,backpan,released,0.02,,POE-Component-EasyDBI,"Perl extension for asynchronous non-blocking DBI calls in POE"
view all matches for this distribution
view release on metacpan or search on metacpan
share/2003.csv view on Meta::CPAN
Geo-TAF-1.04,2003-02-03T17:38:51,DJK,latest,released,1.04,,Geo-TAF,"Decode METAR and TAF strings"
Apache-AxKit-Plugin-AddXSLParams-Request-1.01,2003-02-03T17:58:40,KHAMPTON,cpan,released,1.01,,Apache-AxKit-Plugin-AddXSLParams-Request,"Provides a way to pass info from the Apache::Request to XSLT params"
CPAN-Checksums-1.016,2003-02-03T19:21:46,ANDK,backpan,released,1.016,,CPAN-Checksums,"Write a CHECKSUMS file for a directory as on CPAN"
Authen-SASL-Cyrus-0.07,2003-02-03T21:07:14,ADAMSON,cpan,released,0.07,,Authen-SASL-Cyrus,"XS SASL Authentication"
SQL-OrderBy-0.01,2003-02-03T21:26:52,GENE,backpan,released,0.01,,SQL-OrderBy,"Perl exstension to transform an SQL ORDER BY clause."
Image-IPTCInfo-RasterCaption-0.1,2003-02-03T21:52:39,LGODDARD,latest,released,0.1,1,Image-IPTCInfo-RasterCaption,"get/set IPTC raserized caption w/Image::Magick"
XML-RSS-1.01,2003-02-03T21:56:07,BDFOY,backpan,released,1.01,,XML-RSS,"tests for parsing RSS 2.0 data with XML::RSS.pm"
Finance-Streamer-1.09,2003-02-03T22:50:55,JERI,backpan,released,1.09,,Finance-Streamer,"Interface to Datek Streamer."
Apache-Session-Lazy-0.05,2003-02-03T22:57:32,GKAPUR,latest,released,0.05,,Apache-Session-Lazy,"Perl extension for opening Apache::Sessions on first read/write access."
SQL-OrderBy-0.02,2003-02-04T00:47:46,GENE,backpan,released,0.02,,SQL-OrderBy,"Perl extension to transform an SQL ORDER BY clause."
SQL-OrderBy-0.03,2003-02-04T00:52:48,GENE,backpan,released,0.03,,SQL-OrderBy,"Perl extension to transform an SQL ORDER BY clause."
share/2003.csv view on Meta::CPAN
Convert-UUlib-1.0,2003-11-24T16:10:49,MLEHMANN,backpan,released,1.0,,Convert-UUlib,"Perl interface to the uulib library (a.k.a. uudeview/uuenview)."
SOAP-Data-Builder-0.3,2003-11-24T16:18:59,TEEJAY,backpan,released,0.3,,SOAP-Data-Builder,"A wrapper simplifying SOAP::Data and SOAP::Serialiser"
GD-SVG-0.19,2003-11-24T16:28:47,TWH,cpan,released,0.19,,GD-SVG,
Text-TagTemplate-1.6.1,2003-11-24T17:07:59,MATISSE,backpan,released,1.6.1,,Text-TagTemplate,
Convert-Binary-C-0.49,2003-11-24T17:40:09,MHX,backpan,released,0.49,,Convert-Binary-C,"Binary Data Conversion using C Types"
Schedule-TableImage-1.00,2003-11-24T18:20:31,RAHUNT,cpan,released,1.00,1,Schedule-TableImage,"creates a graphic schedule with labelled events. User inputs the hours, days, and events to show. Uses Image::Magick to generate the image file."
POE-Component-EasyDBI-0.01,2003-11-24T18:35:00,XANTUS,backpan,released,0.01,1,POE-Component-EasyDBI,"Perl extension for asynchronous non-blocking DBI calls in POE"
Text-TabTable-1.02,2003-11-24T18:56:10,MDIMEO,latest,released,1.02,,Text-TabTable,
POE-Filter-Asterisk-Manager-0.02,2003-11-24T19:05:56,XANTUS,backpan,released,0.02,,POE-Filter-Asterisk-Manager,"convert stream to hashref, and hashref to stream"
POE-Component-Client-Asterisk-Manager-0.03,2003-11-24T19:17:17,XANTUS,backpan,released,0.03,,POE-Component-Client-Asterisk-Manager,"Event-based Asterisk Manager Client"
POE-Component-EasyDBI-0.02,2003-11-24T20:10:10,XANTUS,backpan,released,0.02,,POE-Component-EasyDBI,"Perl extension for asynchronous non-blocking DBI calls in POE"
view all matches for this distribution
view release on metacpan or search on metacpan
HTTP::Request: 1.40
IO::File::WithPath: 0
IO::Socket::SSL: 0
IO::Zlib: 1.09
Image::ExifTool: 8.00
Image::Magick: 6.0
JSON: 2.17
JSON::Any: 1.22
JSON::PP: 0.00
JSON::XS: 2.26
JavaScript::Minifier::XS: 0.05
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Task/WebGUI8.pm view on Meta::CPAN
=head1 DESCRIPTION
Installing Task::WebGUI8 will ensure that you have all the prereq modules needed to run WebGUI8 (L<http://www.webgui.org>).
L<Task::WebGUI8> is a fork of L<Task::WebGUI>; most notably, some graphs are now rendered with L<GD>, and the L<Image::Magick> depedency has been removed.
Prior to that change, L<Task::WebGUI> attempted to support versions both 7 and 8.
=head1 AUTHOR
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Tempest.pm view on Meta::CPAN
These constants can be assigned to the C<image_lib> property to specify use
of a given image library for all image manipulations.
=head3 C<LIB_MAGICK>
For forcing use of L<Image::Magick|Image::Magick> support.
=head3 C<LIB_GMAGICK>
For forcing use of L<Graphics::Magick|Graphics::Magick> support.
lib/Tempest.pm view on Meta::CPAN
For forcing use of L<GD|GD> support.
=cut
use constant LIB_MAGICK => 'Image::Magick';
use constant LIB_GMAGICK => 'Graphics::Magick';
use constant LIB_GD => 'GD';
=head1 PROPERTIES
lib/Tempest.pm view on Meta::CPAN
The setters also return the current class instance, so they can be 'chained'.
For example, if we wanted to change the C<image_lib> used for image processing,
and immediately render the resulting heatmap:
# render heatmap with Image::Magick support
$heatmap ->set_image_lib( Tempest::LIB_MAGICK ) ->render();
=head2 Getters
Each getter method returns the current value of its respective property.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Template/Flute/PDF/Image.pm view on Meta::CPAN
my ($self, $format) = @_;
my ($magick, $msg, $tmph, $tmpfile);
$format ||= 'png';
eval "require Image::Magick";
die "Can't load Image::Magick for format $format: $@" if $@;
$self->{original_file} = $self->{file};
# create and register temporary file
($tmph, $tmpfile) = tempfile('temzooXXXXXX', SUFFIX => ".$format");
$self->{tmpfile} = $tmpfile;
$magick = Image::Magick->new;
if ($msg = $magick->Read($self->{file})) {
die "Failed to read picture from $self->{file}: $msg\n";
}
view all matches for this distribution
view release on metacpan or search on metacpan
examples/image2grl.pl view on Meta::CPAN
#! /usr/bin/env perl
use strict; use warnings;
use Term::Graille qw/colour paint printAt clearScreen border/;
use Image::Magick;
# convert2grl--converts an image to .grl format.
my %params=%ARGV;
examples/image2grl.pl view on Meta::CPAN
loadImage($inFile);
$canvas->exportCanvas($outFile);
sub loadImage{
my $imgfile=shift;
my $image = Image::Magick->new();
my $wh = $image->Read($imgfile);
$image->Resize(geometry => "$canvas->{width}x$canvas->{height}", filter=>"Cubic");
warn $wh if $wh;
$image->set('monochrome'=>'True','dither'=>'True','dither-method'=>"Floyd-Steinberg");
for (my $x =0;$x<$canvas->{width};$x++){
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Text/Convert/ToImage.pm view on Meta::CPAN
package Text::Convert::ToImage;
use 5.006001;
use strict;
use warnings;
use Carp;
use base qw( Image::Magick );
use vars qw( $VERSION $LEGAL_ATTRIBUTES );
our $VERSION = sprintf("%d.%02d", q$Revision: 0.00 $ =~ /(\d+)\.(\d+)/);
our $LEGAL_ATTRIBUTES = {
LINE_HEIGHT => 18,
lib/Text/Convert/ToImage.pm view on Meta::CPAN
while ( my ($key, $val) = each %{ $config }) {
$key = lc($key);
$self->$key($val);
}
unless( ref($self->magick()) ) {
my $magick = Image::Magick->new() || die "Unable to create Image::Magick Object $!";
$self->magick( $magick );
}
}
lib/Text/Convert/ToImage.pm view on Meta::CPAN
There are some undocumented features to this module and they are this way because I
have not tested to see if they work yet.
=head1 SEE ALSO
L<Image::Magick>
=head1 AUTHOR
Harry Jackson
view all matches for this distribution
view release on metacpan or search on metacpan
sample/image2rand.pl view on Meta::CPAN
use strict;
use warnings;
use 5.010;
use Tie::Array::Packed;
use Image::Magick;
my $file = shift @ARGV // die <<EOU;
Usage:
$0 image_file [n [exp]]
EOU
my $n = shift @ARGV || 100;
my $exp = shift @ARGV || 1;
my $img = Image::Magick->new;
$img->Read($file);
my $w = $img->Get('Width');
my $h = $img->Get('Height');
my $out = Image::Magick->new(size => join('x', $w * 3, $h));
$out->Read("xc:black");
tie my(@acu), 'Tie::Array::Packed::DoubleNative';
$#acu = $h * $w; # preallocate
$#acu = 1;
view all matches for this distribution