亚洲精品中文字幕无乱码_久久亚洲精品无码AV大片_最新国产免费Av网址_国产精品3级片

系統(tǒng)架構(gòu)師

系統(tǒng)架構(gòu)設(shè)計(jì)師輔導(dǎo):處理圖像

時(shí)間:2024-11-04 05:13:48 系統(tǒng)架構(gòu)師 我要投稿
  • 相關(guān)推薦

系統(tǒng)架構(gòu)設(shè)計(jì)師輔導(dǎo):處理圖像

  如果您的應(yīng)用程序顯示大量圖像文件(例如,.jpg 和 .gif 文件),則您可以通過以位圖格式預(yù)先呈現(xiàn)圖像來顯著改善顯示性能。要使用該技術(shù),請(qǐng)首先從文件中加載圖像,然后使用 PARGB 格式將其呈現(xiàn)為位圖。下面的代碼示例從磁盤中加載文件,然后使用該類將圖像呈現(xiàn)為預(yù)乘的、Alpha 混合 RGB 格式。例如:

系統(tǒng)架構(gòu)設(shè)計(jì)師輔導(dǎo):處理圖像

  [C#]

  if ( image != null && image is Bitmap )

  {

  Bitmap bm = (Bitmap)image;

  Bitmap newImage = new Bitmap( bm.Width, bm.Height,

  System.Drawing.Imaging.PixelFormat.Format32bppPArgb );

  using ( Graphics g = Graphics.FromImage( newImage ) )

  {

  g.DrawImage( bm, new Rectangle( 0,0, bm.Width, bm.Height ) );

  }

  image = newImage;

  }

  [Visual Basic .NET]

  If Not(image Is Nothing) AndAlso (TypeOf image Is Bitmap) Then

  Dim bm As Bitmap = CType(image, Bitmap)

  Dim newImage As New Bitmap(bm.Width, bm.Height, _

  System.Drawing.Imaging.PixelFormat.Format32bppPArgb)

  Using g As Graphics = Graphics.FromImage(newImage)

  g.DrawImage(bm, New Rectangle(0, 0, bm.Width, bm.Height))

  End Using

  image = newImage

  End If

【系統(tǒng)架構(gòu)設(shè)計(jì)師輔導(dǎo):處理圖像】相關(guān)文章:

PS圖像處理的技巧09-26

Web系統(tǒng)架構(gòu)的性能優(yōu)化08-17

SAP系統(tǒng)架構(gòu)是什么09-04

linux系統(tǒng)集群的架構(gòu)與實(shí)現(xiàn)06-29

ps圖像處理的圖層技巧08-22

旅游管理系統(tǒng)功能架構(gòu)的設(shè)計(jì)08-02

高校數(shù)字廣播系統(tǒng)架構(gòu)與應(yīng)用09-14

企業(yè)應(yīng)用系統(tǒng)架構(gòu)優(yōu)化方法10-25

高可用的SAP系統(tǒng)架構(gòu)的實(shí)現(xiàn)07-26

企業(yè)考勤系統(tǒng)架構(gòu)建設(shè)08-20