Page 1 of 1

[RPG]Saving image performance

Posted: Mon Dec 26, 2016 12:57 pm
by MegumiSawada
Hi,

The customer used to use i-Pad Air2 but recently they switch to iPad Pro.
The resolution is much higher on iPad pro, so the response of saving image got incredibly worse.
It takes 3 to 5 minutes to save a couple of photos.

They tried to use "NewImage.Resize : 10%" but the saved image is too small(not acceptable) even though the response is fine.
What I can think of to work around this issue is to use NewImage.Resize.Width/height and find the acceptable size/performance.

Is there any other way to solve this issue?
I appreciate your kind advice.

Best Regards,
Megumi Sawada

Re: [RPG]Saving image performance

Posted: Mon Jan 02, 2017 9:44 am
by tsupartono
Yes that's the correct way.
You should always specify the desired image dimension, especially when you different types of client devices (so that you have consistent size across all pictures taken).

It's best to specify the landscape (or portrait) width/height using the PT or LD property, so the width/height will be adjusted depending upon the picture's orientation.
For example, if your desired size is 600x400 for landscape pictures (and 400x600 for portrait), you should specify the following:

ImageSize.Width.LD: 600
ImageSize.Height.LD: 400