zoukankan      html  css  js  c++  java
  • 关于python中的 “ FileNotFoundError: [Errno 2] No such file or directory: '……'问题 ”

    今天在学python时,在模仿一个为图片加上图标并移动到指定文件夹的程序时遇到“FileNotFoundError: [Errno 2] No such file or directory: '1528712892362.jpg'”这个问题。

    讲讲解决方案,因为我要处理的十几张图片是位于 ‘F:图片’ 这个路径下的,但是读取到具体的某一个文件时忘记使用绝对路径,如果没有为文件加上前面的绝对路径的话,我的理解是默认在程序所在的路径作为当前路径来查找的,所以就会报错说找不到文件。

    后来加上代码中的第10行,并在16行中稍作修改就行了。

     1 import os
     2 from PIL import Image
     3 SQUARE_FIT_SIZE=500
     4 LOGO_FILENAME='catlogo.png'
     5 logoIm=Image.open(LOGO_FILENAME)
     6 width1,height1=logoIm.size
     7 logoIm1=logoIm.resize((int(width1/5),int(height1/5)))
     8 logoWidth,logoHeight=logoIm1.size
     9 logoIm=logoIm1
    10 root='F:/图片/'
    11 os.makedirs('withLogo',exist_ok=True)
    12 for filename in os.listdir('F:图片'):
    13     print(filename)
    14     if not (filename.endswith('.png') or filename.endswith('.jpg')) or filename==LOGO_FILENAME:
    15         continue
    16     im=Image.open(root+filename)
    17     width,height=im.size
    18     print('Resizing %s...'%(filename))
    19     im=im.resize((width,height))
    20     print('Adding logo to %s...'%(filename)) 
    21     im.paste(logoIm,(width-logoWidth,height-logoHeight),logoIm)
    22     im.save(os.path.join('withLogo',filename))
  • 相关阅读:
    bzoj 3238
    bzoj 3473 后缀自动机多字符串的子串处理方法
    bzoj 2998 第k小字串
    bzoj 3672 利用点分治将CDQ分治推广到树型结构上
    bzoj 3671 贪心
    NOIP模拟题——nan
    NOIP模拟题——kun(栈)
    hduP2586——How far away ?
    DP习题
    NOIP模拟题——来自风平浪静的明天
  • 原文地址:https://www.cnblogs.com/Guhongying/p/9787403.html
Copyright © 2011-2022 走看看