DynaPDF Manual - Page 789

Previous Page 788   Index   Next Page 790

Function Reference
Page 789 of 839
Example (C/C++):
char labColor[3] = {50, -34, 77}; // L, *a, *b
pdfSetStrokeColorEx(pdf, (BYTE*)labColor, 3);
Return values:
If the function succeeds the return value is 1. If the function fails the return value is 0.
SetStrokeColorF
Syntax:
LBOOL pdfSetStrokeColorF(
const PPDF* IPDF,
// Instance pointer
const float* Color, // Array of float values
UI32 NumComponents) // Must be equal to the underlying color space
The function sets the current stroke color as an array of float values. The components of non-Lab
color spaces must be in the range from 0 through 1. The *a and *b components of a Lab color space
are typically in a range from ­128 though 127. The *L component ranges from 0 through 100.
The number of components must match the number of components of the underlying color space.
Return values:
If the function succeeds the return value is 1. If the function fails the return value is 0.
 

Previous topic: SetStrokeColor, SetStrokeColorEx

Next topic: SetStrokeColorSpace, SetTabLen