php Programming Glossary: targetheight
Resize image without distortion keeping aspect ratio then crop excess using WideImage http://stackoverflow.com/questions/6355954/resize-image-without-distortion-keeping-aspect-ratio-then-crop-excess-using-wide version sourceWidth 1000 sourceHeight 250 targetWidth 200 targetHeight 150 sourceRatio sourceWidth sourceHeight targetRatio targetWidth.. sourceWidth sourceHeight targetRatio targetWidth targetHeight if sourceRatio targetRatio scale sourceWidth targetWidth else.. scale sourceWidth targetWidth else scale sourceHeight targetHeight resizeWidth int sourceWidth scale resizeHeight int sourceHeight..
Calculating image size ratio for resizing http://stackoverflow.com/questions/6594089/calculating-image-size-ratio-for-resizing stretching the image larger than the original targetWidth targetHeight min size max originalWidth originalHeight if ratio 1 targetWidth.. max originalWidth originalHeight if ratio 1 targetWidth targetHeight ratio else targetHeight targetWidth ratio srcWidth originalWidth.. if ratio 1 targetWidth targetHeight ratio else targetHeight targetWidth ratio srcWidth originalWidth srcHeight originalHeight..
|