php Programming Glossary: originalheight
Calculating image size ratio for resizing http://stackoverflow.com/questions/6594089/calculating-image-size-ratio-for-resizing resizing code. First data you need list originalWidth originalHeight getimagesize imageFile ratio originalWidth originalHeight Then.. originalHeight getimagesize imageFile ratio originalWidth originalHeight Then this algorithm fits the image into the target size as best.. targetWidth targetHeight min size max originalWidth originalHeight if ratio 1 targetWidth targetHeight ratio else targetHeight..
|