All pastes #747988 Raw Edit

L0cky

public text v1 · immutable
#747988 ·published 2007-10-24 14:27 UTC
rendered paste body
/*
Check which dimension has the smallest distance, making it 
suitable for a straight resize.  The other dimension can then 
be padded to restore the ratio.
*/
if(($src_width - $dest_width) >= ($src_height - $dest_height))
{
	$dest_height = ($dest_width/$src_width) * $src_height;
}
else
{
	$dest_width = ($dest_height/$src_height) * $src_width;
}