L_DoubleToU8Fixed8Number

Summary

Converts a fractional value into a 1-byte fixed, 1-byte fraction format.

Syntax

#include "l_bitmap.h"

L_LTCLR_API L_UINT16 L_DoubleToU8Fixed8Number(dNumber)

Parameters

L_DOUBLE dNumber

A double fractional value to be converted.

Returns

A 2-bytes (1-byte fixed, 1-byte fraction) value that represents the value passed to the function.

Comments

This function is used for ICC profiles purposes. The returned value must be cast into an L_IccU8Fixed8Number type.

This value consists of 2-bytes: 1-byte contains the fixed part of the number, and 1-byte contains the fractional part of the number.

Required DLLs and Libraries

Platforms

Win32, x64.

See Also

Functions

Topics

Example

L_IccU8Fixed8Number DoubleToU8Fixed8NumberExample(L_DOUBLE dNumber)  
{ 
   return ((L_IccU8Fixed8Number) L_DoubleToU8Fixed8Number(dNumber));  
}  
Help Version 22.0.2023.2.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Color Conversion C API Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.