Vector Graphics Overview

개요

HotPDF는 두 가지 주요 방식으로 vector-oriented workflow를 지원합니다. THPDFPage API를 통한 direct page drawing과 EMF/WMF helper method를 통한 metafile import입니다

Main Approaches

  • Direct Drawing: Use THPDFPage methods for lines, curves, fills, text placement, and other PDF canvas operations
  • Reusable Stroke Geometry: Use THotPDF.RegisterLineGraphicsState with THPDFPage.SetGraphicsState to reuse line width, cap, join, and miter-limit settings across paths
  • Metafile Import: Use THPDFPage.ShowMetafile to place EMF or WMF content on the page
  • Layout Control: Combine page drawing with scaling, positioning, and current-page state changes

Typical Entry Points

See Also