-3

I want to crop 30px from an image only from the bottom of it. I did some search and find some stuff, but when I tried it and save the image, the image got saved all black and I am not sure even if the image got cropped. I don't want to go back to the code that I have right now. So what is the fastest and easiest way to crop an image ?

user1481850
  • 238
  • 3
  • 13
  • 24

1 Answers1

0

you can use the image crop function of the image library in codeigniter $this->image_lib->crop() but before using image functions make sure that you load the image library first $this->load->library('image_lib');

you can find this in docs here

Sahil Jariwala
  • 243
  • 2
  • 5
  • 19