在Python中,我使用Python中的“makeEmpyPicture”函数创建了一张图片。如何将其另存为外部文件。我有一个字符串,我想称之为。我想做的就是能够保存它,而无需将任何库导入我的代码。
答案 0 :(得分:1)
尝试此功能:
def savePict(pict, name):
filehandle=getMediaPath(name)
writePictureTo(pict,filehandle)
编辑:
我猜你的建议的最后一行应该是:
writePictureTo(pict,file)
而不是
writePictureTo(pict,filename).
否则将不使用变量文件
答案 1 :(得分:0)
我猜Rob的建议是:
然后,函数getMediaPath(filename)将如下所示:
getMediaPath(filename):
temp_dir = os.path.join(os.getcwd(),"../../YourCurrentFolder")
saving_dir = temp_dir + '/' + filename
return saving_dir