PDF rendering toolkit?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Jorge Vargas

    #1

    PDF rendering toolkit?

    Hi

    I'm looking for a tool to take an actual .pdf file and display it in a
    window (I'm using wxwidgets at the moment)

    I have found several project but none seem to do what I need.

    http://sourceforge.net/projects/pdfplayground seems like a nice
    toolkit to edit pdf files with python code, but nothing about
    rendering.

    I have find out http://poppler.freedesktop.org/ but there seems to be
    no python bindings for it.

    there is also an example at http://www.daniweb.com/code/snippet618.html
    using wx.lib.pdfwin but that is windows only, I need at least Linux
    support better if it's platform independant as python *should* be

    and the reportlabs BSD packages can't do this.


    anyone knows of a toolkit to do this? bonus points if's it is already
    integrated into wxpython
  • Diez B. Roggisch

    #2
    Re: PDF rendering toolkit?

    I'm looking for a tool to take an actual .pdf file and display it in a
    window (I'm using wxwidgets at the moment)
    No idea if there is a one-shot-kills-them-all solution out there - but
    if you have a way to go for windows, you might checkout PyQt and PyKDE
    to embed a kpfd-view in a window of yours.

    I agree that it is less than desirable to switch toolkits - but if you
    _have_ to...

    Diez

    Comment

    • Martin Miller

      #3
      Re: PDF rendering toolkit?

      Jorge Vargas wrote:
      Hi
      >
      I'm looking for a tool to take an actual .pdf file and display it in a
      window (I'm using wxwidgets at the moment)
      >
      [snip]
      How about just using Adobe's Acrobat Reader application which is freely
      available on most platforms?

      There's some related information about doing this in the following
      thread that might help get you started :HTH,
      -Martin

      Comment

      • Jorge Vargas

        #4
        Re: PDF rendering toolkit?

        On 1/6/07, Diez B. Roggisch <deets@nospam.w eb.dewrote:
        I'm looking for a tool to take an actual .pdf file and display it in a
        window (I'm using wxwidgets at the moment)
        >
        No idea if there is a one-shot-kills-them-all solution out there - but
        if you have a way to go for windows, you might checkout PyQt and PyKDE
        to embed a kpfd-view in a window of yours.
        >
        I agree that it is less than desirable to switch toolkits - but if you
        _have_ to...
        >
        yes indeed the problem with that is I want my code to be portable that
        is the reason I'm working on top of wx.

        Comment

        • Joshua J. Kugler

          #5
          Re: PDF rendering toolkit?

          Jorge Vargas wrote:
          On 1/6/07, Diez B. Roggisch <deets@nospam.w eb.dewrote:
          I'm looking for a tool to take an actual .pdf file and display it in a
          window (I'm using wxwidgets at the moment)
          >>
          >No idea if there is a one-shot-kills-them-all solution out there - but
          >if you have a way to go for windows, you might checkout PyQt and PyKDE
          >to embed a kpfd-view in a window of yours.
          >>
          >I agree that it is less than desirable to switch toolkits - but if you
          >_have_ to...
          >>
          yes indeed the problem with that is I want my code to be portable that
          is the reason I'm working on top of wx.
          Qt3 (and PyQt3) is available on all platforms. Qt4 (and PyQt4) is GPL on
          all platforms for GPL projects. You no longer *have* to stick with wx for
          cross platform GPL goodness.

          j

          --
          Joshua Kugler
          Lead System Admin -- Senior Programmer

          PGP Key: http://pgp.mit.edu/  ID 0xDB26D7CE

          --
          Posted via a free Usenet account from http://www.teranews.com

          Comment

          Working...