Wand splice() function - Python Last Updated : 10 Aug, 2021 Comments Improve Suggest changes Like Article Like Report The splice() function is an inbuilt function in the Python Wand ImageMagick library which is used to partition the image by splicing a width x height rectangle at (x, y) offset coordinate. The space inserted will be replaced by the available background color. Syntax: splice(width, height, x, y) Parameters: This function accepts four parameters as mentioned above and defined below: width: This parameter stores the width of the rectangle.height: This parameter stores the height of the rectangle.x: This parameter stores the offset on the x-axis.y: This parameter stores the offset on the y-axis. Return Value: This function returns the Wand ImageMagick object. Original Image: Example 1: Python3 # Import library from Image from wand.image import Image # Import the image with Image(filename ='../geeksforgeeks.png') as image: # Clone the image in order to process with image.clone() as splice: # Invoke splice function with height as 20, width as 20, x as 10, y as 10 splice.splice(20, 20, 10, 10) # Save the image splice.save(filename ='splice1.jpg') Output: Example 2: Python3 # Import libraries from the wand from wand.image import Image from wand.drawing import Drawing from wand.color import Color with Drawing() as draw: # Set Stroke color the circle to black draw.stroke_color = Color('black') # Set Width of the circle to 2 draw.stroke_width = 1 # Set the fill color to 'White (# FFFFFF)' draw.fill_color = Color('white') # Invoke Circle function with center at 50, 50 and radius 25 draw.circle((200, 200), # Center point (100, 100)) # Perimeter point # Set the font style draw.font = '../Helvetica.ttf' # Set the font size draw.font_size = 30 with Image(width = 400, height = 400, background = Color('# 45ff33')) as pic: # Set the text and its location draw.text(int(pic.width / 3), int(pic.height / 2), 'GeeksForGeeks !') # Draw the picture draw(pic) # Invoke splice function with height as 10, width as 10, x as 15, y as 20 pic.splice(10, 10, 15, 20) # Save the image pic.save(filename ='splice2.jpg') Output: Comment More infoAdvertise with us Next Article Wand splice() function - Python S sarthak_ishu11 Follow Improve Article Tags : Python Image-Processing Python-wand Practice Tags : python Similar Reads Python slice() function In this article, we will learn about the Python slice() function with the help of multiple examples. Example Python3 String = 'Hello World' slice_obj = slice(5,11) print(String[slice_obj]) Output: World A sequence of objects of any type (string, bytes, tuple, list, or range) or the object which im 5 min read Wand shave() function - Python The shave() function is an inbuilt function in the Python Wand ImageMagick library which is used to remove pixels from the image. Syntax: shave(columns, rows) Parameters: This function accepts four parameters as mentioned above and defined below: columns: This parameter is used to set amount to shav 2 min read Wand chop() function - Python The chop() function is an inbuilt function in the Python Wand ImageMagick library which is used to remove a region of an image. Syntax: chop(width, height, x, y) Parameters: This function accepts four parameters as mentioned above and defined below: width: This parameter stores the size of the regio 2 min read Wand crop() function in Python Cropping an image refers to select an area of image and discard everything outside the cropped area. Crop tool is an important tool as it allows us to get the only relevant part of an image. Also sometimes something unwanted may be contained in the image and that can be discarded from the image usin 2 min read Wand transform() function in Python In order to resize and crop an image at the same time transform() function is used in wand. First crop operation is performed and then resize operation. Syntax : wand.image.transform(crop='', resize='') Parameters : Parameter Input Type Description crop basestring A geometry string defining a subreg 2 min read Like