FPDFPageObj_SetStrokeWidth function

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

Set 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.Float)>()
external int FPDFPageObj_SetStrokeWidth(
  FPDF_PAGEOBJECT page_object,
  double width,
);