<legend id='XyUeS'><style id='XyUeS'><dir id='XyUeS'><q id='XyUeS'></q></dir></style></legend>

    <i id='XyUeS'><tr id='XyUeS'><dt id='XyUeS'><q id='XyUeS'><span id='XyUeS'><b id='XyUeS'><form id='XyUeS'><ins id='XyUeS'></ins><ul id='XyUeS'></ul><sub id='XyUeS'></sub></form><legend id='XyUeS'></legend><bdo id='XyUeS'><pre id='XyUeS'><center id='XyUeS'></center></pre></bdo></b><th id='XyUeS'></th></span></q></dt></tr></i><div id='XyUeS'><tfoot id='XyUeS'></tfoot><dl id='XyUeS'><fieldset id='XyUeS'></fieldset></dl></div>
    • <bdo id='XyUeS'></bdo><ul id='XyUeS'></ul>
  1. <tfoot id='XyUeS'></tfoot>

    1. <small id='XyUeS'></small><noframes id='XyUeS'>

      Python实现图片格式转换小程序

      时间:2023-12-16

      <legend id='qRhvG'><style id='qRhvG'><dir id='qRhvG'><q id='qRhvG'></q></dir></style></legend>
          <tbody id='qRhvG'></tbody>

          <small id='qRhvG'></small><noframes id='qRhvG'>

                <bdo id='qRhvG'></bdo><ul id='qRhvG'></ul>
              • <tfoot id='qRhvG'></tfoot>
                <i id='qRhvG'><tr id='qRhvG'><dt id='qRhvG'><q id='qRhvG'><span id='qRhvG'><b id='qRhvG'><form id='qRhvG'><ins id='qRhvG'></ins><ul id='qRhvG'></ul><sub id='qRhvG'></sub></form><legend id='qRhvG'></legend><bdo id='qRhvG'><pre id='qRhvG'><center id='qRhvG'></center></pre></bdo></b><th id='qRhvG'></th></span></q></dt></tr></i><div id='qRhvG'><tfoot id='qRhvG'></tfoot><dl id='qRhvG'><fieldset id='qRhvG'></fieldset></dl></div>
              • Python实现图片格式转换小程序攻略

                1. 确定使用第三方库

                在Python中,要实现图片格式转换,需要用到Python的图像处理库Pillow。我们可以使用pip来安装这个库。

                pip install Pillow
                

                2. 导入必要的库

                在代码的开头,我们首先要导入所需的库,具体代码如下:

                from PIL import Image
                import os
                

                3. 指定文件路径和格式

                首先,我们需要用os库中的listdir函数来获取文件夹中的所有文件名,然后使用for循环遍历文件夹中的所有文件,将其转换为指定的图片格式。例如,以下代码将源文件夹images/中所有.jpg格式的图片转为.png格式:

                source = "images/"
                result = "results/"
                format = ".png"
                
                for file_name in os.listdir(source):
                    if file_name.endswith(".jpg"):
                        img_path = source + file_name
                        img = Image.open(img_path)
                        rgb_img = img.convert("RGB")
                        new_file_name = os.path.splitext(file_name)[0] + format
                        new_file_path = result + new_file_name
                        rgb_img.save(new_file_path, format="PNG")
                

                4. 示例说明

                示例1

                假设我们有如下的文件夹images/,其中存放了两张.jpg格式的图片。

                images/

                • cat.jpg
                • dog.jpg

                执行以上步骤3的代码后,会将images/文件夹中的两张图片转换为.png格式,并且输出至results/文件夹中。

                results/

                • cat.png
                • dog.png

                示例2

                假设我们有如下的文件夹images/,其中存放了三张.jpg格式的图片。

                images/

                • flower.jpg
                • mountain.jpg
                • sky.jpg

                执行以上步骤3的代码后,会将images/文件夹中的两张图片转换为.png格式,并且输出至results/文件夹中。

                results/

                • flower.png
                • mountain.png
                • sky.png

                5. 完整代码

                from PIL import Image
                import os
                
                source = "images/"
                result = "results/"
                format = ".png"
                
                for file_name in os.listdir(source):
                    if file_name.endswith(".jpg"):
                        img_path = source + file_name
                        img = Image.open(img_path)
                        rgb_img = img.convert("RGB")
                        new_file_name = os.path.splitext(file_name)[0] + format
                        new_file_path = result + new_file_name
                        rgb_img.save(new_file_path, format="PNG")
                
                上一篇:Python2比较当前图片跟图库哪个图片相似的方法示例 下一篇:PyQt5 pyqt多线程操作入门

                相关文章

                • <bdo id='EJ1st'></bdo><ul id='EJ1st'></ul>

                  <small id='EJ1st'></small><noframes id='EJ1st'>

                  <tfoot id='EJ1st'></tfoot>
                  <i id='EJ1st'><tr id='EJ1st'><dt id='EJ1st'><q id='EJ1st'><span id='EJ1st'><b id='EJ1st'><form id='EJ1st'><ins id='EJ1st'></ins><ul id='EJ1st'></ul><sub id='EJ1st'></sub></form><legend id='EJ1st'></legend><bdo id='EJ1st'><pre id='EJ1st'><center id='EJ1st'></center></pre></bdo></b><th id='EJ1st'></th></span></q></dt></tr></i><div id='EJ1st'><tfoot id='EJ1st'></tfoot><dl id='EJ1st'><fieldset id='EJ1st'></fieldset></dl></div>

                  1. <legend id='EJ1st'><style id='EJ1st'><dir id='EJ1st'><q id='EJ1st'></q></dir></style></legend>