self.imageView.removeFromSuperView()
self.tableView.tableHeaderView = self.imageView
我使用上面的代码打开并旋转用户输入图像。
但每次我必须手动更改" outputfile.jpg"的名称。保存图像时。
请指导保存修改后的图像:例如。
如果我的原始文件路径是E:\ Picture \ Nature.jpg
然后它应该将修改后的文件保存在保存位置,名称为E:\ Picture \ Nature_modified.jpg
答案 0 :(得分:0)
也许是这样的?
output_filename = in_put[0:len(in_put)-4] + "_modified.jpg"
pic_im.save(output_filename)