Resizing the image in php for viewing purposes only

后端 未结 15 1716
面向向阳花
面向向阳花 2020-12-14 13:09

Okay, the reason I posted this is because I wasn\'t sure what to search for. I\'ll try to explain it as clearly as I can.

Say, I have an image sized 800x600. The box

15条回答
  •  天命终不由人
    2020-12-14 13:42

    Look into WideImage, an open-source PHP library for image manipulation. Could get a simple as

    WideImage::load('pic.jpg')->resize(150, 150, 'outside')->output('jpg');
    

    http://wideimage.sourceforge.net/

提交回复
热议问题