Main > Free Download Search >

Free text animation software for linux

text animation

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3185
Term::Animation 2.3

Term::Animation 2.3


Term::Animation is a Perl module that provides a framework to produce sprite animations using ASCII art. more>>
Term::Animation is a Perl module that provides a framework to produce sprite animations using ASCII art. Each ASCII sprite is given one or more frames, and placed into the animation as an animation entity.

An animation entity can have a callback routine that controls the position and frame of the entity. The module can also do collision detection between entities.

INSTALLATION

To install this module type the following:

perl Makefile.PL
make
make test
make install

<<less
Download (0.018MB)
Added: 2006-12-19 License: Perl Artistic License Price:
1062 downloads
Text::Emoticon 0.04

Text::Emoticon 0.04


Text::Emoticon is a factory class for Yahoo! and MSN emoticons. more>>
Text::Emoticon is a factory class for Yahoo! and MSN emoticons.

SYNOPSIS

use Text::Emoticon;

my $emoticon = Text::Emoticon->new(MSN, { strict => 1, xhtml => 0 });
print $emoticon->filter(Hello ;));

Text::Emoticon is a factory class to dispatch MSN/YIM emoticon set. Its made to become handy to be used in other applications like Kwiki/MT plugins.

<<less
Download (0.002MB)
Added: 2006-12-14 License: Perl Artistic License Price:
1050 downloads
Common Text Transformation Library 2.08

Common Text Transformation Library 2.08


Common Text Transformation Library is a C++ parser generator library. more>>
Common Text Transformation Library, CTTL for short, is a set of C++ classes and functions to understand and modify text data. Common Text Transformation Library implementation is based on STL classes and algorithms.
Concept of a substring plays major role in design of the text transformation library. CTTL substring is an object that interacts with fragments of text encapsulated by STL std::basic_string template class.
Template classes cttl::const_edge and cttl::edge, designed for constant and mutable data access, respectively, represent CTTL substrings. Substrings may be compared, inserted, deleted, or replaced across multiple text inputs. If content of text mutates, the substrings adjust their positions accordingly to the change. CTTL guarantees that substrings remain stable with respect to a potentially mutable text.
Within CTTL framework, a substring may be parsed with EBNF-like grammar. CTTL lexical analysis engine generates a stream of substrings corresponding to the parsed symbols. BNF and EBNF grammars can be written directly in C++.
Template meta-programming and operator overloading offer features to write C++ expressions that describe grammar rules. No additional steps of parsing, compiling, or generating source code are required. Compiled CTTL program implements LL(INF)-parser, the recursive-descent parser with infinite lookahead.
Enhancements:
- This release focuses on documentation enhancements, which include multiple documentation improvements and revisions.
- An alphabetical index of all CTTL facilities was added: http://cttl.sourceforge.net/documentation_idx.html.
<<less
Download (0.16MB)
Added: 2006-11-04 License: GPL (GNU General Public License) Price:
1085 downloads
GIMP Animation Package 2.2.2

GIMP Animation Package 2.2.2


GIMP Animation Package is a collection of Plug-Ins to extend the GIMP with capabilities to edit and create Animations. more>>
GIMP Animation Package is a collection of Plug-Ins to extend the GIMP with capabilities to edit and create Animations as sequences of single frames.

Please note that gimp-gap 2.2.1 requires gimp 2.2 and glib 2.8 or higher. It is recommended to use gtk+ 2.8.

Additional Installation Notes:

This GIMP-GAP release includes sourcecode tarballs of external libraries :

- ffmpeg
- libmpeg3

Those libs are built automatically. Configuration options for those libs can be set by editing the
files:

extern_libs/configure_options_ffmpeg.txt
extern_libs/configure_options_libmpeg3.txt

Those configure_option files are read by the master .configure script

Installation:

./autogen.sh # includes the ./configure call
make
make install

GIMP is an acronym for GNU Image Manipulation Program. It is a freely distributed program for such tasks as photo retouching, image composition and image authoring.
<<less
Download (5.3MB)
Added: 2007-08-06 License: GPL (GNU General Public License) Price:
533 downloads
Animation fade-loop 1.02

Animation fade-loop 1.02


Animation fade-loop is a plugin for GIMP that can convert an animation to make it look better when played in a continuous loop. more>>
Animation fade-loop is a plugin for GIMP that can convert an animation to make it look better when played in a continuous loop (e.g. for DVD menus).

"This plug-in copies an animation frame by frame and adds a cross-fade effect at the end so that the last frame blends seamlessly back to the first.

Note that because of the resulting overlap, the output animation is [fade_length] frames shorter than the input. The currently loaded gimp image should be the first frame of the input animation.

<<less
Download (MB)
Added: 2006-08-16 License: GPL (GNU General Public License) Price:
1173 downloads
Text::Emoticon::MSN 0.04

Text::Emoticon::MSN 0.04


Text::Emoticon::MSN is a Perl module with emoticon filter of MSN Messenger. more>>
Text::Emoticon::MSN is a Perl module with emoticon filter of MSN Messenger.

SYNOPSIS

use Text::Emoticon::MSN;

my $emoticon = Text::Emoticon::MSN->new(
imgbase => "http://example.com/emo",
);

my $text = "Yet Another Perl Hacker ;-)";
print $emoticon->filter($text);

# it prints
# Yet Another Perl Hacker

Text::Emoticon::MSN is a text filter that replaces text emoticons like ":-)", ";-P", etc. to the icons of MSN Messenger, detailed in http://messenger.msn.com/Resource/Emoticons.aspx

METHODS

new

$emoticon = Text::Emoticon::MSN->new(
imgbase => "http://yourhost.example.com/images/emoticons",
xhtml => 1,
class => "emoticon",
);

Constructs new Text::Emoticon::MSN object. It accepts two options:

imgbase

Base URL where icon gif files are located. It defaults to "http://messenger.msn.com/Resource/emoticons" (the MSN site) but I dont recommend that, as theres a possibility MSN will ban your site.

xhtml

Whether it uses XHTML style img tags. It defaults to 1.

class

CSS class used in img tags. It defaults to nothing.

$emoticon = Text::Emoticon::MSN->new(class => "emo");

will print:

< img src="blah.gif" class="emo" / >

strict

Whether it will disable smileys with space in them. defaults to 0.

filter

$filtered_text = $emoticon->filter($text);

Filters emoticons in text and returns img tagged text (HTML).

<<less
Download (0.003MB)
Added: 2006-12-18 License: Perl Artistic License Price:
1047 downloads
Text::MicroMason::Functions 1.992

Text::MicroMason::Functions 1.992


Text::MicroMason::Functions Perl module contains Function Exporter for Simple Mason Templates. more>>
Text::MicroMason::Functions Perl module contains Function Exporter for Simple Mason Templates.

SYNOPSIS

Use the execute function to parse and evalute a template:

use Text::MicroMason::Functions qw( execute );
print execute($template, name=>Dave);

Or compile it into a subroutine, and evaluate repeatedly:

use Text::MicroMason::Functions qw( compile );
$coderef = compile($template);
print $coderef->(name=>Dave);
print $coderef->(name=>Bob);

Templates stored in files can be run directly or included in others:

use Text::MicroMason::Functions qw( execute_file );
print execute_file( "./greeting.msn", name=>Charles);

Safe usage restricts templates from accessing your files or data:

use Text::MicroMason::Functions qw( safe_execute );
print safe_execute( $template, name=>Bob);

All above functions are available in an error-catching "try_*" form:

use Text::MicroMason::Functions qw( try_execute );
($result, $error) = try_execute( $template, name=>Alice);

As an alternative to the object-oriented interface, text containing MicroMason markup code can be compiled and executed by calling the following functions.
Please note that this interface is maintained primarily for backward compatibility with version 1 of Text::MicroMason, and it does not provide access to some of the newer features.

Each function creates a new MicroMason object, including any necessary traits such as Safe compilation or CatchErrors for exceptions, and then passes its arguments to an appropriate method on that object.

You may import any of these functions by including their names in your use Text::MicroMason statement.

<<less
Download (0.068MB)
Added: 2007-07-10 License: Perl Artistic License Price:
837 downloads
Text::Macro 0.07

Text::Macro 0.07


Text::Macro Perl module is a template facility whos focus is on generating code such as c, java or sql. more>>
Text::Macro Perl module is a template facility whos focus is on generating code such as c, java or sql. While generating perl code is also possible, there is a potential conflict between the control-symbol and the perl comment symbol.
Perl is excelent at manipulating text, and it begs the question why one would need such a tool.
The answer is that good code design should be such that applications should not have to be modified so as to make configuration changes. Thus external configuration files/data is used. However, if these files are read in as perl-code, then simple errors could crash the whole application (or provide subtle security risks). Further, it is often desired to invert the control flow and text-data (namely, make the embedded strings primary, and control-flow secondary). This is the ASP model, and for 90% HTML, 10% code, this works great.
This module supports many control facilities which directly translate into perl-control facilities (e.g. inverting the ASP-style code back into perl-style behind the scenes). The inversion process is cached in a simple user object.
The module was initially inspired by Text::FastTemplate by Robert Lehr, whos module didnt completely fullfill my needs.
Main features:
- fast, simple, robust
- code-generating-centric feature-set
- substitutions stand-out from template
- macro-code embedded in text
- OOP
- external and internal includes (for clearifying complex control-flow)
- scoped variable-substitutions
- line-based processing (like cpp)
- usable error messages
<<less
Download (0.012MB)
Added: 2007-05-31 License: Perl Artistic License Price:
877 downloads
Text Text Revolution 0.11

Text Text Revolution 0.11


Text Text Revolution project is a text-based ncurses DDR clone. more>>
Text Text Revolution project is a text-based ncurses DDR clone.
Text Text Revolution is a text-based Dance Dance Revolution clone.
It supports pyDDRs .step file format (which has now been superceeded by the .dance format), and plans to stream OGG, MP3, or WAV files.
Enhancements:
- Joystick (DDR mat) support is working now. use the -j switch. Its currently hardcoded to use /dev/input/js0.
- Some graphics code was cleaned up, and it is now possible to specify the difficulty (--light, --standard, --hard, or -ln, where n is 1, 2, or 3).
<<less
Download (0.044MB)
Added: 2006-12-08 License: GPL (GNU General Public License) Price:
1054 downloads
Text::Kakasi 2.04

Text::Kakasi 2.04


Text::Kakasi is a perl frontend to kakasi. more>>
Text::Kakasi is a perl frontend to kakasi.

SYNOPSIS

use Text::Kakasi;
# functional
$res = Text::Kakasi::getopt_argv(-JJ, -c, -w);
$str = Text::Kakasi::do_kakasi($japanese_text);
# object-oriented
$obj = Text::Kakasi->new(-JJ, -c, -w);
$str = $obj->get($japanese_text);

This module provides interface to kakasi (kanji kana simple inverter). kakasi is a set of programs and libraries which does what Japanese input methods do in reverse order. You feed Japanese and kakasi converts it to phonetic representation thereof. kakasi can also be used to tokenizing Japanese text. To find more about kakasi, see http://kakasi.namazu.org/ .

Text::Kakasi now features both functional and object-oriented APIs. functional APIs are 100% compatible with ver. 1.05. But to take advantage of "Perl 5.8 Features", you should use OOP APIs instead.

See Text::Kakasi::JP for the Japanese version of this document.

<<less
Download (0.022MB)
Added: 2006-08-28 License: Perl Artistic License Price:
1158 downloads
Text::Emoticon::Yahoo 0.02

Text::Emoticon::Yahoo 0.02


Text::Emoticon::Yahoo is a emoticon filter of Yahoo! Messenger. more>>
Text::Emoticon::Yahoo is a emoticon filter of Yahoo! Messenger.

SYNOPSIS

use Text::Emoticon::Yahoo;

my $emoticon = Text::Emoticon::Yahoo->new(
imgbase => "http://example.com/emo",
);

my $text = "Yet Another Perl Hacker ;)";
print $emoticon->filter($text);

# it prints
# Yet Another Perl Hacker

Text::Emoticon::Yahoo is a text filter that replaces text emoticons like ":)", ";P", etc. to the icons of Yahoo! Messenger, detailed in http://messenger.yahoo.com/emoticons.php

<<less
Download (0.003MB)
Added: 2006-12-06 License: Perl Artistic License Price:
1069 downloads
Text::Convert::ToImage

Text::Convert::ToImage


Text::Convert::ToImage is a Perl module. more>>
Text::Convert::ToImage is a Perl module.

SYNOPSIS

use Text::Convert::ToImage;
my $tti = Text::Convert::ToImage->new();
my $length = length($email);
if ($length > 150) {
$email = "Your text length of $length is too large:";
}
my $config = {
TEXT => $email ? $email : "y@hn.org",
POINTSIZE => $point_size ? $point_size : 14,
LEVEL => $level ? $level : 0,
FONT => $font,
XSKEW => $xskew,
YSKEW => $yskew,

};
$tti->calculate($config);
print "Content-type: image/pngnn";
binmode STDOUT;
$tti->Write(png:-);

This was knocked up a long time ago and someone asked me if the source was available so I decided to put it on CPAN. There is very little documentation with it.

There are also very few tests. If more than me and the person who asked for the module use it then I will write some tests for it.

At the moment I have been using it top obfuscate emails and not much else. A demo can be found at http://www.hjackson.org/cgi-bin/tools/email.pl

There are some undocumented features to this module and they are this way because I have not tested to see if they work yet.

<<less
Download (0.011MB)
Added: 2006-08-22 License: Perl Artistic License Price:
1158 downloads
Text::TemplateFill 1.7

Text::TemplateFill 1.7


Text::TemplateFill is a Perl module for formatting of reports with templates from files, use for I18N. more>>
Text::TemplateFill is a Perl module for formatting of reports with templates from files, use for I18N.
SYNOPSIS
use Text::TemplateFill;
my $tmpl = new Text::TemplateFill;
$tmpl->SetOpt(BaseDir => "paras/$Country");
$tmpl->SetOpt(ErrorFunction => &LogMsg, LineTerminator => "rn");
# Must read all the files before printing a paragraph
$tmpl->ReadPara(Header, "head");
$tmpl->ReadPara(FirstPage);
$tmpl->ReadPara(Footer);
$tmpl->ReadPara(Body);
$tmpl->SetOpt(StartPageTag => Header);
my ($a, $b, $cn, $d) = (a, letter b, ACME Inc, 4.92);
$tmpl->BindVars(NameOfA => $a, B => $b, CustomerName => $cn, VarD => $d);
print $tmpl->GeneratePara(FirstPage); # Optional - since we want a specific 1st page
print $tmpl->GeneratePara(Body);
... $a = ...; $b = ...
print $tmpl->GeneratePara(Body);
print $tmpl->CompletePage;
Main features:
- I18N formatting support, eg: decimal comma in France
- I18N date support
- Automatic page breaks
- Variables are registered, not passed to each GeneratePara
- Items of text (paragraphs) that are output are initially read from a text file.
- Calculations may be defined as part of the paragraph definition in the file.
- Optional use of your own Error reporting code
- Variables can be formatted by the full power of printf
- Automatic page/paragraph counting
- Output is a string that may be then written anywhere
<<less
Download (0.021MB)
Added: 2007-08-06 License: Perl Artistic License Price:
809 downloads
Text::Template::Inline 0.13

Text::Template::Inline 0.13


Text::Template::Inline allows easy formatting of hierarchical data. more>>
Text::Template::Inline allows easy formatting of hierarchical data.

SYNOPSIS

# you can import any name you want instead of "render"
use Text::Template::Inline render;

# yields "Replace things and stuff."
render {
foo => things,
bar => stuff,
}, q ;

# yields "Three Two One Zero"
render [qw/ Zero One Two Three /], {3} {2} {1} {0};

# for a blessed $obj that has id and name accessors:
render $obj, {id} {name};

# a "fat comma" can be used as syntactic sugar:
render $obj => {id} {name};

# its also possible to traverse heirarchies of data,
# even of different types.
# the following yields "one two three"
render {
a => { d => one },
b => { e => two },
c => { f => [qw/ zero one two three /], },
} => {a.d} {b.e} {c.f.3};

# theres also an automatic unindent feature that
# lines up to the least-indented line in the template:
render {
a => { d => one },
b => { e => two },
c => { f => [qw/ zero one two three /], },
} => q{
{a.d}
{b.e}
{c.f.3}
};
# the above results in this:
one
two
three


<<less
Download (0.006MB)
Added: 2007-08-22 License: Perl Artistic License Price:
793 downloads
Text::VimColor 0.11

Text::VimColor 0.11


Text::VimColor is a syntax color text in HTML or XML using Vim. more>>
Text::VimColor is a syntax color text in HTML or XML using Vim.

SYNOPSIS

use Text::VimColor;
my $syntax = Text::VimColor->new(
file => $0,
filetype => perl,
);

print $syntax->html;
print $syntax->xml;

This module tries to markup text files according to their syntax. It can be used to produce web pages with pretty-printed colourful source code samples. It can produce output in the following formats:

HTML

Valid XHTML 1.0, with the exact colouring and style left to a CSS stylesheet

XML

Pieces of text are marked with XML elements in a simple vocabulary, which can be converted to other formats, for example, using XSLT

Perl array

A simple Perl data structure, so that Perl code can be used to turn it into whatever is needed

This module works by running the Vim text editor and getting it to apply its excellent syntax highlighting (aka font-locking) to an input file, and mark pieces of text according to whether it thinks they are comments, keywords, strings, etc. The Perl code then reads back this markup and converts it to the desired output format.

This is an object-oriented module. To use it, create an object with the new function (as shown above in the SYNOPSIS) and then call methods to get the markup out.

<<less
Download (0.020MB)
Added: 2006-09-12 License: Perl Artistic License Price:
1137 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5