Posts by mikhailpedrosa • 41 points
2 posts
-
2
votes1
answer500
viewsA: How to translate an image in python?
My colleague managed to solve the problem. Solution just below: destino = Image.open("foto.png") #Tamanho Imagem - Largura e Altura lar = destino.size[0] alt = destino.size[1] x_loc = 200 y_loc =…
pythonanswered mikhailpedrosa 41 -
2
votes1
answer500
viewsQ: How to translate an image in python?
My intention is to do as in the figure below: http://postimg.org/image/pdb6urf1d/ My job: def translacao(imagem1): imagem1.save("translate.png") destino = Image.open("translate.png") destino =…
pythonasked mikhailpedrosa 41