如何在不保存的情况下在 python dm-scriptImageDocument
中设置不再脏?
我在下面发布了 python 代码,可以用下面的dm-script
代码表示。
String file_path = GetApplicationDirectory(0, 1).PathConcatenate("test-image.dm4");
Image img := realimage("test", 4, 64, 64);
ImageDocument doc = img.ImageGetOrCreateImageDocument();
doc.ImageDocumentSaveToFile("Gatan Format", file_path);
doc.ImageDocumentShowAtRect(100, 100, 164, 164);
(下面的 python 代码)创建并显示一个ImageDocument
. 图像已保存。但即使使用自己的模块直接将其保存在DigitalMicrograph中,它也无法识别它已保存。我可以手动链接文件(通过dm-script
从 python 执行代码),但我不能告诉程序图像没有被修改。
有一个功能ImageDocumentIsDirty()
。但是这个函数只返回图像是否被修改。我无法设置它。
我的程序创建了一个新的工作区并加载了 100 多个图像。关闭DigitalMicrograph时,它会询问 100 张图像中的每一张是否应该保存。我不能让用户点击 100 次No。特别是因为文件已保存。
那么,我如何告诉dm-script图像已经保存?
try:
import DigitalMicrograph as DM
import numpy as np
import execdmscript
import os
name = "Test image"
file_path = os.path.join(os.getcwd(), "test-image.dm4")
# create image
image_data = np.random.random((64, 64))
image = DM.CreateImage(image_data)
image.SetName(name)
# create, save and show image document
image_doc = image.GetOrCreateImageDocument()
image_doc.SetName(name)
image_doc.SaveToFile("Gatan Format", file_path)
print("Saving image to", file_path)
image_doc.ShowAtRect(100, 100, 164, 164)
# link the image to the file
dmscript = "\n".join((
"for(number i = CountImageDocuments() - 1; i >= 0; i--){",
"ImageDocument img_doc = GetImageDocument(i);",
"if(img_doc.ImageDocumentGetName() == name){",
"img_doc.ImageDocumentSetCurrentFile(path);",
"break;",
"}",
"}"
))
svars = {
"name": image_doc.GetName(),
"path": file_path
}
with execdmscript.exec_dmscript(dmscript, setvars=svars):
pass
except Exception as e:
print("{}: ".format(e.__class__.__name__), e)
import traceback
traceback.print_exc()