pdfrx_web
Demo
GitHub
npm
Preparing search index...
@pdfrx/engine
PdfPathSegment
Type Alias PdfPathSegment
PdfPathSegment
:
|
{
op
:
"moveTo"
;
x
:
number
;
y
:
number
}
|
{
op
:
"lineTo"
;
x
:
number
;
y
:
number
}
|
{
op
:
"cubicTo"
;
x
:
number
;
x1
:
number
;
x2
:
number
;
y
:
number
;
y1
:
number
;
y2
:
number
;
}
|
{
op
:
"close"
}
One command in a PDF vector path. A subpath normally starts with
moveTo
.
Settings
Member Visibility
Protected
Inherited
External
Theme
OS
Light
Dark
Demo
GitHub
npm
pdfrx_web
Loading...
One command in a PDF vector path. A subpath normally starts with
moveTo.