how can I increase the image quality/resolution when saving a project with Meta Data choosing up to 32 image counts. The PNG Images are very low quality.
Second question:If the above problem cannot be resolved, how can I do proper screnshot images when manually turning the Avatar, I mean turning the avatar without moving up and down.
Many thanks
Christine
Hi Christine,
I'm definitely not an expert in Marvelous Designer (just learning right now).
I couldn't find a way to do this in the ui (there may be one), but if you are comfortable with python, then you can change the image size of snapshots using the python api.
Go to Script->Python in the UI. A python terminal window will pop up.
To set the width and height of the image that you want your screen capture to be type the following command in the shell and hit enter;-
mdsa.set_capture_screen_width_and_height(widthInPixels, heightInPixels)
e.g. mdsa.set_capture_screen_width_and_height(200, 100)
Then to actually do the screen capture you can do;-
mdsa.capture_screen("your\filepath\yourFile.png")
=============================
Hope this helps you.
Ang
请先登录再写评论。