←Select platform

MosaicCommand Constructor(int)

Summary
Initializes a new MosaicCommand class object with explicit parameters.
Syntax
C#
C++/CLI
Python
public MosaicCommand( 
   int dimension 
) 
public: 
MosaicCommand(  
   int dimension 
) 
__init__(self,dimension) # Overloaded constructor 

Parameters

dimension
Dimensions of the tiles (dimension x dimension), in pixels. Only positive values are accepted.

Example

Run the MosaicCommand on an image and applies a mosaic effect.

C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.Effects; 
 
 
public void MosiacConstructorExample() 
{ 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, @"ImageProcessingDemo\Image2.jpg")); 
 
   // Prepare the command 
   MosaicCommand command = new MosaicCommand(7); 
   //Apply a mosaic effect with 7x7 tiles. 
   command.Run(image); 
   codecs.Save(image, Path.Combine(LEAD_VARS.ImagesDir, "Result.jpg"), RasterImageFormat.Jpeg, 24); 
 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS23\Resources\Images"; 
} 
Requirements

Target Platforms

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

Leadtools.ImageProcessing.Effects Assembly

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