0066723c by TaishiTokudome

リサイズ処理の修正

1 parent cd407d9c
......@@ -1253,9 +1253,10 @@ class WFFileBrowser extends JObject
// 画像情報から画像の幅を取得
$width = (int) $image_info[0];
// リサイズ後の幅を定義
$new_width = 1000;
$new_width = 1600;
// 登録する画像の幅がリサイズ後の幅(1000px)より大きいことを確認(1000px以上でリサイズ処理)
// 登録する画像の幅がリサイズ後の幅(1600px)より大きいことを確認(1600px以上でリサイズ処理)
// 記事詳細ページでの画像表示と、サムネイル画像としての画像表示両方に対応できるように1600でリサイズ
if ($width > $new_width) {
// 画像情報から画像の高さを取得
$height = (int) $image_info[1];
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!