// Рассчитываем коэфициент// imgWidth, imgHeight - исходные размерыif imgWidth > imgHeight ratio = maxWidth / imgWidthelse ratio = maxHeight / imgHeight newWidth = ratio * imgWidthnewHeight = ratio * imgHeight