日期:2014-05-18 浏览次数:20546 次
Bitmap pic = Bitmap.FromStream(this.FileUpload1.PostedFile.InputStream); int width = pic.Width; int hight = pic.Height;
------解决方案--------------------
Image pic=Image.FromFile(strFilePath);//strFilePath是该图片的绝对路径
int intWidth=pic.Width;//长度像素值
int intHeight=pic.Height;//高度像素值
------解决方案--------------------
文件的大小必須要先上傳,也就是服務器的資源才能獲取,而如果是客戶端的...好像不行.
------解决方案--------------------
int intFileHeight, intFileWidth;
System.Drawing.Image img = System.Drawing.Image.FromStream(UpLoadFile.PostedFile.InputStream);
intFileHeight = img.Height;
intFileWidth = img.Width;
------解决方案--------------------
public int ticks; public void Page_Load() { ticks=10000;//此处根据实际情况给ticks赋值就行了 }
------解决方案--------------------
图片显示在什么地方? 获取这个控件的长度与宽度就好了
------解决方案--------------------
Image image = Image.FromStream(upFile.PostedFile.InputStream); //upFile 为上传控件 image.Width=?
image.Height=?