FPDFPageObj_GetStrokeWidth function

  1. @Native<FPDF_BOOL Function(FPDF_PAGEOBJECT, Pointer<Float>)>(FPDF_PAGEOBJECT, ffi.Pointer<ffi.Float>)>()
int FPDFPageObj_GetStrokeWidth(
  1. FPDF_PAGEOBJECT page_object,
  2. Pointer<Float> width
)

Get the stroke width of a page object.

path - the handle to the page object. width - the width of the stroke.

Returns TRUE on success

Implementation

@ffi.Native<FPDF_BOOL Function(FPDF_PAGEOBJECT, ffi.Pointer<ffi.Float>)>()
external int FPDFPageObj_GetStrokeWidth(
  FPDF_PAGEOBJECT page_object,
  ffi.Pointer<ffi.Float> width,
);