标签: graph wolfram-mathematica
我知道Export["image.png", image, ImageResolution -> 300]。
Export["image.png", image, ImageResolution -> 300]
但有没有办法设置ImageResolution的默认值?
ImageResolution
答案 0 :(得分:0)
Export似乎无法与SetOptions一起使用,所以我担心它不可能。
Export
SetOptions
你可以这样做:
export[args__] := Export[args, ImageResolution -> 300];
然后做
export["image.png", image];