Consider I have an image image.png in a folder XYZ. I need a Python script which asks the user to enter the image name and the output should be the image pixel and size.
I tried on terminal using sips command as following:
sips -g pixelWidth -g pixelHeight image.png
I need to incorporate the same on Python. I tried with this code
import os
for rootpath,dir,file in os.walk("/Volumes/Macintosh HD/users/username/myfolder"):
for files in file:
def test(name):
return (os.system(sips -g pixelWidth -g pixelHeight name))
But this is not helpful. I am new to Python and doing some experiments. So any help/idea will be appreciated :)