Skip to content

Commit

Permalink
$im_outのチェック処理をロールバック。
Browse files Browse the repository at this point in the history
  • Loading branch information
satopian committed Nov 17, 2023
1 parent ebff38b commit 187c3ea
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions potiboard5/potiboard.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

// POTI-board EVO
// バージョン :
const POTI_VER = 'v6.13.2';
const POTI_VER = 'v6.13.5';
const POTI_LOT = 'lot.20231117';

/*
Expand Down Expand Up @@ -3004,11 +3004,8 @@ function_exists("imagefill") && function_exists("ImageCopyResampled")){
$im_out=$im_in;
}
$dst = $temppath.pathinfo($src, PATHINFO_FILENAME ).'.jpg.tmp';
ImageDestroy($im_in);// 作成したイメージを破棄
if(!$im_out){
return;
}
ImageJPEG($im_out,$dst,98);
ImageDestroy($im_in);// 作成したイメージを破棄
ImageDestroy($im_out);// 作成したイメージを破棄
chmod($dst,PERMISSION_FOR_DEST);
if(is_file($dst)){
Expand Down Expand Up @@ -3089,14 +3086,10 @@ function check_jpeg_exif($dest){
$im_out = ImageCreateTrueColor($out_w, $out_h);
ImageCopyResampled($im_out, $im_in, 0, 0, 0, 0, $out_w, $out_h, $w, $h);
}
// 画像のメモリを解放
imagedestroy($im_in);
if(!$im_out){
return;
}
// 画像を保存
imagejpeg($im_out, $dest,98);
// 画像のメモリを解放
imagedestroy($im_in);
imagedestroy($im_out);

if(!is_file($dest)){
Expand Down

0 comments on commit 187c3ea

Please sign in to comment.