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 的難多了,工作量更大。




相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.