Is it better to resize one time or it's ok to do it several time ?
Posted: 2018-02-27T09:53:20-07:00
I need to create several variation of a picture in several resolutions like :
original size = 2048x2048
1280x1280
800x800
640x640
480x480
360x360
240x240
150x150
100x100
Actually i always resize each variation from the original size like this :
2048x2048 => 1280x1280
2048x2048 => 800x800
2048x2048 => 640x640
2048x2048 => 480x480
2048x2048 => 360x360
2048x2048 => 240x240
2048x2048 => 150x150
2048x2048 => 100x100
but it's a little longer and maybe i can do something like this :
2048x2048 => 1280x1280
1280x1280 => 800x800
800x800=> 640x640
640x640 => 480x480
480x480=> 360x360
360x360=> 240x240
240x240=> 150x150
150x150=> 100x100
But does the quality of the image will be the same ? or doing resizing on the top of resizing will degrade the quality of the final result ?
original size = 2048x2048
1280x1280
800x800
640x640
480x480
360x360
240x240
150x150
100x100
Actually i always resize each variation from the original size like this :
2048x2048 => 1280x1280
2048x2048 => 800x800
2048x2048 => 640x640
2048x2048 => 480x480
2048x2048 => 360x360
2048x2048 => 240x240
2048x2048 => 150x150
2048x2048 => 100x100
but it's a little longer and maybe i can do something like this :
2048x2048 => 1280x1280
1280x1280 => 800x800
800x800=> 640x640
640x640 => 480x480
480x480=> 360x360
360x360=> 240x240
240x240=> 150x150
150x150=> 100x100
But does the quality of the image will be the same ? or doing resizing on the top of resizing will degrade the quality of the final result ?