gpt4 book ai didi

python - PyCharm 中未使用的变量

转载 作者:太空宇宙 更新时间:2023-11-04 10:13:46 25 4
gpt4 key购买 nike

if ".jpg" in link or ".png" in link:
fd = urllib.request.urlopen(link)
#Checks the dimensions of said image file
Image_file = io.BytesIO(fd.read())
with Image.open(Image_file) as im:
width, height = im.size
print(im.size)

好的,所以我正在创建一个网络爬虫,它应该下载大小为 1920 x 1080 的图像。实际程序可以运行,但是 PyCharm 和 Codacy 说这里没有使用宽度和高度变量:

with Image.open(Image_file) as im:
width, height = im.size

我想这是对的,因为我稍后不会在代码中调用它们,但我想知道是否有任何其他方法可以做到这一点,所以在查看代码时我没有看到未使用的代码错误。

另一个例子:

with Image.open(Image_file) as im:
width, height = im.size
#If the dimensions are 1920 by 1080, it will download the file in Wallpapers/filename_#WALL_#PAGE
#This format makes it easy to check which images was downloaded from which page
if(im.size == (1920, 1080)):
wall += 1
print("***FOUND***\t" + str(wall))
urllib.request.urlretrieve(link, "Wallpapers/filename"+ str(wall) +"_" + str(page) +".png")

这可能是一个愚蠢的问题,但我感谢所有答案。 :)

最佳答案

此方法可以简化您的目的

例如:

from StringIO import StringIO

imageURL = img.get('src')
fd = urllib.request.urlopen(link)
image_name = imageName + '.bmp'

i = Image.open(StringIO(fd.content))

# i.save(dirName + '/' + image_name)

关于python - PyCharm 中未使用的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36654871/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com