6 lines
182 B
Python
6 lines
182 B
Python
from photo_review.photo_review import open_image_from_url
|
|
|
|
if __name__ == '__main__':
|
|
image = open_image_from_url("./PH20240529000194_1_075936_1.png")
|
|
image.save("test.png")
|