Category > dynamic fixing

Resize Image on web page using PHP OR Jquery

Image tag Resizing :
In a WYSIWYG editor, User can upload picture with any width.
as developer it our duty to resize the image show at fix width like (600px) or less.
here is regular expression to do so:
Regular Expression :
PHP code

// this will take all the width which is longer than 1000px and above
$replacement = array [...]

Continue reading