mirror of
https://github.com/eggplantlwj/VisionEdit.git
synced 2026-03-24 00:36:41 +08:00
338 lines
14 KiB
C#
338 lines
14 KiB
C#
// ***********************************************************************
|
||
// Assembly : HZH_Controls
|
||
// Created : 2019-09-11
|
||
//
|
||
// ***********************************************************************
|
||
// <copyright file="FontImages.cs">
|
||
// Copyright by Huang Zhenghui(黄正辉) All, QQ group:568015492 QQ:623128629 Email:623128629@qq.com
|
||
// </copyright>
|
||
//
|
||
// Blog: https://www.cnblogs.com/bfyx
|
||
// GitHub:https://github.com/kwwwvagaa/NetWinformControl
|
||
// gitee:https://gitee.com/kwwwvagaa/net_winform_custom_control.git
|
||
//
|
||
// If you use this code, please keep this note.
|
||
// ***********************************************************************
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.Drawing;
|
||
using System.Drawing.Drawing2D;
|
||
using System.Drawing.Imaging;
|
||
using System.Drawing.Text;
|
||
using System.IO;
|
||
|
||
namespace HZH_Controls
|
||
{
|
||
/// <summary>
|
||
/// 字体图标图片,awesome字体默认加载,elegant字体在使用时延迟加载
|
||
/// 图标示例 http://www.fontawesome.com.cn/faicons/?tdsourcetag=s_pcqq_aiomsg
|
||
/// 图标示例 https://www.elegantthemes.com/blog/resources/elegant-icon-font
|
||
/// </summary>
|
||
public static class FontImages
|
||
{
|
||
/// <summary>
|
||
/// The m font collection
|
||
/// </summary>
|
||
private static readonly PrivateFontCollection m_fontCollection = new PrivateFontCollection();
|
||
|
||
/// <summary>
|
||
/// The m fonts awesome
|
||
/// </summary>
|
||
private static readonly Dictionary<string, Font> m_fontsAwesome = new Dictionary<string, Font>();
|
||
/// <summary>
|
||
/// The m fonts elegant
|
||
/// </summary>
|
||
private static readonly Dictionary<string, Font> m_fontsElegant = new Dictionary<string, Font>();
|
||
|
||
/// <summary>
|
||
/// The m cache maximum size
|
||
/// </summary>
|
||
private static Dictionary<int, float> m_cacheMaxSize = new Dictionary<int, float>();
|
||
/// <summary>
|
||
/// The minimum font size
|
||
/// </summary>
|
||
private const int MinFontSize = 8;
|
||
/// <summary>
|
||
/// The maximum font size
|
||
/// </summary>
|
||
private const int MaxFontSize = 43;
|
||
|
||
|
||
/// <summary>
|
||
/// 构造函数
|
||
/// </summary>
|
||
/// <exception cref="FileNotFoundException">Font file not found</exception>
|
||
static FontImages()
|
||
{
|
||
string strPath = System.Reflection.Assembly.GetExecutingAssembly().CodeBase.ToLower().Replace("file:///", "");
|
||
string strDir = System.IO.Path.GetDirectoryName(strPath);
|
||
if (!Directory.Exists(Path.Combine(strDir, "IconFont")))
|
||
{
|
||
Directory.CreateDirectory(Path.Combine(strDir, "IconFont"));
|
||
}
|
||
string strFile = Path.Combine(strDir, "IconFont\\FontAwesome.ttf");
|
||
if (!File.Exists(strFile))
|
||
{
|
||
var fs = System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream("HZH_Controls.IconFont.FontAwesome.ttf");
|
||
FileStream sw = new FileStream(strFile, FileMode.Create, FileAccess.Write);
|
||
fs.CopyTo(sw);
|
||
sw.Close();
|
||
fs.Close();
|
||
}
|
||
|
||
m_fontCollection.AddFontFile(strFile);
|
||
|
||
float size = MinFontSize;
|
||
for (int i = 0; i <= (MaxFontSize - MinFontSize) * 2; i++)
|
||
{
|
||
m_fontsAwesome.Add(size.ToString("F2"), new Font(m_fontCollection.Families[0], size, FontStyle.Regular, GraphicsUnit.Point));
|
||
size += 0.5f;
|
||
}
|
||
}
|
||
|
||
/// <summary>
|
||
/// Gets the font awesome.
|
||
/// </summary>
|
||
/// <value>The font awesome.</value>
|
||
public static FontFamily FontAwesome
|
||
{
|
||
get
|
||
{
|
||
for (int i = 0; i < m_fontCollection.Families.Length; i++)
|
||
{
|
||
if (m_fontCollection.Families[i].Name == "FontAwesome")
|
||
{
|
||
return m_fontCollection.Families[i];
|
||
}
|
||
}
|
||
return m_fontCollection.Families[0];
|
||
}
|
||
}
|
||
|
||
/// <summary>
|
||
/// Gets the elegant icons.
|
||
/// </summary>
|
||
/// <value>The elegant icons.</value>
|
||
/// <exception cref="FileNotFoundException">Font file not found</exception>
|
||
public static FontFamily ElegantIcons
|
||
{
|
||
get
|
||
{
|
||
if (m_fontsElegant.Count <= 0)
|
||
{
|
||
lock (m_fontsElegant)
|
||
{
|
||
if (m_fontsElegant.Count <= 0)
|
||
{
|
||
string strPath = System.Reflection.Assembly.GetExecutingAssembly().CodeBase.ToLower().Replace("file:///", "");
|
||
string strDir = System.IO.Path.GetDirectoryName(strPath);
|
||
if (!Directory.Exists(Path.Combine(strDir, "IconFont")))
|
||
{
|
||
Directory.CreateDirectory(Path.Combine(strDir, "IconFont"));
|
||
}
|
||
string strFile = Path.Combine(strDir, "IconFont\\ElegantIcons.ttf");
|
||
if (!File.Exists(strFile))
|
||
{
|
||
var fs = System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream("HZH_Controls.IconFont.ElegantIcons.ttf");
|
||
FileStream sw = new FileStream(strFile, FileMode.Create, FileAccess.Write);
|
||
fs.CopyTo(sw);
|
||
sw.Close();
|
||
fs.Close();
|
||
}
|
||
m_fontCollection.AddFontFile(strFile);
|
||
|
||
float size = MinFontSize;
|
||
for (int i = 0; i <= (MaxFontSize - MinFontSize) * 2; i++)
|
||
{
|
||
m_fontsElegant.Add(size.ToString("F2"), new Font(m_fontCollection.Families[0], size, FontStyle.Regular, GraphicsUnit.Point));
|
||
size += 0.5f;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
for (int i = 0; i < m_fontCollection.Families.Length; i++)
|
||
{
|
||
if (m_fontCollection.Families[i].Name == "ElegantIcons")
|
||
{
|
||
return m_fontCollection.Families[i];
|
||
}
|
||
}
|
||
return m_fontCollection.Families[0];
|
||
}
|
||
}
|
||
/// <summary>
|
||
/// 获取图标
|
||
/// </summary>
|
||
/// <param name="iconText">图标名称</param>
|
||
/// <param name="imageSize">图标大小</param>
|
||
/// <param name="foreColor">前景色</param>
|
||
/// <param name="backColor">背景色</param>
|
||
/// <returns>图标</returns>
|
||
public static Icon GetIcon(FontIcons iconText, int imageSize = 32, Color? foreColor = null, Color? backColor = null)
|
||
{
|
||
Bitmap image = GetImage(iconText, imageSize, foreColor, backColor);
|
||
return image != null ? ToIcon(image, imageSize) : null;
|
||
}
|
||
/// <summary>
|
||
/// 获取图标.
|
||
/// </summary>
|
||
/// <param name="iconText">图标名称.</param>
|
||
/// <param name="imageSize">图标大小.</param>
|
||
/// <param name="foreColor">前景色</param>
|
||
/// <param name="backColor">背景色.</param>
|
||
/// <returns>Bitmap.</returns>
|
||
/// <exception cref="FileNotFoundException">Font file not found</exception>
|
||
public static Bitmap GetImage(FontIcons iconText, int imageSize = 32, Color? foreColor = null, Color? backColor = null)
|
||
{
|
||
Dictionary<string, Font> _fs;
|
||
if (iconText.ToString().StartsWith("A_"))
|
||
_fs = m_fontsAwesome;
|
||
else
|
||
{
|
||
if (m_fontsElegant.Count <= 0)
|
||
{
|
||
lock (m_fontsElegant)
|
||
{
|
||
if (m_fontsElegant.Count <= 0)
|
||
{
|
||
string strPath = System.Reflection.Assembly.GetExecutingAssembly().CodeBase.ToLower().Replace("file:///", "");
|
||
string strDir = System.IO.Path.GetDirectoryName(strPath);
|
||
if (!Directory.Exists(Path.Combine(strDir, "IconFont")))
|
||
{
|
||
Directory.CreateDirectory(Path.Combine(strDir, "IconFont"));
|
||
}
|
||
string strFile = Path.Combine(strDir, "IconFont\\ElegantIcons.ttf");
|
||
if (!File.Exists(strFile))
|
||
{
|
||
var fs = System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream("HZH_Controls.IconFont.ElegantIcons.ttf");
|
||
FileStream sw = new FileStream(strFile, FileMode.Create, FileAccess.Write);
|
||
fs.CopyTo(sw);
|
||
sw.Close();
|
||
fs.Close();
|
||
}
|
||
m_fontCollection.AddFontFile(strFile);
|
||
|
||
float size = MinFontSize;
|
||
for (int i = 0; i <= (MaxFontSize - MinFontSize) * 2; i++)
|
||
{
|
||
m_fontsElegant.Add(size.ToString("F2"), new Font(m_fontCollection.Families[0], size, FontStyle.Regular, GraphicsUnit.Point));
|
||
size += 0.5f;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
_fs = m_fontsElegant;
|
||
}
|
||
|
||
if (!foreColor.HasValue)
|
||
foreColor = Color.Black;
|
||
Font imageFont = _fs[MinFontSize.ToString("F2")];
|
||
SizeF textSize = new SizeF(imageSize, imageSize);
|
||
using (Bitmap bitmap = new Bitmap(48, 48))
|
||
using (Graphics graphics = Graphics.FromImage(bitmap))
|
||
{
|
||
//float size = MaxFontSize;
|
||
float fltMaxSize = MaxFontSize;
|
||
if (m_cacheMaxSize.ContainsKey(imageSize))
|
||
{
|
||
fltMaxSize = Math.Max(MaxFontSize, m_cacheMaxSize[imageSize] + 5);
|
||
}
|
||
while (fltMaxSize >= MinFontSize)
|
||
{
|
||
Font font = _fs[fltMaxSize.ToString("F2")];
|
||
SizeF sf = GetIconSize(iconText, graphics, font);
|
||
if (sf.Width < imageSize && sf.Height < imageSize)
|
||
{
|
||
imageFont = font;
|
||
textSize = sf;
|
||
break;
|
||
}
|
||
|
||
fltMaxSize -= 0.5f;
|
||
}
|
||
|
||
if (!m_cacheMaxSize.ContainsKey(imageSize) || (m_cacheMaxSize.ContainsKey(imageSize) && m_cacheMaxSize[imageSize] < fltMaxSize))
|
||
{
|
||
m_cacheMaxSize[imageSize] = fltMaxSize;
|
||
}
|
||
}
|
||
|
||
Bitmap srcImage = new Bitmap(imageSize, imageSize);
|
||
using (Graphics graphics = Graphics.FromImage(srcImage))
|
||
{
|
||
if (backColor.HasValue && backColor.Value != Color.Empty && backColor.Value != Color.Transparent)
|
||
graphics.Clear(backColor.Value);
|
||
string s = char.ConvertFromUtf32((int)iconText);
|
||
graphics.TextRenderingHint = TextRenderingHint.AntiAlias;
|
||
graphics.SetGDIHigh();
|
||
using (Brush brush2 = new SolidBrush(foreColor.Value))
|
||
{
|
||
graphics.DrawString(s, imageFont, brush2, new PointF((imageSize - textSize.Width) / 2.0f + 1, (imageSize - textSize.Height) / 2.0f + 1));
|
||
}
|
||
}
|
||
|
||
return srcImage;
|
||
}
|
||
|
||
/// <summary>
|
||
/// Gets the size of the icon.
|
||
/// </summary>
|
||
/// <param name="iconText">The icon text.</param>
|
||
/// <param name="graphics">The graphics.</param>
|
||
/// <param name="font">The font.</param>
|
||
/// <returns>Size.</returns>
|
||
private static Size GetIconSize(FontIcons iconText, Graphics graphics, Font font)
|
||
{
|
||
string text = char.ConvertFromUtf32((int)iconText);
|
||
return graphics.MeasureString(text, font).ToSize();
|
||
}
|
||
|
||
/// <summary>
|
||
/// Converts to icon.
|
||
/// </summary>
|
||
/// <param name="srcBitmap">The source bitmap.</param>
|
||
/// <param name="size">The size.</param>
|
||
/// <returns>Icon.</returns>
|
||
/// <exception cref="ArgumentNullException">srcBitmap</exception>
|
||
private static Icon ToIcon(Bitmap srcBitmap, int size)
|
||
{
|
||
if (srcBitmap == null)
|
||
{
|
||
throw new ArgumentNullException("srcBitmap");
|
||
}
|
||
|
||
Icon icon;
|
||
using (MemoryStream memoryStream = new MemoryStream())
|
||
{
|
||
new Bitmap(srcBitmap, new Size(size, size)).Save(memoryStream, ImageFormat.Png);
|
||
Stream stream = new MemoryStream();
|
||
BinaryWriter binaryWriter = new BinaryWriter(stream);
|
||
if (stream.Length <= 0L)
|
||
{
|
||
return null;
|
||
}
|
||
|
||
binaryWriter.Write((byte)0);
|
||
binaryWriter.Write((byte)0);
|
||
binaryWriter.Write((short)1);
|
||
binaryWriter.Write((short)1);
|
||
binaryWriter.Write((byte)size);
|
||
binaryWriter.Write((byte)size);
|
||
binaryWriter.Write((byte)0);
|
||
binaryWriter.Write((byte)0);
|
||
binaryWriter.Write((short)0);
|
||
binaryWriter.Write((short)32);
|
||
binaryWriter.Write((int)memoryStream.Length);
|
||
binaryWriter.Write(22);
|
||
binaryWriter.Write(memoryStream.ToArray());
|
||
binaryWriter.Flush();
|
||
binaryWriter.Seek(0, SeekOrigin.Begin);
|
||
icon = new Icon(stream);
|
||
stream.Dispose();
|
||
}
|
||
|
||
return icon;
|
||
}
|
||
|
||
}
|
||
} |