-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtopic-264.html
88 lines (75 loc) · 6.38 KB
/
topic-264.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja" dir="ltr">
<head>
<title>日本PHPユーザ会 掲示板: PHP事はじめ » PHP画像サイズの変更について</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="description" content="日本PHPユーザ会運営の掲示板です。※ただいまテスト運用中です。" />
<meta name="keywords" content="php,web,php.gr.jp,community,usebb" />
<link rel="stylesheet" type="text/css" href="./templates/phpgrjp0.3/styles.css" />
<link rel="shortcut icon" href="./templates/phpgrjp0.3/gfx/usebb.ico" />
<link rel="alternate" type="application/rss+xml" title="日本PHPユーザ会 掲示板 RSS フィード" href="rss.xml" />
<script type="text/javascript" src="sources/javascript.js"></script>
</head>
<body onload="javascript:init_external()">
<div id="pagebox-bg">
<div id="shadow-left">
<div id="shadow-right">
<p id="logo"><a href="index.html"><img src="./templates/phpgrjp0.3/gfx/usebb.png" alt="UseBB" title="ホーム" /></a></p>
<h1 id="boardname"><span id="line">日本PHPユーザ会 掲示板</span></h1>
<h2 id="boarddescr">日本PHPユーザ会運営の掲示板です。※ただいまテスト運用中です。</h2>
<div id="topmenu"><ul>
<li><a href="index.html">ホーム</a></li><li><a href="faq.html">FAQ</a></li><li><a href="active.html">活発なトピック</a></li>
</ul></div>
<div id="topmenu-shadow"></div>
<p class="locationbar">
• <a href="index.html">日本PHPユーザ会 掲示板</a> » <a href="forum-2.html">PHP事はじめ</a> » PHP画像サイズの変更について
</p>
<h3 id="forumname"><a href="topic-264.html">PHP画像サイズの変更について</a></h3>
<p id="forummods"></p>
<p id="toolbartop"> </p>
<p id="pagelinkstop">ページ: 1</p>
<table class="maintable">
<tr>
<th>投稿者</th>
<th>投稿</th>
</tr>
<tr class="tr1">
<td class="postername">
<div class="posternamecontainer"><a href="profile-384.html">loothappy46</a></div>
</td>
<td class="postinfo">
<div class="postlinks"></div>
<div class="postdate"><a href="topic-post749.html#post749" name="post749" rel="nofollow">#1</a> 2011 年 3 月 18 日(金) 23:24</div>
</td>
</tr>
<tr class="tr1">
<td class="posterinfo">
会員
<div class="avatar"></div>
<div class="field">登録者: 3 2011</div>
<div class="field">返信数: 2</div>
<div class="field"></div>
</td>
<td class="postcontent">
<div class="post">下記プログラムに間違いがあるのでしょうか。「Access forbidden」のエラーメッセージが出てしまいます。どこをどう直せばうまく作動しますでしょうか。 お忙しいところ恐れ入りますが、みなさまお願い致します。<br /><br /><?php<br /><br />if (isset($_POST['btnExec'])) {<br />//変更ボタンがクリックされたとき<br /><br />//元となる画像ファイルを設定<br />$imgfile = "images/photo01.jpg";<br /><br />//元の画像のサイズを取得<br />$imgary = getimagesize($imgfile);<br />$srcwidth = $imgary[0];<br />$srcheight = $imgary[1];<br /><br />//元の画像のキャンバスを生成<br />$srcimgfile = imagecreatefromjpeg($imgfile);<br /><br />//リサイズ後のキャンバスを生成<br />switch ($_POST['newsize']) {<br />case 1:<br />$newwidth = 640;<br />$newheight = 480;<br />break;<br />case 2:<br />$newwidth = 400;<br />$newheight = 300;<br />break;<br />case 3:<br />$newwidth = 240;<br />$newheight = 180;<br />break;<br />case 4:<br />$newwidth = 160;<br />$newheight = 120;<br />break;<br />case 5:<br />$newwidth = 100;<br />$newheight = 75;<br />break;<br />}<br />$newimgfile = imagecreatetruecolor($newwidth, $newheight);<br /><br />//元の画像をリサイズ後のキャンバスにサイズを変えてコピー<br />imagecopyresampled($newimgfile, $srcimgfile,<br />0, 0, 0, 0,<br />$newwidth, $newheight,<br />$srcwidth, $srcheight);<br /><br />//画像を出力<br />header("Content-type: image/jpeg");<br />imagejpeg($newimgfile);<br /><br />//リソースを解放<br />imagedestroy($srcimgfile);<br />imagedestroy($newimgfile);<br /><br />exit();<br />}<br />?><br /><br /><!DOCTYPE ...省略><br /><BODY><br /><FORM action="<?=$_SERVER[PHP_SELF]?>" method="POST"><br />変更後のサイズ<BR><br /><SELECT size="5" name="newsize"><br /><OPTION value="1" selected>640×480</OPTION><br /><OPTION value="2">400×300</OPTION><br /><OPTION value="3">240×180</OPTION><br /><OPTION value="4">160×120</OPTION><br /><OPTION value="5">100×75</OPTION><br /></SELECT><br /><INPUT type="submit" name="btnExec" value="変更"><br /></FORM><br /></BODY><br /></HTML><br /><br /><br />なのですが、下記のようなエラーメッセージが出ます。なぜでしょうか?<br />簡単なスクリプトも添えてお手数ですがご回答いただけますでしょうか。<br />よろしくお願い致します! <br /><br />Access forbidden<br />Error 403<br /><br />ご回答いただければ幸いです。<div class="editinfo">« 最終編集者 <a href="profile-384.html">loothappy46</a> 日時 2011 年 3 月 18 日(金) 23:26. »</div></div>
</td>
</tr>
</table>
<p id="toolbarbottom"> </p>
<p id="pagelinksbottom">ページ: 1</p>
<div id="bottomfix"></div>
<p id="actionlinks"></p>
<p class="locationbar">
• <a href="index.html">日本PHPユーザ会 掲示板</a> » <a href="forum-2.html">PHP事はじめ</a> » PHP画像サイズの変更について
</p>
<p id="linkbar">
</p>
<p id="bottom">
日本PHPユーザ会 掲示板 は <a href="http://www.usebb.net">UseBB 1 フォーラムソフトウェア</a> を使用しています
</p>
<div id="bottom-shadow"></div>
</div>
</div>
</div>
</body>
</html>