PIL es la biblioteca de imágenes de Python que proporciona al intérprete de Python capacidades de edición de imágenes.
PIL.Imagen.copia()
El método copia la imagen a otro objeto de imagen, este método es útil cuando necesitamos copiar la imagen pero también conservar el original.
Syntax:Image.copy() Parameters: no arguments Returns:An image object
# Importing Image module from PIL package from PIL import Image # creating a image object im1 = Image.open(r"C:\Users\sadow984\Desktop\i3.PNG") # copying image to another image object im2 = im1.copy() # shows the copied image im2.show()
Producción:
# Importing Image module from PIL package from PIL import Image # creating a image object im1 = Image.open(r"C:\Users\sadow984\Desktop\i3.PNG") # copying image to another image object im2 = im1.copy() # shows the original image im1.show()
Producción:
Publicación traducida automáticamente
Artículo escrito por ravikishor y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA