screen
screen copied to clipboard
Not saving image file
Hi, I'm not sure what I am doing incorrectly. When I try running the code below and saving the image, nothing shows up in the temp folder. Is there something I am missing? I am using Laravel if that helps. Thank you.
use Screen\Capture;
$screen = new Capture($link);
$filename = md5($link);
$temp_dir = '/public/storage/temp/' . $filename;
$screen->save($temp_dir);
Try to give read and write (755 or 777) permissions to /public/storage/temp/ Dir