91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#如何實現在底圖上動態生成文字和圖片

發布時間:2021-05-17 10:21:50 來源:億速云 閱讀:241 作者:小新 欄目:編程語言

這篇文章主要介紹了C#如何實現在底圖上動態生成文字和圖片,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

代碼:

/// <summary>
/// 在底圖上畫指定路徑的圖片
/// </summary>
/// <param name="g">畫板實例</param>
/// <param name="path">圖片路徑</param>
/// <param name="totalWidth">畫區總長度</param>
/// <param name="totalHeight">畫區總高度</param>
/// <param name="px">起點X坐標</param>
/// <param name="py">起點Y坐標</param>
  private void FontPic(ref Graphics g, string path, int totalWidth, int totalHeight, int px, int py)
  {
   if (File.Exists(path))
   {
    var pImg = Image.FromFile(path);
    //如果圖片大于畫布區域,則縮小
    if (totalHeight < pImg.Height && totalWidth < pImg.Width)
    {
     Image newPic = GetReducedImage(pImg, totalWidth, totalHeight);
     if (newPic != null)
     {
      DrawPic(ref g, totalWidth, totalHeight, px, py, newPic);
     }
    }
    else if (totalHeight < pImg.Height && totalWidth >= pImg.Width)
    {
     Image newPic = GetReducedImage(pImg, pImg.Width, totalHeight);
     if (newPic != null)
     {
      DrawPic(ref g, totalWidth, totalHeight, px, py, newPic);
     }
    }
    else if (totalHeight >= pImg.Height && totalWidth < pImg.Width)
    {
     Image newPic = GetReducedImage(pImg, totalWidth, pImg.Height);
     if (newPic != null)
     {
      DrawPic(ref g, totalWidth, totalHeight, px, py, newPic);
     }
    }
    else
    {
     DrawPic(ref g, totalWidth, totalHeight, px, py, pImg);
    }
   }
  }
  /// <summary>
  /// 在圖上畫圖片
  /// </summary>
  /// <param name="g">畫板實例</param>
  /// <param name="totalWidth">畫區總長度</param>
  /// <param name="totalHeight">畫區總高度</param>
  /// <param name="px">起點X坐標</param>
  /// <param name="py">起點Y坐標</param>
  /// <param name="pImg">要畫的圖片實例</param>
  private void DrawPic(ref Graphics g, int totalWidth, int totalHeight, int px, int py, Image pImg)
  {
   px += GetValue(totalWidth, pImg.Width);
   py += GetValue(totalHeight, pImg.Height);
 
   g.DrawImage(new Bitmap(pImg, new Size(GetSize(totalWidth, pImg.Width), GetSize(totalHeight, pImg.Height))),
    new Rectangle(px, py, totalWidth, totalHeight),
    0, 0, totalWidth, totalHeight, GraphicsUnit.Pixel);
  }
  /// <summary> 
  /// 生成縮略圖重載方法1,返回縮略圖的Image對象 
  /// </summary> 
  /// <param name="width">縮略圖的寬度</param> 
  /// <param name="height">縮略圖的高度</param> 
  /// <returns>縮略圖的Image對象</returns> 
  public Image GetReducedImage(Image resourceImage, int width, int height)
  {
   try
   {
    Image data = null;
    //用指定的大小和格式初始化Bitmap類的新實例 
    using (Bitmap bitmap = new Bitmap(width, height, PixelFormat.Format32bppArgb))
    {
     //從指定的Image對象創建新Graphics對象 
     using (Graphics graphics = Graphics.FromImage(bitmap))
     {
      //清除整個繪圖面并以透明背景色填充 
      //graphics.Clear(Color.Transparent);
      //在指定位置并且按指定大小繪制原圖片對象 
      graphics.DrawImage(resourceImage, new Rectangle(0, 0, width, height));
     }
     data = new Bitmap(bitmap);
    }
    return data;
   }
   catch (Exception e)
   {
    throw e;
   }
  }
  /// <summary>
  /// 比較兩個值,得到給到給定值(判斷是否越界)
  /// </summary>
  /// <param name="total">總長度</param>
  /// <param name="width">指定長度</param>
  /// <returns></returns>
  public int GetSize(int total, int width)
  {
   if (total > width)
   {
    return width;
   }
   else
   {
    return total;
   }
  }
  /// <summary>
  /// 更加傳入的值計算得到新值(計算點坐標)
  /// </summary>
  /// <param name="total">總長度</param>
  /// <param name="width">指定長度</param>
  /// <returns></returns>
  private int GetValue(int total, int width)
  {
   return (total - width) / 2;
  }
  /// <summary>
  /// 在圖片上畫出文字
  /// </summary>
  /// <param name="g">圖片對象</param>
  /// <param name="pointX">文字x坐標</param>
  /// <param name="pointY">文字y坐標</param>
  /// <param name="word">文字內容</param>
  /// <param name="textWidth">文本寬度</param>
  /// <param name="textHeight">文本高度</param>
  private static void DrawStringWord(Graphics g, int pointX, int pointY, string word, int textWidth, int textHeight, int fontSize = 30)
  {
   Font font = new Font("微軟雅黑", fontSize, (FontStyle.Regular));
   RectangleF textArea = new RectangleF(pointX, pointY, textWidth, textHeight);
   Brush brush = new SolidBrush(Color.Black);
   g.DrawString(word, font, brush, textArea);
  }

C#是什么

C#是一個簡單、通用、面向對象的編程語言,它由微軟Microsoft開發,繼承了C和C++強大功能,并且去掉了一些它們的復雜特性,C#綜合了VB簡單的可視化操作和C++的高運行效率,以其強大的操作能力、優雅的語法風格、創新的語言特性和便捷的面向組件編程從而成為.NET開發的首選語言,但它不適用于編寫時間急迫或性能非常高的代碼,因為C#缺乏性能極高的應用程序所需要的關鍵功能。

感謝你能夠認真閱讀完這篇文章,希望小編分享的“C#如何實現在底圖上動態生成文字和圖片”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

旌德县| 喀喇沁旗| 阿巴嘎旗| 安泽县| 轮台县| 武穴市| 榆社县| 江永县| 榆林市| 永泰县| 寿光市| 女性| 炎陵县| 定西市| 长春市| 龙山县| 保康县| 防城港市| 梁河县| 西乌珠穆沁旗| 襄垣县| 怀来县| 深泽县| 包头市| 紫阳县| 宝山区| 藁城市| 开阳县| 安义县| 阜宁县| 恭城| 罗田县| 晋城| 柏乡县| 舟曲县| 聊城市| 海晏县| 沁水县| 岳阳县| 保山市| 巴林右旗|