3
A
回答
6
我在爲自己調查iTextSharp時發現了這段代碼片段,發現有2個人提及Open Actions。我已在下面包含http://www.developerbarn.com/blogs/richyrich-33.htm的片段:
PdfWriter writer = PdfWriter.GetInstance(doc, HttpContext.Current.Response.OutputStream);
//this creates a new destination to send the action to when the document is opened. The zoom in this instance is set to 0.75f (75%). Again I use doc.PageSize.Height to set the y coordinate to the top of the page. PdfDestination.XYZ is a specific PdfDestination Type that allows us to set the location and zoom.
PdfDestination pdfDest = new PdfDestination(PdfDestination.XYZ, 0, doc.PageSize.Height, 0.75f);
//open our document
doc.Open();
//here you put all the information you want to write to your PDF
//create a new action to send the document to our new destination.
PdfAction action = PdfAction.GotoLocalPage(1, pdfDest, writer);
//set the open action for our writer object
writer.SetOpenAction(action);
//finally, close our document
doc.Close();
相關問題
- 1. 設置默認縮放
- 2. 如何設置WPFExtensions.ZoomControl默認縮放
- 3. 爲iOS safari網站渲染設置默認的100%縮放
- 4. 當默認不是100時,在Selenium WebDriver中設置縮放級別爲100%
- 5. 如何使用UIGraphicsImageRenderer設置縮放比例
- 6. 如何更改默認縮放比例在UIScrollView
- 7. D3 - 設置雙擊的縮放比例
- 8. 在AmChart中設置默認縮放
- 9. 如何使用iTextSharp將縮放級別設置爲pdf?
- 10. 如何設置用戶控件的相對縮放比例?
- 11. iTextSharp的設置默認字體大小
- 12. Android:爲地圖設置縮放比例
- 13. 更改函數內的默認ggplot2縮放比例
- 14. 如何設置照片的默認縮放?
- 15. 如何在java中設置pdf響應的默認縮放值
- 16. Qt OpenGL默認縮放比例真的很奇怪
- 17. API V3 - 根據縮放所需的縮放比例設置縮放比例以適應標記
- 18. Chrome響應式仿真器 - 如何將默認縮放至100%
- 19. 如何設置加載JSON圖層的最小縮放比例?
- 20. 如何在PyQt5上正確設置Pixmap的縮放比例?
- 21. 如何動態設置c3圖表的y軸縮放比例?
- 22. 如何在android google map中設置默認縮放級別?
- 23. 使默認縮放css
- 24. 如何使用ggpairs在不同構面上設置相同的縮放比例()
- 25. 如何使用Root.plist的默認設置?
- 26. 如何在Android WebView中設置縮放比例
- 27. 如何在SQL中設置精度和縮放比例(訪問)
- 28. 使用itextsharp將默認名稱設置爲PDF文檔
- 29. 網站如何使所有設備上的元素縮放比例相同並縮放比例?
- 30. 如何使用InterfaceGL設置默認值?