Exist an image format in ascii/ansi ?

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
myspacee
Posts: 153
Joined: 2007-06-14T02:09:35-07:00

Exist an image format in ascii/ansi ?

Post by myspacee »

Hello to all,
I'm working for a newspaper. I've a strange question.

I need to update some value in a table (sports standings);
my system accept some common images format (tif, pdf, eps, ps).

Exist an image format in plain text, that i can use to replacing some values,
and the convert to a supported image format ? (tif, pdf, eps, ps)
(replacing is demanded to a third part application)

I'm sorry for bad english, any help will be appreciated,

m.
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Exist an image format in ascii/ansi ?

Post by fmw42 »

myspacee
Posts: 153
Joined: 2007-06-14T02:09:35-07:00

Re: Exist an image format in ascii/ansi ?

Post by myspacee »

hard way,
i must calc all coordinates everytime, to put my values in a template.

think about Latex format, anyone have experience with this ?
http://en.wikipedia.org/wiki/LaTeX

IM can manipulate its object ?

m.
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Re: Exist an image format in ascii/ansi ?

Post by anthony »

Latex generates vector images in the form of DVI. That can ve converted to Postscript and PDF which IM can handle via its ghostscript delegate.

However the DVI can also be directly converted to image formats I believe! Not certain, its been nearly a decade since I used TeX and LaTeX.
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
vonbiber
Posts: 13
Joined: 2009-08-18T07:55:47-07:00
Authentication code: 8675309

Re: Exist an image format in ascii/ansi ?

Post by vonbiber »

In the texmf distribution there is a tool that allow you to convert a dvi file to png:
dvipng [options] yourfile.dvi
(you can 'man dvipng' for more details)
There's a similar tool for a gif output: dvigif
Post Reply