0

最近、私は、ソースが別のページにリンクされている img タグを持っている Web ページを作成しました。ここで、画像のサイズを変更しています。その名前は、クエリ文字列の前のページの src から送信されています。しかし、ビットマップの新しいオブジェクトを作成すると、エラーが発生します。パラメーターが無効です。

以下はイメージタグを保持するコードです。

 <img src='/resize.aspx?file=PRO_06_11_Final-272.jpg&width=128&height=73' alt="Nothing" />

以下は、画像のサイズを変更し、応答を介してビットマップオブジェクトを送信するサイズ変更ページのコードです

if (Request.QueryString["file"] != null)
        {

            int lnHeight = Convert.ToInt32(Request.QueryString["height"]);
            int lnWidth = Convert.ToInt32(Request.QueryString["width"]);
            string imgUrl = Request.QueryString["file"].ToString();
            Bitmap bmpOut = null;
            try
            {
                Bitmap loBMP;
                loBMP = new Bitmap(Server.MapPath(imgUrl)); //Parameter is not valid.. error is thrown here.
                System.Drawing.Imaging.ImageFormat loFormat = loBMP.RawFormat;
                decimal lnRatio;
                int lnNewWidth = 0;
                int lnNewHeight = 0;
                //-----If the image is smaller than a thumbnail just return it As it is----- 
                if ((loBMP.Width < lnWidth && loBMP.Height < lnHeight))
                {
                    lnNewWidth = loBMP.Width;
                    lnNewHeight = loBMP.Height;
                }
                if ((loBMP.Width > loBMP.Height))
                {
                    lnRatio = (decimal)lnHeight / loBMP.Height;
                    lnNewHeight = lnHeight;
                    decimal lnTemp = loBMP.Width * lnRatio;
                    lnNewWidth = (int)lnTemp;
                    if (lnNewWidth > 128)
                    {
                        lnNewWidth = 128;
                    }
                 }
                else
                {
                    lnRatio = (decimal)lnHeight / loBMP.Height;
                    lnNewHeight = lnHeight;
                    decimal lnTemp = loBMP.Width * lnRatio;
                    lnNewWidth = (int)lnTemp;
                    if (lnNewWidth < 75)
                    {
                        lnNewWidth = 75;
                    }
                }
                bmpOut = new Bitmap(lnNewWidth, lnNewHeight);
                Graphics g = Graphics.FromImage(bmpOut);
                g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic;
                g.DrawImage(loBMP, 0, 0, lnNewWidth, lnNewHeight);
                Response.ContentType = "image/jpeg";
                bmpOut.Save(Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg);
            }
            catch (Exception ex)
            {
                HttpContext.Current.Response.Write("CreateThumbnail :" + ex.ToString());
            }
            finally
            {
            }
        }

上記のコードは、FileSystem のローカル マシンでは正常に動作しますが、同じコードを開発サーバーに配置すると、アプリケーションがメッセージをスローし始めます。

開発サーバーでのみこの問題の原因を教えてください。

4

1 に答える 1

1

ルート フォルダーを指定しない場合Server.MapPathは、現在実行中の aspx ファイルの場所が追加されます。msdnで詳細を読むことができます

If Path doesn't start with a slash, the MapPath method returns a path relative to the directory of the .asp file being processed

Hanlet が述べたように、イメージのルート フォルダーを追加する必要があります。したがって、コードは次のようになります

string imgRoot = "~/images/";
try
{
    ...

    loBMP = new Bitmap(Server.MapPath(imgRoot + imgUrl));
    ...
}
于 2011-10-03T14:49:02.317 に答える