Coder Social home page Coder Social logo

XREF table about printpdf HOT 3 CLOSED

fschutt avatar fschutt commented on June 29, 2024
XREF table

from printpdf.

Comments (3)

fschutt avatar fschutt commented on June 29, 2024 1

This is not a valid PDF - whether it "works" depends on the PDF viewer you're using. The point of an xref table is so that the PDF reader doesn't have to scan through the entire file to see where the objects start and end. It might work in some viewers to omit the table, but I wouldn't rely on it - and it will certainly degrade performance of reading the PDF because now the reader has to scan through the entire document to find where the objects are. According to the PDF spec the xref table is mandatory.

Also, I'm not an expert on this topic either - the wiki is just http://www.p2501.ch/pdf-howto/start translated to English. You could also try reading the PDF spec from Adobe or use a different tutorial such as https://brendanzagaeski.appspot.com/0005.html - I don't "know" whether it works, you need to test it in different viewers.

from printpdf.

fschutt avatar fschutt commented on June 29, 2024

No, each line in the table is 20 bytes long. The "50" says that one object starts a 50 bytes from the start of the file. Objects described by the xref table can be larger than 20 bytes, but the lines of the xref table are exactly 20 bytes: The string "0000000000 65535 f " is exactly 20 characters long.

As to how they are calculated, that depends on the implementation. I used lopdf for the low-level serialization, I didn't actually write any byte-tracking algorithm myself, but I can imagine that you simply serialize each indirect object to bytes, and the create the xref table by summing up the bytes of the individual objects.

from printpdf.

mahmoodn avatar mahmoodn commented on June 29, 2024

It seems that xref is not mandatory. The following code also works

%PDF-1.4
1 0 obj
<< /Type /Catalog /Pages 2 0 R >>
endobj
2 0 obj
<< /Kids [3 0 R] /Count 1 >>
endobj
3 0 obj
<< /Parent 2 0 R /Contents 4 0 R >>
endobj
4 0 obj
<< /Length 20 >>
stream
BT
/F1 40 Tf
100 600 Td
(Hello World!) Tj
ET
endstream
endobj
trailer
<< /Size 4 /Root 1 0 R >>
%%EOF

Is that correct?

from printpdf.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.