ASP.NET開發經驗(2) --- ASP.NET中的一些圖形處理
來源:互聯網
上載者:User
asp.net|圖形 如果大家用過 SharePoint Portal Server 2001,一定會記得增加型檔案夾中的一些很不錯的特性,如文檔檢出/檢入、發布、審批次程序等,其中最吸引我的就是它通過在文檔的表徵圖上加一個特別的標記,來表示文檔的狀態,如下圖所示:
自己在做文件管理系統時,也借鑒了這種做法,其實和給圖片加浮水印的作法類似,主要代碼如下:
//取源映像
Image imgPhoto = Image.FromFile(sSourceFile);
Bitmap bmPhoto = new Bitmap(imgPhoto.Width, imgPhoto.Height, PixelFormat.Format24bppRgb);
bmPhoto.MakeTransparent();
//設定繪圖面屬性,呈現品質等
Graphics grPhoto = Graphics.FromImage(bmPhoto);
grPhoto.SmoothingMode = SmoothingMode.AntiAlias;
grPhoto.DrawImage( imgPhoto, new Rectangle(0, 0, imgPhoto.Width, imgPhoto.Height), 0, 0, imgPhoto.Width, mgPhoto.Height, GraphicsUnit.Pixel);
//開啟要附加的浮水印圖片
Image imgWatermark = new Bitmap(sWatermarkFile);
Bitmap bmWatermark = new Bitmap(bmPhoto);
bmWatermark.SetResolution(imgPhoto.HorizontalResolution, imgPhoto.VerticalResolution);
Graphics grWatermark = Graphics.FromImage(bmWatermark);
int xPosOfWm = imgPhoto.Width - imgWatermark.Width;
int yPosOfWm = imgPhoto.Height - imgWatermark.Height;
//畫
grWatermark.DrawImage(imgWatermark,
new Rectangle(xPosOfWm,yPosOfWm,imgWatermark.Width,imgWatermark.Height),
0,
0,
imgWatermark.Width,
imgWatermark.Height,
GraphicsUnit.Pixel);
//儲存最終圖片
imgPhoto = bmWatermark;
imgPhoto.Save(sIconFileName,ImageFormat.Png);
如果文檔有審閱流程,那文檔的流轉圖就非常受歡迎了,這樣使用者可以方便地查看文檔正處於那個階段。
其實與工作流程有關軟體可能都有這樣要求,我目前沒有找到更好的辦法,利用 <table> ,將各個階段
用線條和圖形表示出來,辦法雖有點笨,但好象顯示效果還不錯。
曾經試過 VML ,發現要動態地畫這種圖,就得很精確地控制螢幕上位置,比較麻煩,後來放棄了這種作法。
還曾經想用 Visio Automation 來試一下,發現 Visio 的物件模型和 VBA 比 Word 和 Excel 的難多了,工作量更大。