// The path to the documents directory. string dataDir = RunExamples.GetDataDir_Images(); var document = new Document(); var page = new Page(document); var image = new Image(document, dataDir + "image.jpg"); image.HyperlinkUrl = "http://image.com"; page.AppendChildLast(image); document.AppendChildLast(page); document.Save(dataDir + "Image with Hyperlink_out.one");