python 压缩图片分辨率
时间: 2023-10-28 17:58:56 浏览: 144
Python实现图片压缩.py
你可以使用Pillow库来压缩图片的分辨率。下面是一个示例代码:
```python
from PIL import Image
def compress_image_resolution(image_path, new_width, new_height):
image = Image.open(image_path)
resized_image = image.resize((new_width, new_height), Image.ANTIALIAS)
resized_image.save("compressed_image.jpg")
compress_image_resolution("original_image.jpg", 800, 600)
```
在上面的代码中,你需要将`image_path`参数替换为你想要压缩的图片的路径。`new_width`和`new_height`参数是你想要设置的新的宽度和高度。最后,使用`save()`函数保存压缩后的图片。
请注意,压缩图片会导致画质损失,所以你需要在压缩前选择合适的分辨率和压缩比例。
阅读全文