what "printer-printable" file types are available for both inserting graphics and writing text?

Largely depends on what your focus is on... If you just want something that is "printer-printable" and can be generated automatically (which I suppose, otherwise why would you be looking for a "document::writeword"-sort-of module), I'd suggest PDF.  It can handle images and text, allows near perfect layout, and can be viewed/printed cross-platform. There are several CPAN modules that allow creation of PDF files (e.g. PDF::API2).

The downside is that once created, it's difficult to modify it manually (i.e. you can't edit it like a Word/Excel document, and you can't use your favorite text editor to modify it). And you have to do most of the layouting yourself. This is because PDF has been designed as an output format for printing/viewing, not for word-processing per se. In case you want automatic layouting, you might be looking for something like Latex (which can generate PDF as output, btw). — Just some thoughts.


In reply to Re: Mac OS X printable graphics+text file types? by almut
in thread Mac OS X printable graphics+text file types? by cypress

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.