import url import manip # get the image link = input( 'Enter web picture location: ' ) original = url.get_image( link ) # manipulate the image and show the effect du = manip.dup( original ); du.show(); input( 'Enter when ready: ' ) fl = manip.flip( original ); fl.show(); input( 'Enter when ready: ' ) mi = manip.mirror( original ); mi.show(); input( 'Enter when ready: ' ) cw = manip.cw( original ); cw.show(); input( 'Enter when ready: ' ) sc = manip.scale( original, 0.25, 1.25 ); sc.show(); input( 'Enter when ready: ' ) pi = manip.pixelate( original ); pi.show(); input( 'Enter when ready: ' )