Я собираю изображения с URL-адресов, которые находятся внутри фрейма данных. Он работал отлично, но когда я обновил свою установку Anaconda, изображения очищаются.
После очистки изображений Я изменил размер на 100 на 100
Это мой код:
import urllib
imagesfiles = []
from PIL import Image
from PIL import Image, ImageFile
ImageFile.LOAD_TRUNCATED_IMAGES = True
for number in range(0, 2):
file_location = df.userScreen[number] + '.' + df.profile[number].split('.')[-1]
urllib.urlretrieve(df.profile[number], "data/images/"+file_location)
im1 = Image.open("data/images/" + file_location)
im_small = im1.resize((100, 100), Image.ANTIALIAS)
im_small.save("data/images/"+file_location)
df.loc[count,'profile'] = "data/images/"+file_location
count += 1