Adobe Forums: Simple Text String Example in specificationの投稿が壊れているのを見つけました。だったので、プレーンテキストのソース コードの PDF の例を探すことに興味を持ちました。
そのため、その投稿を通じて、最終的に次のことがわかりました。
- Web ページPDF リファレンスおよび PDF 仕様への Adobe 拡張機能 | アドビ開発者接続; を含む:
PDF 1.7 仕様には、699 ページの付録「_Annex H (参考) サンプル PDF ファイル」があります。そこから、「H.3 シンプル テキスト文字列の例」(「クラシックな Hello World」) を試してみたいと思いました。
そこで、これを次のように保存しようとしましたhello.pdf
(_PDF32000_2008.pdf からコピーする場合を除き、" %PDF-1. 4
" が表示される場合があります。つまり、 の後にスペースが挿入され1.
ます。これは削除する必要があります_):
%PDF-1.4
1 0 obj
<< /Type /Catalog
/Outlines 2 0 R
/Pages 3 0 R
>>
endobj
2 0 obj
<< /Type /Outlines
/Count 0
>>
endobj
3 0 obj
<< /Type /Pages
/Kids [ 4 0 R ]
/Count 1
>>
endobj
4 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [ 0 0 612 792 ]
/Contents 5 0 R
/Resources << /ProcSet 6 0 R
/Font << /F1 7 0 R >>
>>
>>
endobj
5 0 obj
<< /Length 73 >>
stream
BT
/F1 24 Tf
100 100 Td
( Hello World ) Tj
ET
endstream
endobj
...そして私はそれを開こうとしています:
evince hello.pdf
...しかし、エビデンスはそれを開くことができません:「ドキュメントを開くことができません/PDFドキュメントが破損しています」; また:
Error: PDF file is damaged - attempting to reconstruct xref table...
Error: Couldn't find trailer dictionary
Error: Couldn't read xref table
私もチェックしqpdf
ます:
$ qpdf --check hello.pdf
WARNING: hello.pdf: file is damaged
WARNING: hello.pdf: can't find startxref
WARNING: hello.pdf: Attempting to reconstruct cross-reference table
hello.pdf: unable to find trailer dictionary while recovering damaged file
これのどこが間違っているのですか?
ご回答ありがとうございます。
乾杯!