画像をリザイズするシステムを作っているのですがたぶんあっていると思うのですがPermissionエラーが出てしまいます
調べてみてmacを使っていて権限がないのかなと思い、読み書きの権限の設定をしてもうごきませんでした
php
1$file = 'images/tpo.png'; 2 3list($width, $hight) = getimagesize($file); 4$img_in = imagecreatefrompng($file); 5$img_out = imagecreatetruecolor(100, 200); 6 7 8imagecopyresampled($img_out, $img_in, 0, 0, 0, 0, 100, 200, $width, $hight); 9 10 11imagepng($img_out , 'new.png');
エラー文
Warning: imagepng(new.png): failed to open stream: Permission denied in /opt/lampp/htdocs/imgcopi/index.php on line 32