2
iText 7のiText 5のPdfSmartCopyクラスに相当するものはありますか?もしそうでなければ、iText 7でどのように同じ機能を達成できますか?iText7にPdfSmartCopy相当品がありますか
iText 7のiText 5のPdfSmartCopyクラスに相当するものはありますか?もしそうでなければ、iText 7でどのように同じ機能を達成できますか?iText7にPdfSmartCopy相当品がありますか
あなたはtrue
にPdfWriter
のSmartMode
プロパティを設定することができます。
PdfSmartCopy
を使用するのと同じであるためにページをコピーするために、このような
PdfWriter
を使用し
/**
* Sets the smart mode.
* <p/>
* In smart mode when resources (such as fonts, images,...) are
* encountered, a reference to these resources is saved
* in a cache, so that they can be reused.
* This requires more memory, but reduces the file size
* of the resulting PDF document.
*/
public PdfWriter setSmartMode(boolean smartMode)
。