mirror of
https://github.com/michaelrsweet/pdfio.git
synced 2025-04-05 08:26:46 +02:00
Update docos.
This commit is contained in:
parent
22c245ffd1
commit
af13376e6d
12
doc/pdfio.3
12
doc/pdfio.3
@ -1,4 +1,4 @@
|
|||||||
.TH pdfio 3 "pdf read/write library" "2021-09-27" "pdf read/write library"
|
.TH pdfio 3 "pdf read/write library" "2021-10-18" "pdf read/write library"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
pdfio \- pdf read/write library
|
pdfio \- pdf read/write library
|
||||||
.SH Introduction
|
.SH Introduction
|
||||||
@ -152,7 +152,7 @@ There is also an Xcode project ("pdfio.xcodeproj") you can use on macOS which ge
|
|||||||
You can reproduce this with the makefile using:
|
You can reproduce this with the makefile using:
|
||||||
.nf
|
.nf
|
||||||
|
|
||||||
sudo make 'COMMONFLAGS="\-Os \-mmacosx\-version\-min=10.14 \-arch x86_64 \-arch arm64"' install
|
sudo make COMMONFLAGS="\-Os \-mmacosx\-version\-min=10.14 \-arch x86_64 \-arch arm64" install
|
||||||
.fi
|
.fi
|
||||||
.SS Detecting PDFio
|
.SS Detecting PDFio
|
||||||
.PP
|
.PP
|
||||||
@ -160,7 +160,7 @@ PDFio can be detected using the pkg\-config command, for example:
|
|||||||
.nf
|
.nf
|
||||||
|
|
||||||
if pkg\-config \-\-exists pdfio; then
|
if pkg\-config \-\-exists pdfio; then
|
||||||
...
|
...
|
||||||
fi
|
fi
|
||||||
.fi
|
.fi
|
||||||
.PP
|
.PP
|
||||||
@ -1406,9 +1406,9 @@ Set the stroke pattern.
|
|||||||
.nf
|
.nf
|
||||||
bool pdfioContentSetDashPattern (
|
bool pdfioContentSetDashPattern (
|
||||||
pdfio_stream_t *st,
|
pdfio_stream_t *st,
|
||||||
int phase,
|
double phase,
|
||||||
int on,
|
double on,
|
||||||
int off
|
double off
|
||||||
);
|
);
|
||||||
.fi
|
.fi
|
||||||
.SS pdfioContentSetFillColorDeviceCMYK
|
.SS pdfioContentSetFillColorDeviceCMYK
|
||||||
|
@ -548,12 +548,12 @@ make install-shared
|
|||||||
<pre><code>sudo xcodebuild install
|
<pre><code>sudo xcodebuild install
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<p>You can reproduce this with the makefile using:</p>
|
<p>You can reproduce this with the makefile using:</p>
|
||||||
<pre><code>sudo make 'COMMONFLAGS="-Os -mmacosx-version-min=10.14 -arch x86_64 -arch arm64"' install
|
<pre><code>sudo make COMMONFLAGS="-Os -mmacosx-version-min=10.14 -arch x86_64 -arch arm64" install
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<h3 class="title" id="detecting-pdfio">Detecting PDFio</h3>
|
<h3 class="title" id="detecting-pdfio">Detecting PDFio</h3>
|
||||||
<p>PDFio can be detected using the <code>pkg-config</code> command, for example:</p>
|
<p>PDFio can be detected using the <code>pkg-config</code> command, for example:</p>
|
||||||
<pre><code>if pkg-config --exists pdfio; then
|
<pre><code>if pkg-config --exists pdfio; then
|
||||||
...
|
...
|
||||||
fi
|
fi
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<p>In a makefile you can add the necessary compiler and linker options with:</p>
|
<p>In a makefile you can add the necessary compiler and linker options with:</p>
|
||||||
@ -1563,7 +1563,7 @@ bool pdfioContentSave(<a href="#pdfio_stream_t">pdfio_stream_t</a> *st);</p>
|
|||||||
<h3 class="function"><a id="pdfioContentSetDashPattern">pdfioContentSetDashPattern</a></h3>
|
<h3 class="function"><a id="pdfioContentSetDashPattern">pdfioContentSetDashPattern</a></h3>
|
||||||
<p class="description">Set the stroke pattern.</p>
|
<p class="description">Set the stroke pattern.</p>
|
||||||
<p class="code">
|
<p class="code">
|
||||||
bool pdfioContentSetDashPattern(<a href="#pdfio_stream_t">pdfio_stream_t</a> *st, int phase, int on, int off);</p>
|
bool pdfioContentSetDashPattern(<a href="#pdfio_stream_t">pdfio_stream_t</a> *st, double phase, double on, double off);</p>
|
||||||
<h4 class="parameters">Parameters</h4>
|
<h4 class="parameters">Parameters</h4>
|
||||||
<table class="list"><tbody>
|
<table class="list"><tbody>
|
||||||
<tr><th>st</th>
|
<tr><th>st</th>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user