tags:

views:

14

answers:

1

Hello

Is there the way to print pdf document from flex?

Thanks Vladimir

A: 

Is there a way to print a PDF from flex?

  • given that a pdf is a binary document, no
  • given that a flex is a text tokenizer, no
  • given that a flex parser interacts with the stdio, or another program, no it cannot within it's self print pdf's (to a printer)

Could you really do it, if you treated all character as input, and wrote a PDF text displayer/printer in C code, then sure, but why not just write the C program to do it.

Simeon Pilgrim