Guest User

Untitled

a guest
Jan 23rd, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. $attachmentId = media_handle_upload('image', 0);
  2.  
  3. $img= get_attached_file($attachmentId);
  4.  
  5. function crop($filePath, $cropWidth, $cropHeight, $cropX, $cropY){
  6.  
  7. // returns imageCreateFromJpeg($filepath),
  8. $image = $this->createImageFromAnyType($filepath);
  9.  
  10. $cropped = imagecrop($image, ['x' => $cropX,
  11. 'y' => $cropY, 'width' => $cropWidth, 'height' => $cropHeight]);
  12.  
  13. return $cropped ? imagejpeg($cropped) : false;
  14. }
Add Comment
Please, Sign In to add comment