我有一个循环,我需要用唯一的名称将每张图片保存到名为“小猫输出”的文件夹中。现在我有静态名称,所以只保存了最后一张照片。我该怎么办?
我尝试使用“ uuid”库,但这给了我错误。
def process(blur, radius):
try:
for item in dirs:
if os.path.isfile(path+item):
# Load an image from the hard drive
original = Image.open(path + item)
# Blur the image
blurred = original.filter(ImageFilter.GaussianBlur(radius))
# save the new image
blurred.save("kittens-output/random.jpg") ##here I need help
print("Action completed!")
所以目标是将每张照片以唯一的名称保存到“小猫”输出文件夹中。