class.upload.php is a powerful and mature PHP class to manage uploaded files, and manipulate images in many ways. The script is available under a GPL license.
I want to make image 200x200 but to keep original image size and ratio if image width is small than 150px ( and height is small than 150px) and place image in the middle of 200x200 and fill space till 200 (TBLR) with color background.
I can't make it to keep original image size and ratio!
However, starting wit hthe code that you have, you can use image_cropwith negative values in order to add "space" on the sides of the picture if the original picture is less than 200px wide.
So if the picture's width (or height) is less than 200px, you keep it as is, and calculate the space you need to add, and set a negative cropping value. If the image is 200px or wider, then you simply resize it using image_ratio_crop or image_ratio_fill.Reply
Re: Keeping image size and filling background with color till the size i want new!
I can't make it to keep original image size and ratio!
Sry for my English!
Thx
However, starting wit hthe code that you have, you can use image_cropwith negative values in order to add "space" on the sides of the picture if the original picture is less than 200px wide.
So if the picture's width (or height) is less than 200px, you keep it as is, and calculate the space you need to add, and set a negative cropping value. If the image is 200px or wider, then you simply resize it using image_ratio_crop or image_ratio_fill.
Thank you!