0

我有一个.aspx带有FileUpload控件的页面。我想实现将图片上传到网站。但在此之前,我需要使用以下条件检查图像高度和宽度:

  • 如果图像高度 > 768 或宽度 > 1024,则显示弹出消息继续...。(是/否)

  • 如果图像高度 <768 或宽度 <1024 则显示弹出消息继续...。(是/否)

    所以,到目前为止我已经完成了图像上传代码,但是如何实现呢?任何帮助/建议将不胜感激。

           <asp:RegularExpressionValidator ID="revUploaderMainPopup" runat="server" ControlToValidate="UploaderMainPopup"
                            ErrorMessage="*" ValidationGroup="MainPopUploadvlg" ToolTip="Only .jpg, .bmp, .png are valid."
                            ForeColor="Red" Display="Dynamic"  ValidationExpression="(.*\.([Jj][Pp][Gg])|.*\.([Bb][Mm][Pp])|.*\.([pP][nN][gG])$)">
           </asp:RegularExpressionValidator> 
    
4

3 回答 3

0

我是通过以下方式完成的:我采用了两个变量(图像和字符串)一个带有弹出窗口的 div,有拖曳按钮。验证图像后,我display:block从服务器设置为 div。
在单击 ye 按钮时,我正在保存它。

 <div id="dvPopup" class="popup" runat="server" style="display: none">
    <asp:Panel ID="pnlpopup" runat="server" Style="display: block; position: absolute; width:400px;
        margin: auto" CssClass="modalConfirmation">
        <div style="width: 400px; height: 30px;" class="MessageHeaderError">
            <div class="modalHeader">
                Confirmation
            </div>
        </div>
        <br />
        <div style="color: Black">
            <span runat="server" id="spnMessge" style="font-weight:bold">Picture is smaller than 1024 x 768 and will be stretched.</span>
        </div>
        <div class="small">
        </div>
        <div>
            <div style="display: table-cell; height: 40px; padding-left: 80px; vertical-align: middle;
                width: 80px;">
                <asp:ImageButton ID="btnYes" ImageUrl="~/images/correct.png" runat="server" AlternateText="YES"
                    ToolTip="Yes" OnClick="btnYes_Click" />
            </div>
            <div style="display: table-cell; height: 40px; vertical-align: middle;">
                <asp:ImageButton ID="btnNo" ImageUrl="~/images/delete.png" runat="server" AlternateText="NO"
                    ToolTip="No" Style="margin-left: 100px;" OnClick="btnNo_Click" />
            </div>

.cs文件中:

 private bool ValidateImageSize(System.Drawing.Image imgPopup, string strSource)
    {
        //Messure height & width and show popup;
        if ((strSource == "MainPopup") && (imgPopup.Height > 768 || imgPopup.Width > 1024))
        {
            return true;
        }
        else if (strSource == "SmallPopup" && imgPopup.Height > 300 || imgPopup.Width > 400)
        {
            return true;
        }
        return false;
    }
于 2013-01-31T05:45:43.467 回答
0

尝试关注

        using (System.Drawing.Image image = System.Drawing.Bitmap.FromStream(fs))
        {
            int iWidth = (int)Math.Round((decimal)image.Width);
            int iHeight = (int)Math.Round((decimal)image.Height);
           if(iWidth > 1024 || iHeight > 768)
           {
                // here you can throw your message
           }
        }

问候,

于 2013-01-23T11:54:40.293 回答
0

如果不使用自定义验证器,您将无法做到这一点。它肯定必须是服务器端。客户端代码将需要 Javascript 来显示“是或否”对话框(这可以通过javascript: confirm('yes?');对话框来完成。

此外,如果您想让 UI 看起来好像从未发生过上传,并且您在客户端完全验证它(因为部分回发),则需要一些 ajax。

请参阅获取图像的尺寸,而无需读取整个文件,这样您就可以将 ajax 请求推迟几毫秒。

祝你好运!

于 2013-01-23T11:46:30.173 回答