LBitmapSettings::SetDisplayMode

Summary

Sets flags that control the speed, quality, and style of painting operations.

Syntax

#include "ltwrappr.h"

static L_UINT32 LBitmapSettings::SetDisplayMode(uFlagPos, uFlagSet)

Parameters

L_UINT32 uFlagPos

The flag or flags to be changed. You can use a bitwise OR ( | ) to specify more than one flag. You can use DISPLAYMODE_RESETPOSITIONS to indicate all flags.

Refer to Flags for the LBitmapSettings::SetDisplayMode Function for descriptions of the flags.

L_UINT32 uFlagSet

The flags (of those specified in the uFlagPos parameter) to be turned on. You can use a bitwise OR ( | ) to include more than one flag. You can use 0 to turn off all the flags specified in the uFlagPos parameter.

Refer to Flags for the LBitmapSettings::SetDisplayMode Function for descriptions of the flags.

Returns

None.

Comments

The first parameter specifies which flags are affected, and the second specifies which of those to turn on. The other affected flags are turned off.

Therefore:

For example, the following statement turns on fast painting, turns off dithered painting, and leaves all other flags as they were:

LBitmapSettings::SetDisplayMode(DISPLAYMODE_FASTPAINT | DISPLAYMODE_DITHEREDPAINT, DISPLAYMODE_FASTPAINT ); 

For the fastest paint, neither DISPLAYMODE_BICUBIC nor DISPLAYMODE_RESAMPLE should be set.

DISPLAYMODE_RESAMPLE and DISPLAYMODE_BICUBIC cannot be combined.

When painting 1BPP images, DISPLAYMODE_FAVORBLACK and DISPLAYMODE_SCALETOGRAY take precedence over DISPLAYMODE_RESAMPLE and DISPLAYMODE_BICUBIC.

DISPLAYMODE_RESAMPLE is faster than DISPLAYMODE_BICUBIC, but DISPLAYMODE_BICUBIC produces better results when zooming in on images. When zooming out, DISPLAYMODE_BICUBIC and DISPLAYMODE_RESAMPLE produce the same effect.

DISPLAYMODE_GDIPLUS will use Microsoft GDI+ instead of the Windows GDI when painting images. GDI+ is generally slower than GDI however it adds support for painting 32 and 64-bit bitmaps with alpha channels as well as paint a bitmap with transparent color (BITMAPHANDLE.Flags.Transparency set to TRUE). Using this flags requires the Microsoft GDI+ runtime DLL gdiplus.dll to be installed on the machine.

Required DLLs and Libraries

Platforms

Win32, x64.

See Also

Functions

Topics

Example

For an example, refer to LBitmapSettings::GetDisplayMode.

Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C++ Class Library Help

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