如何使用Python re模块在单个文件中将\n替换为空

发布于 2024-09-29 23:58:15 字数 5170 浏览 2 评论 0原文

向大家问好。 我正在使用 Python 图像库开发图像压缩系统。基本工作流程是:

  • 读取某个目录的所有图像:find /opt/images -name *.jpg > /opt/rs/images.txt
  • 读取此文件并将结果存储在 Python 列表中
  • 迭代该列表,创建一个 Image 对象并像参数一样传递给 压缩功能
  • ,并将生成的图像复制到构建的某个目录中 取决于图像的名称。

一个例子: /opt/buzon/17_499999_1_00000000_00000999_1.jpg 这是图像的真实名称: 最终结果是: 17_499999.jpg 输出目录为:/opt/ftp 并且应该以这种方式存储: 1- 第一个分区 00000000 - 第二个分区 00000999 - 第三个分区 1- 这个标志是否决定我们是否必须压缩该图像(1 为 False,0 为 True)

因此图像的最终路径是: /opt/ftp/1/00000000/00000999/17_499999.jpg 为原始副本 /opt/ftp/1/00000000/00000999/17_499999_tumb.jpg

现在,问题出在哪里。当我读取存储 find 命令结果的文件时,文件的每一行都有 \n 字符。

我如何用正则表达式替换这个?

完整的源代码是这样的。欢迎任何建议。


import Image, os ,sys, re, subprocess, shlex
import ConfigParser
from symbol import except_clause

CONFIG_FILE = "/opt/scripts/config.txt"
config = ConfigParser.ConfigParser()   
config.read(CONFIG_FILE)

entry_dir = config.get('directories', 'entry_dir')
out_dir = config.get('directories', 'out_dir')

def resize(img, box, fit, out):
    '''Downsample the image.

    @param img: Un objeto de la clase Imagen
    @param box: tuple(x, y) - El recuadro de la imagen resultante
    @param fix: boolean - el corte de la imagen para llenar el rectangulo
    @param out: objeto de tipo fichero -  guarda la imagen hacia la salida estandar
    '''
    # prepara la imagen con un factor de 2, 4, 8 y el algoritmo mas rapido        
    factor = 1
    while img.size[0]/factor > 2*box[0] and img.size[1]*2/factor > 2*box[1]:
      factor *=2
      if factor > 1:
          img.thumbnail((img.size[0]/factor, img.size[1]/factor), Image.NEAREST)
          # Aqui se calcula el rectangulo optimo para la imagen

      if fit:
          x1 = y1 = 0
          x2, y2 = img.size
          wRatio = 1.0 * x2/box[0]
          hRatio = 1.0 * y2/box[1]
          if hRatio > wRatio:
              y1 = y2/2-box[1]*wRatio/2
              y2 = y2/2+box[1]*wRatio/2
          else:
              x1 = x2/2-box[0]*hRatio/2
              x2 = x2/2+box[0]*hRatio/2
              # Este metodo es para manipular rectangulos de una determinada imagen
              # definido por 4 valores que representan las coordenadas: izquierda,
              # arriba, derecha y abajo
              img = img.crop((x1,y1,x2,y2))
            # Le damos el nuevo tamanno a la imagen con el algoritmo de mejor calidad(ANTI-ALIAS)
              img.thumbnail(box, Image.ANTIALIAS)
    return img

def removeFiles(directory):
    """
    Funcion para borrar las imagenes luego de ser procesadas
    """
    for f in os.listdir(directory):
     path = os.path.abspath(f)
     if re.match("*.jpg", path):
         try:
             print "Erasing %s ..." % (path)
             os.remove(path)
         except os.error:
             pass

def case_partition(img):
    """
    @desc: Esta funcion es la que realmente guarda la imagen en la
    particion 0
    @param: imagen a guardar
    @output_dir: Directorio a guardar las imagenes
    """
    nombre_imagen = img
    nombre_import = os.path.splitext(nombre_imagen) 
    temp = nombre_import[0]
    nombre_real = temp.split('_')

    if nombre_real[4] == 0:
         ouput_file = nombre_real[0] + nombre_real[1] + ".jpg"
         output_dir = out_dir + "/%d/%d/%d/" % (nombre_real[2], nombre_real[3], nombre_real[4])
         if os.path.isdir(output_dir):
              os.chdir(output_dir)
              img.save(output_file, "JPEG", quality=75)
         else:
              create_out_dir(output_dir)
              os.chdir(output_dir)
              img.save(output_file)
    else:    
         print "Esta imagen sera comprimida"
         img = resize(img, 200, 200, 200) ## FIXME Definir el tamano de la imagen
         # Salvamos la imagen hacia un objeto de tipo file
         # con la calidad en 75% en JPEG y el nombre definido por los especialistas
         # Este nombre no esta definido......
        # FIXME
         output_file = nombre_real[0] + nombre_path[1] + "_.jpg"
         output_dir = out_dir + "/%d/%d" % (nombre_real[2], nombre_real[3], nombre_real[4]) 
         if os.path.isdir(output_dir):
              os.chdir(out)
              img.save(output_file, "JPEG", quality=75)
         else:
             create_out_dir(output_dir)
             os.chdir(output_dir)
             img.save(output_file, "JPEG", quality=75)

if __name__ == "__main__":
   find = "find %s -name *.jpg > /opt/scripts/images.txt" % entry_dir
   args = shlex.split(find)
   p = subprocess.Popen(args)
   f = open('/opt/scripts/images.txt', "r")   
   images = []

   for line in f:
     images.append(line)

   f.close()
   for i in images:
       img = Image.open(filename) # Here is the error when I try to open a file
       case_partition(img)        # with the format '/opt/buzon/15_498_3_00000000_00000000_1.jpg\n'
                                  # and the \n character is which I want to replace with nothing
   removeFiles(entry_dir)         #
                                  #

问候

Regards to all.
I'm developing a Image compression system using Python Image Library. The basic workflow is:

  • Read all images of a certain directory with : find /opt/images -name *.jpg > /opt/rs/images.txt
  • Read this file and storage the result in a Python list
  • Iterate the list, create a Image object and passing like a argument to
    the compress function
  • and, copy the resulting image on a certain directory which is buit
    depending of the name of the image.

A example:
/opt/buzon/17_499999_1_00000000_00000999_1.jpg
This is the real name of the image:
The final result is:
17_499999.jpg
The ouput directory is: /opt/ftp
and should be storaged on this way:
1- first partition
00000000 - second partition
00000999 - third partition
1- this flag if to decide if we have to compress this image or not (1 is False, 0 is True)

For that reason the final path of the image is:
/opt/ftp/1/00000000/00000999/17_499999.jpg for the original copy
/opt/ftp/1/00000000/00000999/17_499999_tumb.jpg

Now, Where is the problem. When I read the file where I storage the result of the find command, each line of the file has the \n character.

How I can replace with regular expressions this?

The completed source code is this. Any suggests is welcome.


import Image, os ,sys, re, subprocess, shlex
import ConfigParser
from symbol import except_clause

CONFIG_FILE = "/opt/scripts/config.txt"
config = ConfigParser.ConfigParser()   
config.read(CONFIG_FILE)

entry_dir = config.get('directories', 'entry_dir')
out_dir = config.get('directories', 'out_dir')

def resize(img, box, fit, out):
    '''Downsample the image.

    @param img: Un objeto de la clase Imagen
    @param box: tuple(x, y) - El recuadro de la imagen resultante
    @param fix: boolean - el corte de la imagen para llenar el rectangulo
    @param out: objeto de tipo fichero -  guarda la imagen hacia la salida estandar
    '''
    # prepara la imagen con un factor de 2, 4, 8 y el algoritmo mas rapido        
    factor = 1
    while img.size[0]/factor > 2*box[0] and img.size[1]*2/factor > 2*box[1]:
      factor *=2
      if factor > 1:
          img.thumbnail((img.size[0]/factor, img.size[1]/factor), Image.NEAREST)
          # Aqui se calcula el rectangulo optimo para la imagen

      if fit:
          x1 = y1 = 0
          x2, y2 = img.size
          wRatio = 1.0 * x2/box[0]
          hRatio = 1.0 * y2/box[1]
          if hRatio > wRatio:
              y1 = y2/2-box[1]*wRatio/2
              y2 = y2/2+box[1]*wRatio/2
          else:
              x1 = x2/2-box[0]*hRatio/2
              x2 = x2/2+box[0]*hRatio/2
              # Este metodo es para manipular rectangulos de una determinada imagen
              # definido por 4 valores que representan las coordenadas: izquierda,
              # arriba, derecha y abajo
              img = img.crop((x1,y1,x2,y2))
            # Le damos el nuevo tamanno a la imagen con el algoritmo de mejor calidad(ANTI-ALIAS)
              img.thumbnail(box, Image.ANTIALIAS)
    return img

def removeFiles(directory):
    """
    Funcion para borrar las imagenes luego de ser procesadas
    """
    for f in os.listdir(directory):
     path = os.path.abspath(f)
     if re.match("*.jpg", path):
         try:
             print "Erasing %s ..." % (path)
             os.remove(path)
         except os.error:
             pass

def case_partition(img):
    """
    @desc: Esta funcion es la que realmente guarda la imagen en la
    particion 0
    @param: imagen a guardar
    @output_dir: Directorio a guardar las imagenes
    """
    nombre_imagen = img
    nombre_import = os.path.splitext(nombre_imagen) 
    temp = nombre_import[0]
    nombre_real = temp.split('_')

    if nombre_real[4] == 0:
         ouput_file = nombre_real[0] + nombre_real[1] + ".jpg"
         output_dir = out_dir + "/%d/%d/%d/" % (nombre_real[2], nombre_real[3], nombre_real[4])
         if os.path.isdir(output_dir):
              os.chdir(output_dir)
              img.save(output_file, "JPEG", quality=75)
         else:
              create_out_dir(output_dir)
              os.chdir(output_dir)
              img.save(output_file)
    else:    
         print "Esta imagen sera comprimida"
         img = resize(img, 200, 200, 200) ## FIXME Definir el tamano de la imagen
         # Salvamos la imagen hacia un objeto de tipo file
         # con la calidad en 75% en JPEG y el nombre definido por los especialistas
         # Este nombre no esta definido......
        # FIXME
         output_file = nombre_real[0] + nombre_path[1] + "_.jpg"
         output_dir = out_dir + "/%d/%d" % (nombre_real[2], nombre_real[3], nombre_real[4]) 
         if os.path.isdir(output_dir):
              os.chdir(out)
              img.save(output_file, "JPEG", quality=75)
         else:
             create_out_dir(output_dir)
             os.chdir(output_dir)
             img.save(output_file, "JPEG", quality=75)

if __name__ == "__main__":
   find = "find %s -name *.jpg > /opt/scripts/images.txt" % entry_dir
   args = shlex.split(find)
   p = subprocess.Popen(args)
   f = open('/opt/scripts/images.txt', "r")   
   images = []

   for line in f:
     images.append(line)

   f.close()
   for i in images:
       img = Image.open(filename) # Here is the error when I try to open a file
       case_partition(img)        # with the format '/opt/buzon/15_498_3_00000000_00000000_1.jpg\n'
                                  # and the \n character is which I want to replace with nothing
   removeFiles(entry_dir)         #
                                  #

Regards

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

仅一夜美梦 2024-10-06 23:58:15

假设 s 是带有回车符的字符串,您可以使用 s.strip("\n") 删除字符串角处的回车符。那里不需要正则表达式。

Assuming s is the string with the carriage return, you may use s.strip("\n") to remove carriage returns at the corners of the string. No need for regular expressions there.

黎夕旧梦 2024-10-06 23:58:15

我猜相关的代码行是这些:

for line in f:
    images.append(line)

要删除 \n,您可以简单地在字符串上调用 strip()

for line in f:
    images.append(line.strip())

I guess the relevant code lines are these:

for line in f:
    images.append(line)

to remove the \n, you can simply call strip() on the string:

for line in f:
    images.append(line.strip())
夏末染殇 2024-10-06 23:58:15

有很多方法可以在不使用正则表达式的情况下做到这一点
最简单和正确的一种是使用images.append(line.rstrip("\n")),你也可以使用images.append(line[:-1])

您也可以使用 glob() 模块来代替通过 shell 调用“find”命令。它将返回结果作为 python 列表,而无需使用文件。例如:images=glob.glob("*.jpg")http://docs.python.org/library/glob.html?highlight=glob

there are many ways to do that without using regexp
simpliest and correct one is use images.append(line.rstrip("\n")), also you can use images.append(line[:-1])

Also you can use glob() module instead call 'find' command through shell. It will return result as python list without having to use the files. ex: images=glob.glob("*.jpg"). http://docs.python.org/library/glob.html?highlight=glob

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文