ساهم في دعم PBBoard
إذا وجدت أن PBBoard مفيد وتحب أن يستمر في العطاء فيمكنك المساهمة في ذلك. شكراً لك
إستخدم رابط الباي بال في الأسفل
// Visitor Today number<br />
function image_quality_reduce($file) { global $PowerBB; $quality = 30; $file_extension = explode('.', $file); $ext = strtolower($file_extension[count($file_extension) - 1]); if(in_array($ext, array('jpg', 'jpeg', 'png', 'gif'))) { $image = imagecreatefromstring(file_get_contents($file)); $ext == 'jpg' || $ext == 'jpeg' ? imagejpeg($image, $file, $quality) : null; $ext == 'png' ? imagepng($image, $file, $quality) : null; $ext == 'gif' ? imagegif($image, $file, $quality) : null; return $ext; } else { return false; } }
move_uploaded_file($PowerBB->_FILES['files']['tmp_name'][$x] , $PowerBB->_CONF['info_row']['download_path'] . '/' . $Random);
$PowerBB->functions->image_quality_reduce($PowerBB->_CONF['info_row']['download_path']. '/' .$Random);
$copy = move_uploaded_file($PowerBB->_FILES['upload']['tmp_name'],$PowerBB->_CONF['info_row']['download_path'] . '/avatar/' . $filename);
$PowerBB->functions->image_quality_reduce($PowerBB->_CONF['info_row']['download_path']. '/avatar/' .$filename);