Doubts in the snapchat project

1)How do I replace one image over other at certain alignment?
2)How to make background color white?( as I am unable to see the glasses?

Hello @nikhil_sarda,

You replace the values of the image array at that particular location, e.g, if I need to replace an image B of size 10x10 at location 200,100 of an image A of size 500x500, I will do something like this,

image_A[200:210][100:110] = image_B[:]

Check this out.

Happy Learning :slightly_smiling_face:

please send your code