I am trying to crop an image in python in circular shape. And I also want to paste that image on the top of another image, and then then then save the image in a desired format.
This is the image that I want to crop in circular way
This is how the image should be looked like after cropping
This is the image on which I want to paste the circular shaped image
Here is the code, as far I tried
JavaScript
x
24
24
1
from PIL import Image, ImageDraw, ImageFilter
2
3
im1 = Image.open('rocket.jpg')
4
im2 = Image.open('lena.jpg')
5
6
width, height = im1.size
7
print(height, width)
8
9
mask_im = Image.new("L", im2.size, 0)
10
draw = ImageDraw.Draw(mask_im)
11
draw.ellipse((150, 40, 250, 100), fill=255)
12
mask_im.save('mask_circle.jpg', quality=95)
13
14
back_im = im1.copy()
15
back_im.paste(im2, (0, 0), mask_im)
16
back_im.save('rocket_pillow_paste_mask_circle.jpg', quality=95)
17
18
mask_im_blur = mask_im.filter(ImageFilter.GaussianBlur(10))
19
mask_im_blur.save('mask_circle_blur.jpg', quality=95)
20
21
back_im = im1.copy()
22
back_im.paste(im2, (0, 0), mask_im_blur)
23
back_im.save('rocket_pillow_paste_mask_circle_blur.jpg', quality=95)
24
Advertisement
Answer
JavaScript
1
33
33
1
from PIL import Image, ImageDraw, ImageFilter
2
3
4
im1 = Image.open('rocket.jpg')
5
im2 = Image.open('lena.jpg')
6
7
#height, width, channels = im1.shape
8
width, height = im1.size
9
print(height, width)
10
11
12
# 
13
14
mask_im = Image.new("L", im2.size, 0)
15
draw = ImageDraw.Draw(mask_im)
16
draw.ellipse((140, 50, 260, 170), fill=255)
17
mask_im.save('mask_circle.jpg', quality=95)
18
19
back_im = im1.copy()
20
back_im.paste(im2, (0, 0), mask_im)
21
back_im.save('rocket_pillow_paste_mask_circle.jpg', quality=95)
22
23
# 
24
25
mask_im_blur = mask_im.filter(ImageFilter.GaussianBlur(10))
26
mask_im_blur.save('mask_circle_blur.jpg', quality=95)
27
28
back_im = im1.copy()
29
back_im.paste(im2, (0, 0), mask_im_blur)
30
back_im.save('rocket_pillow_paste_mask_circle_blur.jpg', quality=95)
31
32
# 
33