Determines text rendering mode.
TPDFTextRenderingMode = (trFill, trStroke, trFillThenStroke, trInvisible, trFillClipping, trStrokeClipping, trFillStrokeClipping, trClipping);
Delphi syntax:
procedure SetTextRenderingMode( Mode: TPDFTextRenderingMode );
C++ syntax:
void __fastcall SetTextRenderingMode ( TPDFTextRenderingMode Mode );
Description:
Determines whether showing text causes glyph outlines to be stroked, filled, used as a clipping boundary, or some combination of the three.
Code Example
program TextRender;
{$APPTYPE CONSOLE}
uses
SysUtils, Graphics, Classes, HPDFDoc;
var
HPDF: THotPDF;
begin
HPDF := THotPDF.Create(nil);
try
HPDF.AutoLaunch := true; // PDF file will be shown automatically
HPDF.FileName := '.\TextRender.pdf'; // Set PDF filename
HPDF.BeginDoc; // Create PDF file
HPDF.CurrentPage.SetRGBStrokeColor( clRed ); // Set stroke color
HPDF.CurrentPage.SetRGBFillColor( clYellow ); // Set fill color
HPDF.CurrentPage.SetTextRenderingMode( trFillThenStroke ); // Set fill and stroke rendering mode
HPDF.CurrentPage.TextOut( 10, 10, 0, 'Fill and stroke text'); // Print text
HPDF.EndDoc; // Close PDF file
finally
HPDF.Free;
end;
end.
Value Meaning
trFill
|
Fill text.
|

|
trStroke
|
Stroke text.
|

|
trFillThenStroke
|
Fill, then stroke text.
|

|
trInvisible
|
Neither .ll nor stroke text (invisible).
|
|
trFillClipping
|
Fill text and add to path for clipping.
|

|
trStrokeClipping
|
Stroke text and add to path for clipping.
|

|
trFillStrokeClipping
|
Fill, then stroke text and add to path for clipping.
|

|
trClipping
|
Add text to path for clipping.
|

|
|