Torsten Bronger <[EMAIL PROTECTED]> writes:

> Thus, this is the trailing part which is missing:
> http://www-users.rwth-aachen.de/torsten.bronger/pds_missing.txt
>
> Does anybody has an idea at which point and why Matplotlib stops
> working?

The missing parts are the xref table and the trailer, which are written
by functions called by close():

    def close(self):
        # End the content stream and write out the various deferred
        # objects
        self.endStream()
  ...
        self.writeImages()
        self.writeMarkers()
        self.writeXref()
        self.writeTrailer()
        if not self.passed_in_file_object:
            self.fh.close()

So it looks like writeMarkers() has been called but writeXref() has not. 

-- 
Jouni K. Seppänen
http://www.iki.fi/jks


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to