0066723c by TaishiTokudome

リサイズ処理の修正

1 parent cd407d9c
...@@ -1253,9 +1253,10 @@ class WFFileBrowser extends JObject ...@@ -1253,9 +1253,10 @@ class WFFileBrowser extends JObject
1253 // 画像情報から画像の幅を取得 1253 // 画像情報から画像の幅を取得
1254 $width = (int) $image_info[0]; 1254 $width = (int) $image_info[0];
1255 // リサイズ後の幅を定義 1255 // リサイズ後の幅を定義
1256 $new_width = 1000; 1256 $new_width = 1600;
1257 1257
1258 // 登録する画像の幅がリサイズ後の幅(1000px)より大きいことを確認(1000px以上でリサイズ処理) 1258 // 登録する画像の幅がリサイズ後の幅(1600px)より大きいことを確認(1600px以上でリサイズ処理)
1259 // 記事詳細ページでの画像表示と、サムネイル画像としての画像表示両方に対応できるように1600でリサイズ
1259 if ($width > $new_width) { 1260 if ($width > $new_width) {
1260 // 画像情報から画像の高さを取得 1261 // 画像情報から画像の高さを取得
1261 $height = (int) $image_info[1]; 1262 $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!