Cita:
Iniciado por Johnfredy Cuando corro el siguiente codigo me aparese el siguiente error:
Traceback (most recent call last):
File "C:\Users\John\Documents\Project2\tyarea7.py", line 4, in <module>
width, height = media.get_width(image), media.get_height(image)
File "C:\Python27\lib\site-packages\pygraphics\media.py", line 62, in get_width
return pic.get_width()
AttributeError: 'unicode' object has no attribute 'get_width'
Que puedo hacer para corregirloo!!! Urgente es para mañana :(
Este es mi codigo:
i import media
image = media.load_picture('fdsfds.jpg')
width, height = media.get_width(image), media.get_height(image)
instancias la clase media.load_picture() con el identificador image
entonces este objeto creado tiene todo los metodos y se invocan con su identificador asi
width, height = image.get_width(), image.get_height()