C# 條碼生成類

来源:http://www.cnblogs.com/Liyuting/archive/2017/06/20/7054418.html
-Advertisement-
Play Games

using System.Collections; using System.Text.RegularExpressions; namespace DotNet.Utilities { public class BarCodeToHTML { public static string get39(s ...


using System.Collections;  
using System.Text.RegularExpressions;  
  
namespace DotNet.Utilities  
{  
    public class BarCodeToHTML  
    {  
        public static string get39(string s, int width, int height)  
        {  
            Hashtable ht = new Hashtable();  
 
            #region 39碼 12位  
            ht.Add('A', "110101001011");  
            ht.Add('B', "101101001011");  
            ht.Add('C', "110110100101");  
            ht.Add('D', "101011001011");  
            ht.Add('E', "110101100101");  
            ht.Add('F', "101101100101");  
            ht.Add('G', "101010011011");  
            ht.Add('H', "110101001101");  
            ht.Add('I', "101101001101");  
            ht.Add('J', "101011001101");  
            ht.Add('K', "110101010011");  
            ht.Add('L', "101101010011");  
            ht.Add('M', "110110101001");  
            ht.Add('N', "101011010011");  
            ht.Add('O', "110101101001");  
            ht.Add('P', "101101101001");  
            ht.Add('Q', "101010110011");  
            ht.Add('R', "110101011001");  
            ht.Add('S', "101101011001");  
            ht.Add('T', "101011011001");  
            ht.Add('U', "110010101011");  
            ht.Add('V', "100110101011");  
            ht.Add('W', "110011010101");  
            ht.Add('X', "100101101011");  
            ht.Add('Y', "110010110101");  
            ht.Add('Z', "100110110101");  
            ht.Add('0', "101001101101");  
            ht.Add('1', "110100101011");  
            ht.Add('2', "101100101011");  
            ht.Add('3', "110110010101");  
            ht.Add('4', "101001101011");  
            ht.Add('5', "110100110101");  
            ht.Add('6', "101100110101");  
            ht.Add('7', "101001011011");  
            ht.Add('8', "110100101101");  
            ht.Add('9', "101100101101");  
            ht.Add('+', "100101001001");  
            ht.Add('-', "100101011011");  
            ht.Add('*', "100101101101");  
            ht.Add('/', "100100101001");  
            ht.Add('%', "101001001001");  
            ht.Add('$', "100100100101");  
            ht.Add('.', "110010101101");  
            ht.Add(' ', "100110101101");  
            #endregion  
 
            #region 39碼 9位  
            //ht.Add('0', "000110100");  
            //ht.Add('1', "100100001");  
            //ht.Add('2', "001100001");  
            //ht.Add('3', "101100000");  
            //ht.Add('4', "000110001");  
            //ht.Add('5', "100110000");  
            //ht.Add('6', "001110000");  
            //ht.Add('7', "000100101");  
            //ht.Add('8', "100100100");  
            //ht.Add('9', "001100100");  
            //ht.Add('A', "100001001");  
            //ht.Add('B', "001001001");  
            //ht.Add('C', "101001000");  
            //ht.Add('D', "000011001");  
            //ht.Add('E', "100011000");  
            //ht.Add('F', "001011000");  
            //ht.Add('G', "000001101");  
            //ht.Add('H', "100001100");  
            //ht.Add('I', "001001100");  
            //ht.Add('J', "000011100");  
            //ht.Add('K', "100000011");  
            //ht.Add('L', "001000011");  
            //ht.Add('M', "101000010");  
            //ht.Add('N', "000010011");  
            //ht.Add('O', "100010010");  
            //ht.Add('P', "001010010");  
            //ht.Add('Q', "000000111");  
            //ht.Add('R', "100000110");  
            //ht.Add('S', "001000110");  
            //ht.Add('T', "000010110");  
            //ht.Add('U', "110000001");  
            //ht.Add('V', "011000001");  
            //ht.Add('W', "111000000");  
            //ht.Add('X', "010010001");  
            //ht.Add('Y', "110010000");  
            //ht.Add('Z', "011010000");  
            //ht.Add('-', "010000101");  
            //ht.Add('.', "110000100");  
            //ht.Add(' ', "011000100");  
            //ht.Add('*', "010010100");  
            //ht.Add('$', "010101000");  
            //ht.Add('/', "010100010");  
            //ht.Add('+', "010001010");  
            //ht.Add('%', "000101010");  
            #endregion  
  
            s = "*" + s.ToUpper() + "*";  
  
            string result_bin = "";//二進位串  
  
            try  
            {  
                foreach (char ch in s)  
                {  
                    result_bin += ht[ch].ToString();  
                    result_bin += "0";//間隔,與一個單位的線條寬度相等  
                }  
            }  
            catch { return "存在不允許的字元!"; }  
  
            string result_html = ""; //HTML代碼  
            string color = "";       //顏色  
            foreach (char c in result_bin)  
            {  
                color = c == '0' ? "#FFFFFF" : "#000000";  
                result_html += "<div style=\"width:" + width + "px;height:" + height + "px;float:left;background:" + color + ";\"></div>";  
            }  
            result_html += "<div style=\"clear:both\"></div>";  
  
            int len = ht['*'].ToString().Length;  
            foreach (char c in s)  
            {  
                result_html += "<div style=\"width:" + (width * (len + 1)) + "px;float:left;color:#000000;text-align:center;\">" + c + "</div>";  
            }  
            result_html += "<div style=\"clear:both\"></div>";  
  
            return "<div style=\"background:#FFFFFF;padding:5px;font-size:" + (width * 10) + "px;font-family:'楷體';\">" + result_html + "</div>";  
        }  
  
        public static string getEAN13(string s, int width, int height)  
        {  
            int checkcode_input = -1;//輸入的校驗碼  
            if (!Regex.IsMatch(s, @"^\d{12}$"))  
            {  
                if (!Regex.IsMatch(s, @"^\d{13}$"))  
                {  
                    return "存在不允許的字元!";  
                }  
                else  
                {  
                    checkcode_input = int.Parse(s[12].ToString());  
                    s = s.Substring(0, 12);  
                }  
            }  
  
            int sum_even = 0;//偶數位之和  
            int sum_odd = 0; //奇數位之和  
  
            for (int i = 0; i < 12; i++)  
            {  
                if (i % 2 == 0)  
                {  
                    sum_odd += int.Parse(s[i].ToString());  
                }  
                else  
                {  
                    sum_even += int.Parse(s[i].ToString());  
                }  
            }  
  
            int checkcode = (10 - (sum_even * 3 + sum_odd) % 10) % 10;//校驗碼  
  
            if (checkcode_input > 0 && checkcode_input != checkcode)  
            {  
                return "輸入的校驗碼錯誤!";  
            }  
  
            s += checkcode;//變成13位  
  
            // 000000000101左側42個01010右側35個校驗7個101000000000  
            // 6        101左側6位 01010右側5位校驗1位101000000000  
  
            string result_bin = "";//二進位串  
            result_bin += "000000000101";  
  
            string type = ean13type(s[0]);  
            for (int i = 1; i < 7; i++)  
            {  
                result_bin += ean13(s[i], type[i - 1]);  
            }  
            result_bin += "01010";  
            for (int i = 7; i < 13; i++)  
            {  
                result_bin += ean13(s[i], 'C');  
            }  
            result_bin += "101000000000";  
  
            string result_html = ""; //HTML代碼  
            string color = "";       //顏色  
            int height_bottom = width * 5;  
            foreach (char c in result_bin)  
            {  
                color = c == '0' ? "#FFFFFF" : "#000000";  
                result_html += "<div style=\"width:" + width + "px;height:" + height + "px;float:left;background:" + color + ";\"></div>";  
            }  
            result_html += "<div style=\"clear:both\"></div>";  
  
            result_html += "<div style=\"float:left;color:#000000;width:" + (width * 9) + "px;text-align:center;\">" + s[0] + "</div>";  
            result_html += "<div style=\"float:left;width:" + width + "px;height:" + height_bottom + "px;background:#000000;\"></div>";  
            result_html += "<div style=\"float:left;width:" + width + "px;height:" + height_bottom + "px;background:#FFFFFF;\"></div>";  
            result_html += "<div style=\"float:left;width:" + width + "px;height:" + height_bottom + "px;background:#000000;\"></div>";  
            for (int i = 1; i < 7; i++)  
            {  
                result_html += "<div style=\"float:left;width:" + (width * 7) + "px;color:#000000;text-align:center;\">" + s[i] + "</div>";  
            }  
            result_html += "<div style=\"float:left;width:" + width + "px;height:" + height_bottom + "px;background:#FFFFFF;\"></div>";  
            result_html += "<div style=\"float:left;width:" + width + "px;height:" + height_bottom + "px;background:#000000;\"></div>";  
            result_html += "<div style=\"float:left;width:" + width + "px;height:" + height_bottom + "px;background:#FFFFFF;\"></div>";  
            result_html += "<div style=\"float:left;width:" + width + "px;height:" + height_bottom + "px;background:#000000;\"></div>";  
            result_html += "<div style=\"float:left;width:" + width + "px;height:" + height_bottom + "px;background:#FFFFFF;\"></div>";  
            for (int i = 7; i < 13; i++)  
            {  
                result_html += "<div style=\"float:left;width:" + (width * 7) + "px;color:#000000;text-align:center;\">" + s[i] + "</div>";  
            }  
            result_html += "<div style=\"float:left;width:" + width + "px;height:" + height_bottom + "px;background:#000000;\"></div>";  
            result_html += "<div style=\"float:left;width:" + width + "px;height:" + height_bottom + "px;background:#FFFFFF;\"></div>";  
            result_html += "<div style=\"float:left;width:" + width + "px;height:" + height_bottom + "px;background:#000000;\"></div>";  
            result_html += "<div style=\"float:left;color:#000000;width:" + (width * 9) + "px;\"></div>";  
            result_html += "<div style=\"clear:both\"></div>";  
  
            return "<div style=\"background:#FFFFFF;padding:0px;font-size:" + (width * 10) + "px;font-family:'楷體';\">" + result_html + "</div>";  
        }  
  
        private static string ean13(char c, char type)  
        {  
            switch (type)  
            {  
                case 'A':  
                    {  
                        switch (c)  
                        {  
                            case '0': return "0001101";  
                            case '1': return "0011001";  
                            case '2': return "0010011";  
                            case '3': return "0111101";//011101  
                            case '4': return "0100011";  
                            case '5': return "0110001";  
                            case '6': return "0101111";  
                            case '7': return "0111011";  
                            case '8': return "0110111";  
                            case '9': return "0001011";  
                            default: return "Error!";  
                        }  
                    }  
                case 'B':  
                    {  
                        switch (c)  
                        {  
                            case '0': return "0100111";  
                            case '1': return "0110011";  
                            case '2': return "0011011";  
                            case '3': return "0100001";  
                            case '4': return "0011101";  
                            case '5': return "0111001";  
                            case '6': return "0000101";//000101  
                            case '7': return "0010001";  
                            case '8': return "0001001";  
                            case '9': return "0010111";  
                            default: return "Error!";  
                        }  
                    }  
                case 'C':  
                    {  
                        switch (c)  
                        {  
                            case '0': return "1110010";  
                            case '1': return "1100110";  
                            case '2': return "1101100";  
                            case '3': return "1000010";  
                            case '4': return "1011100";  
                            case '5': return "1001110";  
                            case '6': return "1010000";  
                            case '7': return "1000100";  
                            case '8': return "1001000";  
                            case '9': return "1110100";  
                            default: return "Error!";  
                        }  
                    }  
                default: return "Error!";  
            }  
        }  
  
        private static string ean13type(char c)  
        {  
            switch (c)  
            {  
                case '0': return "AAAAAA";  
                case '1': return "AABABB";  
                case '2': return "AABBAB";  
                case '3': return "AABBBA";  
                case '4': return "ABAABB";  
                case '5': return "ABBAAB";  
                case '6': return "ABBBAA";//中國  
                case '7': return "ABABAB";  
                case '8': return "ABABBA";  
                case '9': return "ABBABA";  
                default: return "Error!";  
            }  
        }  
    }  
}  
BarCodeToHTML

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 背景:C# .Net MVC ,以及已經開發了近1年半的我,做了好久但是對於這個技術沒有總結,這是一個機會,寫寫我理解的東西吧。--以下內容參考了別人的文章 技術介紹: LINQ(Language Integrated Query,語言集成查詢)是一組用於C#和VB.NET語言的擴展,它允許編寫C# ...
  • 使用Thread類已經可以創建並啟動線程了,但是隨著開啟的線程越來越多,線程的創建和終止都需要手動操作,非常繁瑣,另一個問題是,開啟更多新的線程但是沒有用的線程沒有及時得到終止的時候,會占用越來越多的系統資源,影響性能。 所以,.net為我們引入了ThreadPool(線程池),我們只需要把要執行的 ...
  • 相關文章: "ASP.NET Core 使用 Hangfire 定時任務" ASP.NET Core Hangfire 在正式環境發佈之後,如果訪問 http://10.1.2.31:5000/hangfire/ 的話,會報 未授權錯誤,原因是 Hangfire 預設增加了授權配置。 解決方式: 增 ...
  • DotNetBar的視窗樣式丟失 C# 調用DotNetBar很方便,將DevComponents.DotNetBar2.dll和DevComponents.DotNetBar.Design.dll放在工程的Debug目錄下(下載地址)。將DevComponents.DotNetBar2.dll 直 ...
  • 我們先從最基礎的Thread說起。 創建並啟動線程 創建並啟動一個線程,如下代碼: 1 namespace ConsoleApplication17 2 { 3 class Program 4 { 5 static void Main(string[] args) 6 { 7 var thread ...
  • 支付網關思考 目的 支付網關是為了屏蔽各種 支付工具之間的差異,對訂單系統行程一個統一的,標準的介面。如下圖所示 思路 事物補償機制 對賬 介面設計 1. 訂單狀態同步 bool UpdateOrderPaySatus(string orderId, int paySatas) 2. 預支付請求簽名 ...
  • 註意添加引用:System.Configuration; using System; using System.Collections.Generic; using System.Text; using System.Configuration; namespace DotNet.Utilities ...
  • 多線程在項目開發過程中非常非常重要,這個系列就來詳細總結一下,首先認識一下多線程。 windows為什麼要支持多線程 電腦的早期時代,操作系統沒有線程的概念,整個系統只運行著一個執行線程,其中包含操作系統代碼和應用程式代碼。只用一個執行線程的問題在於,長時間運行的任務會阻止其他任務的執行。例如16 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...