PIL and ReportsLab error

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Jason Koch

    #1

    PIL and ReportsLab error

    Hello,
    I am trying to produce pdf files from tiffs and I keep getting this
    error. Does anyone
    have any tips on this one. I am using the ReportLab package with the PIL.

    File "C:\Python23\Li b\site-packages\PIL\Im age.py", line 309, in
    _getdecoder
    raise IOError("decode r %s not available" % decoder_name)
    IOError: decoder group4 not available

    Thanks,

    --
    Jason Koch
    NovaSys Health
    Jason.Koch@nova syshealth.com
    Work: 501-219-4444 ext. 608
    Work: 1-800-294-3557 ext. 608
    Mobile: 501-977-6701


    This email and any attachments to it are privileged and confidential and are intended solely for use of the individual or entity to which they are addressed. If the reader of this message is not the intended recipient, any use, distribution, or copying of this communication, or disclosure of all or any part of its content to any other person, is strictly prohibited. If you have received this communication in error, please notify the sender by replying to this message and destroy this message and delete any copies held in your electronic files. Thank you.


  • Larry Bates

    #2
    Re: PIL and ReportsLab error

    PIL doesn't support compressed TIF files. You must
    uncompress them prior to trying to place them. I
    use tiffcp utility via os.system call to uncompress
    TIF files, then place them into my .PDF file.

    Larry Bates
    Syscon, Inc.


    Jason Koch wrote:[color=blue]
    > Hello,
    > I am trying to produce pdf files from tiffs and I keep getting this
    > error. Does anyone
    > have any tips on this one. I am using the ReportLab package with the PIL.
    >
    > File "C:\Python23\Li b\site-packages\PIL\Im age.py", line 309, in
    > _getdecoder
    > raise IOError("decode r %s not available" % decoder_name)
    > IOError: decoder group4 not available
    >
    > Thanks,
    >[/color]

    Comment

    Working...