Some test text!

Search
Hamburger Icon

Ruby / Guides / Edit bookmark

Edit PDF bookmarks: text, color, action in Ruby

To edit a bookmark's color in an existing document.

doc = PDFDoc.new(filename)
root = doc.GetFirstBookmark()

# Adding color to Bookmarks. Color and other formatting can help readers
# get around more easily in large PDF documents.
red.SetColor(1, 0, 0)

Read, add, edit PDF outlines and bookmarks Full code sample which illustrates how to read and edit existing outline items and create new bookmarks using the high-level API

About editing a bookmark

The Bookmark API allows you to change any property on an outline item, including title text, action, color, and formatting. Color and other formatting can help readers navigate large PDF documents more easily. The above code adjusts color and formatting properties on a Bookmark item.

Get the answers you need: Chat with us