THPDFPage.SetTextRenderingMode

THPDFPage

 

Top  Previous  Next

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.

 

Fill text rendering diagram

 

trStroke

 

Stroke text.

 

Stroke text rendering diagram

 

trFillThenStroke

 

Fill, then stroke text.

 

Fill and stroke text rendering diagram

 

trInvisible

 

 

Neither .ll nor stroke text (invisible).

 

 

 

trFillClipping

 

Fill text and add to path for clipping.

 

Fill text and add to path rendering diagram

 

trStrokeClipping

 

Stroke text and add to path for clipping.

 

Stroke text and add to path rendering diagram

 

trFillStrokeClipping

 

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

 

Fill and stroke text rendering with path addition diagram

 

trClipping

 

Add text to path for clipping.

 

Stroke text clipping rendering diagram