9951 explained code solutions for 126 technologies


php-gdHow to set image size


$im = imagecreatetruecolor(400, 300);ctrl + c
imagecreatetruecolor

creates true color GD image object with specified width & height

400

image width

300

image height