LBitmap::RevEffect

#include "ltwrappr.h"

virtual L_INT LBitmap::RevEffect(uLineSpace, uMaximumHeight)

L_UINT uLineSpace;

/* spacing between lines */

L_UINT uMaximumHeight;

/* maximum wave height */

Adds a pseudo-3D wave effect to the bitmap by drawing lines across the bitmap, basing the line’s height at each point on its brightness at that point. This function is available in the Raster Pro and above toolkits.

Parameter

Description

uLineSpace

The space (in pixels) between each wave.

uMaximumHeight

The maximum height (in pixels) that the wave can reach.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes.

Comments

This function adds a pseudo-3D wave effect to the bitmap . It is similar to the Rutt-Etra Video Synthesizer. The Rutt-Etra video synthesizer was a processor that modulated the deflection lines of a television image so that they appeared to adopt the contours of objects. It was invented by Steve Rutt and Bill Etra in the 1970s.

With this function, you set the maximum height to be used for the pixels with the maximum brightness value. The other pixel heights are calculated by linear interpolation. Each line is 1 pixel in width. Control the spacing between the lines that are drawn across the image with the uLineSpace parameter.

You can get a more stable wave by performing either of the following:

Apply any type of blur like LBitmap::GaussianFilter blur with a large nRadius value.

Apply the LBitmap::RevEffect and pass a small value to uMaximumHeight.

Support for 12 and 16-bit grayscale and 48 and 64-bit color images is available only in the Document/Medical toolkits.

To update a status bar or detect a user interrupt during execution of this function, refer to LBase::EnableStatusCallback.

This function does not support signed data images. It returns the error code ERROR_SIGNED_DATA_NOT_SUPPORTED if a signed data image is passed to this function.

Required DLLs and Libraries

LTIMG

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application.

See Also

Functions:

LBitmap::BricksTexture, LBitmap::Canvas, LBitmap::Clouds, LBitmap::ColoredBalls, LBitmap::DiffuseGlow, LBitmap::DisplaceMap, LBitmap::Fragment, LBitmap::HalfTonePattern, LBitmap::MaskConvolution, LBitmap::MosaicTiles, LBitmap::Offset, LBitmap::Perspective, LBitmap::PlasmaFilter, LBitmap::Pointillist, LBitmap::RomanMosaic, LBitmap::Vignette, LBitmap::ZigZag, LBitmap::Emboss, LBitmap::AddShadow, LBitmap::AllocFTArray, LBitmap::ChangeHueSatIntBitmap, LBitmap::ColorReplace, LBitmap::ColorThreshold, LBitmap::DFT, LBitmap::DirectionEdgeStatistical, LBitmap::FFT, LBitmap::FreeFTArray, LBitmap::FrqFilter, LBitmap::FrqFilterMask, LBitmap::FTDisplay, LBitmap::GetStatisticsInfo, LBitmap::GetFeretsDiameter, LBitmap::GetObjectInfo, LBitmap::GetRgnContourPoints, LBitmap::GetRgnPerimeterLength, LBitmap::MathFunction, LBitmap::Segment, LBitmap::SubtractBackground, LBitmap::UserFilter

Topics:

Raster Image Functions: Artistic Effects

 

Applying Artistic Effects

Example

void TestFunction(LBitmap *pLeadBitmap) 
{
   /* Apply Rev effect on the image*/
   pLeadBitmap->RevEffect (3, 37); 
}