Best PHP Image Crop Class

前端 未结 9 1079
盖世英雄少女心
盖世英雄少女心 2021-01-30 14:30

I\'m designing a website and I need to:

  • Upload the image
  • Validate that it\'s an image (and not, oh I don\'t know.... a virus :) )
  • Resize the Imag
9条回答
  •  鱼传尺愫
    2021-01-30 15:30

    I recommend SimpleImage, it is very simple, has only one file and is updated.

    Example of use:

    $img = new SimpleImage('image.jpg');
    
    // Resize the image to 320x200
    $img->resize(320, 200);
    
    $img->save('new-image.jpg');
    

提交回复
热议问题