155k views
5 votes
The purpose of this assignment is to use Python to merge several photographic elements into a single photo.

Search for and download a photograph of a jackrabbit.
Use the web to search and download an image depicting a GCU campus or event.
Locate and use your antelope photograph from Topic 1
Take a head-to-toe photograph of yourself.
The textbook outlines several ways to manipulate multiple images using Python. Choose one (or more) of these methods and use Python to collage the GCU photo (background), along with the jackrabbit and antelope photos (foreground).
Trade the antelope horns with the jackrabbit ears to create 2 possible candidates for a Jackalope.
Save the resulting (completed) image file.
Create an HTML Web document within LopesCloud that displays the collaged image from step 7, and plays the blended WAV document that you created in Topic 5. Add a headline "Mythological Jackalope Discovered!"

User Manu Joy
by
5.1k points

1 Answer

1 vote

Answer:

def picture_com():

antelope = makePicture(pick_A_File))

jack_rabbit = makePicture(pick_A_File)

canvas = makeEmptyPicture(640,480)

antelopePixel = getPixel(antelope)

rabbitPixel = getPixel(jackrabbit)

Step-by-step explanation:

The python program uses the picture module to get the downloaded rabbit and antelope pictures and set them on the canvas.

User AndrewKS
by
4.4k points