C# 绘图及古诗填字

绘图

绘图的结果如下:

绘图部分主要使用了 Bitmap、Graphics 

具体的函数是 MakeMap

入参说明

string bg : 背景图
Rectangle rect :绘图区域
int row_count :行数
int col_count :列数
string fn :保存到的文件

代码如下:

        public void MakeMap(string bg ,Rectangle rect ,int row_count,int col_count ,string fn){Bitmap bmp = new Bitmap(bg);Graphics g = Graphics.FromImage(bmp);           SHIUtils u = new SHIUtils();u.init_data(data);int line_w = 1;int cell_w = (rect.Width - line_w*(col_count+1)) / col_count;int cell_h = (rect.Height - line_w * (row_count + 1)) / row_count;int w = line_w * (col_count + 1) + cell_w * col_count;int h = line_w * (row_count + 1) + cell_h * row_count;int x0 = rect.X + (rect.Width - w) / 2;int y0 = rect.Y + (rect.Height - h ) / 2;Pen pen = new Pen(Color.FromArgb(196, 196, 196));for (int col = 0; col <= col_count; col++){int x = x0 + (line_w + cell_w) * col;g.DrawLine(pen, x, y0, x, y0 + h - line_w);}for (int row = 0; row <= row_count; row++){int y = y0 + (line_w + cell_h) * row;g.DrawLine(pen, x0, y, x0 + w - line_w, y);}// g.SmoothingMode = SmoothingMode.HighQuality;g.TextRenderingHint = TextRenderingHint.AntiAlias;Font font = new Font("汉呈波波浓墨行楷", cell_w*90/100, FontStyle.Regular);SolidBrush brush = new SolidBrush(Color.Black);SolidBrush brush_cell = new SolidBrush(Color.FromArgb(225, 225, 225));StringFormat sf = new StringFormat();SHIMap map = u.make_map(col_count, row_count);for (int col = 0; col < col_count; col++)for (int row = 0; row < row_count; row++){MapHole cell= map.map[col, row];if (cell.chr != ' '){int x = x0 + (line_w + cell_w) * col + line_w;int y = y0 + (line_w + cell_h) * row + line_w;g.FillRectangle(brush_cell, new Rectangle(x , y , cell_w  , cell_h));string s = cell.chr.ToString();if (cell.sentence_list.Count == 2)s = "?";sf.Alignment = StringAlignment.Center;sf.LineAlignment = StringAlignment.Center;g.DrawString(s, font, brush, new Rectangle(x, y, cell_w, cell_h), sf);} }            g.Dispose(); bmp.Save(fn, ImageFormat.Png);bmp.Dispose();}

 古诗填字

绘图的内容由SHIUtils生成。

SHIMap map = u.make_map(col_count, row_count);

 函数中使用了随机数,每次调用生成的内容都不一样,具体的代码如下:

 public class SHIUtils{public static Char Char_comma = ',';public static Char Char_period = '。';public static Char Char_period_1 = '!';public static Char Char_period_2 = '?';public static Char Char_period_3 = '、';public static Char Char_period_4 = ';';public static Char Char_period_5 = ':';public static Char Char_period_6 = '\r';public static Char Char_period_7 = '\n';public Random rd = new Random(Guid.NewGuid().GetHashCode());public void clear(){}private SHIData _data = null;private Dictionary<char, int> _char_dict = new Dictionary<char, int>();private Dictionary<int, SHI> _shi_dict = new Dictionary<int, SHI>();private Dictionary<int,  Sentence> _sentence_dict= new Dictionary<int, Sentence>();private Dictionary<char, Dictionary<int, Sentence>> _sentence_index = new Dictionary<char, Dictionary<int, Sentence>>();private Dictionary<char, List<Sentence>> _sentence_index_list = new Dictionary<char, List< Sentence>>();private Dictionary<int, Dictionary<int, Sentence>> _sentence_index_len = new Dictionary<int, Dictionary<int, Sentence>>();private Dictionary<int, List< Sentence>> _sentence_index_len_list = new Dictionary<int, List<Sentence>>();public Dictionary<int, List<Sentence>> get_sentence_index_len_list(){return _sentence_index_len_list;}public Dictionary<int, SHI> get_shi_dict(){return _shi_dict;}private void do_init(){clear();make_char_dict();make_sentence_list();}private void make_char_dict(){_char_dict.Clear();foreach (SHI i in _data.Items){foreach (Char ch in i.contson){if (_char_dict.ContainsKey(ch))continue;_char_dict[ch] = _char_dict.Count;}}}private void make_sentence_list(){_shi_dict.Clear();_sentence_dict.Clear();_sentence_index.Clear();_sentence_index_list.Clear();_sentence_index_len.Clear();_sentence_index_len_list.Clear();foreach (SHI i in _data.Items){_shi_dict[i.id] = i;Sentence s = null;int idx = 0;foreach (Char ch in i.contson){if (ch == '\r')continue;if (ch == '\n')continue;if (s == null){s = new Sentence();s.shi_id = i.id;s.idx = idx;s.id = s.shi_id * 1000 + idx;idx++;_sentence_dict[s.id]=s;}if ((ch == Char_comma) || (ch == Char_period) || (ch == Char_period_1) || (ch == Char_period_2) || (ch == Char_period_3) || (ch == Char_period_4)||(ch==Char_period_5) || (ch == Char_period_6) || (ch == Char_period_7)){s.chr_end = ch;foreach (Char ch_s in s.chrlist){Dictionary<int, Sentence> ls = null;if (!_sentence_index.TryGetValue(ch_s,out ls)){ls = new Dictionary<int, Sentence>();_sentence_index[ch_s] = ls;}if (! ls.ContainsKey(s.id))ls[s.id] =s;}{Dictionary<int, Sentence> ls = null;if (!_sentence_index_len.TryGetValue(s.chrlist.Count,out ls)){ls = new Dictionary<int, Sentence>();_sentence_index_len[s.chrlist.Count] = ls;                               }if (!ls.ContainsKey(s.id)){ls[s.id] = s;}}s = null;}else{s.chrlist.Add(ch);s.txt = s.txt + ch;}}}foreach(KeyValuePair<int, Dictionary<int, Sentence>> kv in _sentence_index_len){List<Sentence> ls = new List<Sentence>();_sentence_index_len_list[kv.Key] = ls;foreach (KeyValuePair<int, Sentence> kv2 in kv.Value){ls.Add(kv2.Value);}}foreach (KeyValuePair<Char, Dictionary<int, Sentence>> kv in _sentence_index){List<Sentence> ls = new List<Sentence>();_sentence_index_list[kv.Key] = ls;foreach (KeyValuePair<int, Sentence> kv2 in kv.Value){ls.Add(kv2.Value);}}}public void init_data(SHIData data){_data = data;do_init();}public void load(){}public Sentence get_sentence_rand_by_len(int len){List<Sentence> ls = new List<Sentence>();if (_sentence_index_len_list.TryGetValue(len, out ls)){int i = rd.Next(ls.Count);return ls[i];}else{return null;}}private int fill_map_with_hole_list(SHIMap sm,List<MapHole> hole_list ,int step){int c = 0;foreach (MapHole hole in hole_list ){Char ch = hole.chr;List<Sentence> ls = null;if ( _sentence_index_list.TryGetValue(ch,out ls)){int idx_0 = rd.Next(ls.Count);for (int i=0;i<ls.Count-1;i++){int idx = (i + idx_0) % (ls.Count);Sentence s = ls[idx]; if (s.chrlist.Count < _data.min_s_chr_cnt)continue;if (sm.sentence_list.ContainsKey(s.txt))continue;int pos = s.chrlist.IndexOf(ch);if (pos>=0){if ((i % 2) == 0){int x1 = hole.x - pos;int y1 = hole.y;if (sm.can_fill_horizontal(s, x1, y1)){sm.fill_horizontal(s, x1, y1, step);c++;}} else{int x1 = hole.x ;int y1 = hole.y - pos;if (sm.can_fill_vertical(s, x1, y1)){sm.fill_vertical(s, x1, y1, step);c++;}}}}}}return c;}private void fill_map(SHIMap sm){            Sentence s0 = get_sentence_rand_by_len(7);if (s0==null)s0 = get_sentence_rand_by_len(5);if (s0 == null)s0 = get_sentence_rand_by_len(4);int x0 = (sm.width - s0.chrlist.Count) / 2;int y0 = (sm.height - 2) / 2;//   int x0 = 0;//  int y0 = 0;if (!sm.can_fill_horizontal(s0, x0, y0))return;sm.fill_horizontal(s0, x0, y0, 1);for (int step=2; step < 1000; step++){int c = 0;for (int i = sm.step_list.Count-1;i>=0;i--){if (i <= sm.step_list[i].step - 2)break;c = c + fill_map_with_hole_list(sm, sm.step_list[i].hole_list, step);}if (c<=0){break;}}}public SHIMap make_map(int width, int height){SHIMap sm = new SHIMap();sm.init_map(width, height);fill_map(sm);         return sm;}}
}

例图

 

 

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/25208.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Unity Standard shader 修改(增加本地坐标裁剪)

本想随便找一个裁剪的shader&#xff0c;可无奈的是没找到一个shader符合要求&#xff0c;美术制作的场景都是用的都标准的着色器他们不在乎你的功能逻辑需求&#xff0c;他们只关心场景的表现&#xff0c;那又找不到和unity标准着色器表现一样的shader 1.通过贴图的透明通道做…

【Java 百“练”成钢】Java 基础:类和对象

Java 基础&#xff1a;类和对象 01.打印信息02.打印类的简单名称03.打印类的 ClassLoader04.获取类的方法05.获取类的Package06.创建一个对象数组07.计算圆的面积08.计算圆的周长09.创建具有私有访问修饰符的成员10.创建带访问修饰符的成员11.将对象作为参数传递12.通过类对象获…

关于智慧校园建设的几点建议

随着科技的迅猛发展&#xff0c;智慧校园建设已成为现代教育的重要组成部分&#xff0c;对于提升教育质量、改善学生学习环境具有重要意义。为此&#xff0c;我提出以下几点建议&#xff0c;以帮助智慧校园建设更加有效和可持续。 首先&#xff0c;应注重基础设施建设。智慧校园…

Anaconda3 下载安装卸载

1、下载 官网链接&#xff1a;Download Now | Anaconda Step1&#xff1a;进入官网 Anaconda | The Operating System for AI Step2&#xff1a;进入下载页面&#xff0c;选择要Anaconda软件安装包 2、安装 Step1: 点击 Anaconda3-2024.02-1-Windows-x86_64.exe 安装包进行安…

线控转向 0 -- 线控转向介绍和专栏规划

一、线控转向介绍 高阶自动驾驶核心部件&#xff1a;英创汇智线控转向解决方案 _北京英创汇智科技有限公司 (trinova-tech.com) 线控转向的系统组成详细介绍大家可以看上面这个链接&#xff1b;我这里也只从里面截取一些图片&#xff0c;简单说明。 1、结构组成 线控转向分为…

如何打造不一样的景区文旅VR体验馆项目?

近年来影院类产品迅速火爆&#xff0c;市面上的产品越来越多&#xff0c;投资者可以说是挑花了眼。为了助力投资者实现持续盈利&#xff0c;今天来给大家分析目前普乐蛙大爆新品悬空球幕飞行影院与其他5D/7D影院有哪些区别&#xff0c;给大家的创业投资之路避避雷~ 那我们正式开…

vue26:vue的环境搭建

vue环境安装配置 在点击上方链接前&#xff0c;注意&#xff01;&#xff01;&#xff01;&#xff01;&#xff01;&#xff01;&#xff01;&#xff01; 下方的红字&#xff01;&#xff01;&#xff01;&#xff01;&#xff01;&#xff01;&#xff01;&#xff01;&am…

计算机网络--应用层

计算机网络–计算机网络概念 计算机网络–物理层 计算机网络–数据链路层 计算机网络–网络层 计算机网络–传输层 计算机网络–应用层 1. 概述 因为不同的网络应用之间需要有一个确定的通信规则。 1.1 两种常用的网络应用模型 1.1.1 客户/服务器模型&#xff08;Client/Se…

【产品研发】NPDP价值作用概述

导读&#xff1a;本文结合个人实践和思考对NPDP的价值和作用做了概述说明&#xff0c;对于产品经理而言掌握NPDP的知识体系并且应用到实际工作中&#xff0c;这是非常有必要的。走出以往狭隘的产品研发工作认知&#xff0c;以开放心态学习国际化产品创新开发流程将极大提升产品…

【大学物理】期末复习双语笔记

3 vectors and scalar 20 damped harmonic motion,forced harmonic motion, superposition of SHM damped harmonic motion underdamped motion:欠阻尼 critical damped零界阻尼 over damped过阻尼 energy of damped harmonic motion application of damped oscillation:减震器…

链表翻转,写法和交换类似,但是需要pre cur 还有一个临时变量nxt记录下一个结点

递归反转单链表&#xff08;头插法反转部分链表 要弄pre cur 还有nxt&#xff08;临时变量保存下一个结点 P0指到需要修改的链表的前一个结点 class Solution {public ListNode reverseBetween(ListNode head, int left, int right) {ListNode dummynew ListNode(-1,head);L…

打造智慧校园信息系统,提升学校科技实力

在如今数字化的时代&#xff0c;打造智慧校园信息系统已成为提升学校科技实力的关键。随着科技的迅猛发展&#xff0c;学校需要跟上时代步伐&#xff0c;利用先进技术建设一个高效、智能的信息系统&#xff0c;为学生、教师和管理人员提供更好的学习和工作环境。 智慧校园信息系…

vue27:脚手架详细介绍main.js

在 Vue.js 中&#xff0c;render 函数是一个可选的选项&#xff0c;它允许你自定义组件的渲染逻辑。 如果你没有在 Vue 实例中提供 render 函数&#xff0c;Vue 将使用模板&#xff08;template&#xff09;来生成虚拟 DOM。 以下是render / template 两种方式的比较&#…

力扣hot100:739. 每日温度/54. 螺旋矩阵

文章目录 一、 739. 每日温度二、54. 螺旋矩阵1、模拟螺旋矩阵的路径2、按层模拟 一、 739. 每日温度 LeetCode&#xff1a;739. 每日温度 经典单调栈问题&#xff0c;求下一个更大的数。 使用单调递减栈&#xff0c;一个元素A出栈&#xff0c;当且仅当它第一次出现比它更大…

Linux进程替换 自主shell程序

本篇将要讲解有关进程中最后一个知识点——进程替换&#xff0c;其中主要介绍有关进程替换的六个函数&#xff0c;直接从函数层面来理解进程替换&#xff08;在使用函数的过程中&#xff0c;也会对进行替换进行解释&#xff09;。本篇主要围绕如下的进程替换函数&#xff1a; 以…

QT系列教程(9) 主窗口学习

简介 任何界面应用都有一个主窗口&#xff0c;今天我们谈谈主窗口相关知识。一个主窗口包括菜单栏&#xff0c;工具栏&#xff0c;状态栏&#xff0c;以及中心区域等部分。我们先从菜单栏说起 菜单栏 我们创建一个主窗口应用程序, 在ui文件里的菜单栏里有“在这里输入”的一个…

windows安装conda

1 Conda简介 Conda 是一个开源的软件包管理系统和环境管理系统&#xff0c;用于安装多个版本的软件包及其依赖关系&#xff0c;并在它们之间轻松切换。Conda 是为 Python 程序创建的&#xff0c;适用于 Linux&#xff0c;OS X 和Windows&#xff0c;也可以打包和分发其他软…

mnist的t-SNE二维空间可视化MATLAB

%% filename ‘mnist’; digitDatasetPath fullfile(matlabroot,‘toolbox’,‘nnet’,‘nndemos’, … ‘nndatasets’,‘DigitDataset’); imds imageDatastore(digitDatasetPath, … ‘IncludeSubfolders’,true,‘LabelSource’,‘foldernames’); %% labelCount coun…

【清华大学】《自然语言处理》(刘知远)课程笔记

自然语言处理基础&#xff08;Natural Language Processing Basics, NLP Basics&#xff09; 自然语言处理( Natural Language Processing, NLP)是计算机科学领域与人工智能领域中的一个重要方向。它研究能实现人与计算机之间用自然语言进行有效通信的各种理论和方法。自然语言…

RN:Error: /xxx/android/gradlew exited with non-zero code: 1

问题 执行 yarn android 报错&#xff1a; 解决 这个大概率是缓存问题&#xff0c;我说一下我的解决思路 1、yarn doctor 2、根据黄色字体提示&#xff0c;说我包版本不对&#xff08;但是这个是警告应该没事&#xff0c;但是我还是装了&#xff09; npx expo install --…