we use the imagescale() function in php 5.5.0. But now i am using the php version 5.3.29 and imagescale() function is not working in this version. so please help me how to solve this problem.
Asked
Active
Viewed 2,956 times
-1
-
possible duplicate of [resize image in PHP](http://stackoverflow.com/questions/14649645/resize-image-in-php) – Lorenz Meyer Jan 07 '15 at 06:33
2 Answers
1
imagescale
function was introduced in PHP5.5
you cant use however there is a very good extention in PHP i.e Imagick
for processing images you must use that
http://php.net/manual/en/book.imagick.php

Kuldeep Dangi
- 4,126
- 5
- 33
- 56
0
There is also the gd package. It is usually bundled with PHP and has the function imagecopyresized()

Lorenz Meyer
- 19,166
- 22
- 75
- 121