Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Corrects code sample for document.addStream() #75

Merged
merged 2 commits into from
May 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/how-to-guide/node/page/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ The following script opens a document called `"test.pdf"` and adds text to the b
res_font.put("F1", font)

// create drawing operations
var extra_contents = document.addStream("BT /F1 18 Tf 1 0 0 1 100 100 Tm (Hello, world) Tj ET")
var extra_contents = document.addStream("BT /F1 18 Tf 1 0 0 1 100 100 Tm (Hello, world) Tj ET", {})

// add drawing operations to page contents
var page_contents = page_obj.get("Contents")
Expand Down
Loading