中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

C#使用GDI中的API函數(shù)-創(chuàng)新互聯(lián)

      我們知道在.NET 平臺(tái)下主要是用GDI+來進(jìn)行圖形圖像處理,在效率要求不高的情況下使用GDI+已經(jīng)足夠?qū)崿F(xiàn)各種功能了,但一旦要求效率的情況下,我們可以考慮使用GDI來代替GDI+,網(wǎng)上有人士做過相關(guān)測(cè)試(本人也測(cè)試過),GDI在圖形、圖像繪制方面效率較GDI+有很大提高。下面將自己開發(fā)過程中整理到的NativeGdi32Api類貼出來:

攸縣ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場(chǎng)景,ssl證書未來市場(chǎng)廣闊!成為創(chuàng)新互聯(lián)的ssl證書銷售渠道,可以享受市場(chǎng)價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:18982081108(備注:SSL證書合作)期待與您的合作!
  1. public static class NativeGdi32Api  
  2. {  
  3. [ DllImport("gdi32.dll" )]  
  4. public static extern int SetDIBits (IntPtr hdc, IntPtr hBitmap, int nStartScan , int nNumScans, IntPtr lpBits, IntPtr lpBI , int wUsage);  
  5.  
  6.  
  7. [ DllImport("gdi32.dll" )]  
  8. public static extern int SetDIBitsToDevice (IntPtr hdc, int x, int y , int dx, int dy, int SrcX, int SrcY, int Scan , int NumScans, IntPtr Bits, IntPtr BitsInfo , int wUsage);  
  9.  
  10.  
  11. [ DllImport("gdi32.dll" )]  
  12. public static extern IntPtr CreateDIBSection (IntPtr hdc, IntPtr pBitmapInfo, int un , IntPtr lplpVoid , IntPtr handle, int dw);  
  13.  
  14.  
  15. [ DllImport("gdi32.dll" , CharSet = CharSet.Auto )]  
  16. public static extern int SetPixel (IntPtr hdc, int x, int y , int crColor);  
  17.  
  18.  
  19. [ DllImport("gdi32.dll" , CharSet = CharSet.Auto )]  
  20. public static extern int GetPixel (IntPtr hdc, int x, int y );  
  21.  
  22.  
  23.  
  24.  
  25. [ DllImport("gdi32.dll" , CharSet= CharSet.Auto )]  
  26. public static extern int CombineRgn (IntPtr dest, IntPtr src1, IntPtr src2 , int flags);  
  27.  
  28.  
  29. [ DllImport("gdi32.dll" , CharSet= CharSet.Auto )]  
  30. public static extern IntPtr CreateBrushIndirect (ref LOGBRUSH brush );  
  31.  
  32.  
  33.  
  34.  
  35. [ DllImport("gdi32.dll" , CharSet= CharSet.Auto )]  
  36. public static extern IntPtr CreateRectRgnIndirect (ref RECTAPI rect );  
  37.  
  38.  
  39.  
  40.  
  41. [ DllImport("gdi32.dll" , CharSet= CharSet.Auto )]  
  42. public static extern int GetClipBox (IntPtr hDC, ref RECTAPI rectBox);  
  43.  
  44.  
  45. [ DllImport("gdi32.dll" , CharSet= CharSet.Auto )]  
  46. public static extern bool PatBlt (IntPtr hDC, int x, int y , int width, int height, uint flags);  
  47.  
  48.  
  49. [ DllImport("gdi32.dll" , CharSet= CharSet.Auto )]  
  50. public static extern int SelectClipRgn (IntPtr hDC, IntPtr hRgn);  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57. [ DllImport("gdi32.dll" , CharSet = CharSet.Auto , CallingConvention = CallingConvention .StdCall, SetLastError=true )]  
  58. public static extern IntPtr MoveToEx (IntPtr hDC, int x, int y , ref POINTAPI lpPoint );  
  59.  
  60.  
  61. [ DllImport("gdi32.dll" , CharSet = CharSet.Auto , CallingConvention = CallingConvention .StdCall, SetLastError=true )]  
  62. public static extern IntPtr LineTo (IntPtr hDC, int x, int y );  
  63.  
  64.  
  65. [ DllImport("gdi32.dll" , CharSet = CharSet.Auto , CallingConvention = CallingConvention .StdCall, SetLastError=true )]  
  66. public static extern IntPtr CreatePen (int nPenStyle, int nWidth, int crColor );  
  67.  
  68.  
  69. [ DllImport("gdi32.dll" , CharSet = CharSet.Auto , CallingConvention = CallingConvention .StdCall, SetLastError=true )]  
  70. public static extern int SetBrushOrgEx (IntPtr hDC, int x, int y , ref POINTAPI p );  
  71.  
  72.  
  73. [ DllImport("gdi32.dll" , CharSet = CharSet.Auto , CallingConvention = CallingConvention .StdCall, SetLastError=true )]  
  74. public static extern IntPtr CreatePatternBrush (IntPtr hBMP);  
  75.  
  76.  
  77. [ DllImport("gdi32.dll" , CharSet = CharSet.Auto , CallingConvention = CallingConvention .StdCall, SetLastError=true )]  
  78. public static extern int GetTextFace (IntPtr hDC, int nCount, string lpFacename );  
  79.  
  80.  
  81. [ DllImport("gdi32.dll" , CharSet = CharSet.Auto , CallingConvention = CallingConvention .StdCall, SetLastError=true )]  
  82. public static extern int GetTextMetrics (IntPtr hDC, ref GDITextMetric TextMetric);  
  83.  
  84.  
  85. [ DllImport("gdi32.dll" , CharSet = CharSet.Ansi , CallingConvention = CallingConvention .StdCall, SetLastError=true )]  
  86. public static extern IntPtr CreateFontIndirect ([MarshalAs( UnmanagedType.LPStruct )]LogFont LogFont);  
  87.  
  88.  
  89. [ DllImport("gdi32.dll" , SetLastError = true, CharSet = CharSet. Auto, CallingConvention = CallingConvention .StdCall)]  
  90. public static extern int BitBlt (IntPtr hDestDC, int x, int y , int nWidth, int nHeight, IntPtr hSrcDC , int xSrc, int ySrc, int dwRop );  
  91.  
  92.  
  93. [ DllImport("gdi32.dll" , CharSet = CharSet.Auto , CallingConvention = CallingConvention .StdCall, SetLastError=true )]  
  94. public static extern IntPtr CreateSolidBrush (int crColor);  
  95.  
  96.  
  97. [ DllImport("gdi32.dll" , CharSet = CharSet.Auto , CallingConvention = CallingConvention .StdCall, SetLastError=true )]  
  98. public static extern int Rectangle (IntPtr hDC, int left, int top , int right, int bottom);  
  99.  
  100.  
  101. [ DllImport("gdi32.dll" , CharSet = CharSet.Auto , CallingConvention = CallingConvention .StdCall, SetLastError=true )]  
  102. public static extern IntPtr CreateHatchBrush (int Style, int crColor);  
  103.  
  104.  
  105.  
  106.  
  107. [ DllImport("gdi32.dll" , CharSet = CharSet.Auto , CallingConvention = CallingConvention .StdCall, SetLastError=true )]  
  108. public static extern IntPtr CreateCompatibleBitmap (IntPtr hDC, int nWidth, int nHeight );  
  109.  
  110.  
  111. [ DllImport("gdi32.dll" , CharSet = CharSet.Auto , CallingConvention = CallingConvention .StdCall, SetLastError=true )]  
  112. public static extern IntPtr CreateCompatibleDC (IntPtr hDC);  
  113.  
  114.  
  115. [ DllImport("gdi32.dll" , CharSet = CharSet.Auto , CallingConvention = CallingConvention .StdCall, SetLastError=true )]  
  116. public static extern IntPtr SelectObject (IntPtr hDC, IntPtr hObject);  
  117.  
  118.  
  119. [ DllImport("gdi32.dll" , CharSet = CharSet.Auto , CallingConvention = CallingConvention .StdCall, SetLastError=true )]  
  120. public static extern IntPtr DeleteObject (IntPtr hObject);  
  121.  
  122.  
  123. [ DllImport("gdi32.dll" , SetLastError = true, CharSet = CharSet. Auto, CallingConvention = CallingConvention .StdCall)]  
  124. public static extern int GetTextColor (IntPtr hDC);  
  125.  
  126.  
  127. [ DllImport("gdi32.dll" , SetLastError = true, CharSet = CharSet. Auto, CallingConvention = CallingConvention .StdCall)]  
  128. public static extern int SetTextColor (IntPtr hDC, int crColor);  
  129.  
  130.  
  131. [ DllImport("gdi32.dll" , SetLastError = true, CharSet = CharSet. Auto, CallingConvention = CallingConvention .StdCall)]  
  132. public static extern int GetBkColor (IntPtr hDC);  
  133.  
  134.  
  135. [ DllImport("gdi32.dll" , SetLastError = true, CharSet = CharSet. Auto, CallingConvention = CallingConvention .StdCall)]  
  136. public static extern int GetBkMode (IntPtr hDC);  
  137.  
  138.  
  139. [ DllImport("gdi32.dll" , CharSet = CharSet.Auto , CallingConvention = CallingConvention .StdCall, SetLastError=true )]  
  140. public static extern IntPtr DeleteDC (IntPtr hDC);  
  141.  
  142.  
  143. [ DllImport("gdi32.dll" , SetLastError = true, CharSet = CharSet. Auto, CallingConvention = CallingConvention .StdCall)]  
  144. public static extern int SetBkColor (IntPtr hDC, int crColor);  
  145.  
  146.  
  147. [ DllImport("gdi32.dll" , SetLastError = true, CharSet = CharSet. Auto, CallingConvention = CallingConvention .StdCall)]  
  148. public static extern int SetBkMode (IntPtr hDC, int Mode);  
  149.  
  150.  
  151. [ DllImport("gdi32.dll" , CharSet = CharSet.Auto , CallingConvention = CallingConvention .StdCall, SetLastError=true )]  
  152. public static extern int GdiFlush ();  
  153.  
  154.  
  155. [ DllImport("gdi32.dll" , SetLastError = true, CharSet = CharSet. Ansi, CallingConvention = CallingConvention .StdCall)]  
  156. public static extern int EnumFontFamiliesEx (IntPtr hDC, [MarshalAs(UnmanagedType .LPStruct)] LogFont lf , FONTENUMPROC proc, Int64 LParam, Int64 DW );  
  157.  
  158.  
  159. [ DllImport("gdi32.dll" , EntryPoint = "GdiAlphaBlend" )]  
  160. public static extern bool AlphaBlend (  
  161. IntPtr hdcDest , // handle to destination DC  
  162. int nXOriginDest , // x-coord of upper-left corner  
  163. int nYOriginDest , // y-coord of upper-left corner  
  164. int nWidthDest , // destination width  
  165. int nHeightDest , // destination height  
  166. IntPtr hdcSrc , // handle to source DC  
  167. int nXOriginSrc , // x-coord of upper-left corner  
  168. int nYOriginSrc , // y-coord of upper-left corner  
  169. int nWidthSrc , // source width  
  170. int nHeightSrc , // source height  
  171. BLENDFUNCTION blendFunction // alpha-blending function  
  172. );  
  173. }  

    另外,如果真的是對(duì)效率要求很高的應(yīng)用,還是推薦大家使用OpenGL、DirectX。.NET平臺(tái)下有與之對(duì)應(yīng)的Tao.OpenGL和Managed DirectX。

創(chuàng)新互聯(lián)www.cdcxhl.cn,專業(yè)提供香港、美國云服務(wù)器,動(dòng)態(tài)BGP最優(yōu)骨干路由自動(dòng)選擇,持續(xù)穩(wěn)定高效的網(wǎng)絡(luò)助力業(yè)務(wù)部署。公司持有工信部辦法的idc、isp許可證, 機(jī)房獨(dú)有T級(jí)流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確進(jìn)行流量調(diào)度,確保服務(wù)器高可用性。佳節(jié)活動(dòng)現(xiàn)已開啟,新人活動(dòng)云服務(wù)器買多久送多久。

新聞標(biāo)題:C#使用GDI中的API函數(shù)-創(chuàng)新互聯(lián)
轉(zhuǎn)載源于:http://m.rwnh.cn/article22/dopejc.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站設(shè)計(jì)、響應(yīng)式網(wǎng)站、App設(shè)計(jì)、網(wǎng)站設(shè)計(jì)公司靜態(tài)網(wǎng)站、網(wǎng)站導(dǎo)航

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

成都網(wǎng)頁設(shè)計(jì)公司
德化县| 健康| 额济纳旗| 定襄县| 阿克| 泽库县| 临漳县| 宁晋县| 舒兰市| 海林市| 永登县| 汤阴县| 会理县| 黄龙县| 太仓市| 克拉玛依市| 沭阳县| 张家口市| 榆社县| 吴堡县| 威海市| 凤冈县| 平舆县| 望江县| 冷水江市| 阿勒泰市| 九寨沟县| 寻甸| 宣武区| 嵊州市| 祁门县| 新津县| 洞口县| 汨罗市| 宽甸| 长沙市| 叶城县| 布尔津县| 玛曲县| 根河市| 筠连县|