编写一个程序,可以在命令行输入参数,完成指定文件的缩放,并存储到新文件,命令行参数如下 zoom file1.bmp 200 file2.bmp 第一个参数为可执行程序名称,第二个参数为原始图像文件名,第三个参数为缩放比例(百分比),第四个参数为新文件名
时间: 2024-02-12 10:05:26 浏览: 118
S7-200SMART-整数to整数(Word to Word)-比例缩放指令库文件.zip
以下是一个简单的Python程序,可以实现您所描述的功能:
```python
import sys
from PIL import Image
if len(sys.argv) != 4:
print("Usage: zoom source_file scale_percent target_file")
sys.exit()
source_file = sys.argv[1]
scale_percent = int(sys.argv[2])
target_file = sys.argv[3]
try:
with Image.open(source_file) as im:
width, height = im.size
new_width = int(width * scale_percent / 100)
new_height = int(height * scale_percent / 100)
new_im = im.resize((new_width, new_height))
new_im.save(target_file)
except FileNotFoundError:
print(f"{source_file} not found")
```
您可以将以上代码保存为zoom.py,并在命令行中输入以下命令来运行程序:
```
python zoom.py file1.bmp 200 file2.bmp
```
其中,file1.bmp 是原始图像文件名,200 表示缩放比例为200%(即放大两倍),file2.bmp 是新文件名。程序会自动读取原始图像,按照指定比例缩放,并将结果保存为新文件。如果原始图像文件不存在,则会输出错误提示信息。
阅读全文