문제

I know Export["image.png", image, ImageResolution -> 300].

But it there a way to set the default value for ImageResolution?

도움이 되었습니까?

해결책

Export does not seem to work with SetOptions so I'm afraid its not possible.

You can make your own like this:

 export[args__] := Export[args, ImageResolution -> 300];

then do

 export["image.png", image];
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top