L_MosaicTilesBitmap

Summary

Creates a mosaic effect on an image by dividing an image into rectangular or arc-shaped cells with irregular boundaries and modifying the color of each cell.

Syntax

#include "l_bitmap.h"

L_LTIMGSFX_API L_INT L_MosaicTilesBitmap(pBitmap, pMosaicTilesInfo, uFlags)

Parameters

pBITMAPHANDLE pBitmap

Pointer to the bitmap handle that references the bitmap to which to apply the effect.

pMOSAICTILESINFO pMosaicTilesInfo

Pointer to the MOSAICTILESINFO structure that contains information about the required effect.

L_UINT32 uFlags

Reserved for future use. Must be 0.

Returns

Value Meaning
SUCCESS The function was successful.
< 1 An error occurred. Refer to Return Codes.

Comments

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.

This function makes an image look like a mosaic made from tiles. Tiles can be rectangular or arc-shaped, depending upon the coordinate system used to draw the tiles. The function's many parameters control factors like the border color, tile color, pen width, tile width and height, etc.

For an example, click here

Use the L_MosaicBitmap function to impose a mosaic effect on a bitmap by dividing the bitmap into square blocks of a specified size and changing the color of all pixels in each block to the average color of pixels within the block.

Use the L_PixelateBitmap function to divide the bitmap into rectangular or arc-shaped cells and then recreate the image by filling those cells with the minimum, maximum, or average pixel value, depending upon the effect that was selected.

Use the L_RomanMosaicBitmap function to divide the bitmap into rectangular or arc-shaped cells and then fill them with a color chosen randomly from the colors of the tiles pixels.

Use the L_PointillistBitmap function to convert image colors into randomly placed dots to create a pointillist painting, using a background color to fill the area between dots.

This function can process the whole image or a region of the image. If a bitmap has a region, the effect is applied only to the region.

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

To update a status bar or detect a user interrupt during execution of this function, Refer to L_SetStatusCallback.

This function does not support 32-bit grayscale images. It returns the error code ERROR_GRAY32_UNSUPPORTED if a 32-bit grayscale image is passed to this function.

Mosaic Tiles Segment Function - Before

Mosaic Tiles Segment Function - Before

Mosaic Tiles Segment Function - After

Mosaic Tiles Segment Function - After

View additional platform support for this Mosaic Tiles Segment function.

Required DLLs and Libraries

Platforms

Win32, x64.

See Also

Functions

Topics

Example

L_INT MosaicTilesBitmapExample(L_VOID) 
{ 
   L_INT nRet; 
   BITMAPHANDLE LeadBitmap;      /* Bitmap handle for the image */ 
   MOSAICTILESINFO MosaicInfo;   /* Structure which stores the required parameters*/ 
 
   /* Load a bitmap at its own bits per pixel */ 
   nRet = L_LoadBitmap(MAKE_IMAGE_PATH(TEXT("Image2.jpg")), &LeadBitmap, sizeof(BITMAPHANDLE), 0, ORDER_BGRORGRAY, NULL, NULL); 
   if (nRet != SUCCESS) 
      return nRet; 
 
   /*Fill the structure with the required parameters. The effect is applied using rectangular tiles with black border color*/ 
   MosaicInfo.uStructSize = sizeof(MOSAICTILESINFO); 
   MosaicInfo.crBorderColor = RGB(0, 0, 0); 
   MosaicInfo.crTilesColor = RGB(255, 255, 255); 
   MosaicInfo.uFlags = MSCT_CART | MSCT_SHADOWGRAY; 
   MosaicInfo.uTileHeight = LeadBitmap.Height / 5; 
   MosaicInfo.uTileWidth = LeadBitmap.Width / 5; 
   MosaicInfo.uOpacity = 50; 
   MosaicInfo.uShadowThreshold = 0; 
   MosaicInfo.uShadowAngle = SHADOW_SE; 
   MosaicInfo.uPenWidth = 7; 
 
   nRet = L_MosaicTilesBitmap(&LeadBitmap, &MosaicInfo, 0); 
   if (nRet != SUCCESS) 
      return nRet; 
 
   //free Bitmap 
   if (LeadBitmap.Flags.Allocated) 
      L_FreeBitmap(&LeadBitmap); 
 
   return SUCCESS; 
} 
Help Version 22.0.2023.7.11
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C API Help

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