在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → C#初学必看的黄金实例程序100个

C#初学必看的黄金实例程序100个

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:3.56M
  • 下载次数:109
  • 浏览次数:693
  • 发布时间:2021-02-18
  • 实例类别:C#语言基础
  • 发 布 人:1079046100
  • 文件格式:.rar
  • 所需积分:5

实例介绍

【实例简介】

C#初学必看的黄金实例程序100个,压缩包中有100个文件夹,包含100个实例,带有源码。包含各种小游戏、各种控件使用Demo,对初学者非常有帮助!

【实例截图】

from clipboard

from clipboard

from clipboard

from clipboard


from clipboard

from clipboard

from clipboard

【核心代码】


using System;
using System.Drawing;
using System.Drawing.Imaging;
using System.Windows.Forms;

namespace GraphicsCopyright
{
	/// <summary>
	/// Summary description for Form1.
	/// </summary>
	public class Form1 : System.Windows.Forms.Form
	{
		Image originalimage;
		
		private System.Windows.Forms.OpenFileDialog openFileDialog1;
		private System.Windows.Forms.PictureBox pictureBox1;
		private System.Windows.Forms.GroupBox groupBox1;
        private System.Windows.Forms.Button btnAddCopyright;
        private System.Windows.Forms.Button btnOpenFile;
		/// <summary>
		/// Required designer variable.
		/// </summary>
		private System.ComponentModel.Container components = null;

		public Form1()
		{
			//
			// Required for Windows Form Designer support
			//
			InitializeComponent();

			//
			// TODO: Add any constructor code after InitializeComponent call
			//
		}

		/// <summary>
		/// Clean up any resources being used.
		/// </summary>
		protected override void Dispose( bool disposing )
		{
			if( disposing )
			{
				if (components != null) 
				{
					components.Dispose();
				}
			}
			base.Dispose( disposing );
		}

		#region Windows Form Designer generated code
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
            this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
            this.btnAddCopyright = new System.Windows.Forms.Button();
            this.btnOpenFile = new System.Windows.Forms.Button();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.SuspendLayout();
            // 
            // btnAddCopyright
            // 
            this.btnAddCopyright.Enabled = false;
            this.btnAddCopyright.Location = new System.Drawing.Point(216, 240);
            this.btnAddCopyright.Name = "btnAddCopyright";
            this.btnAddCopyright.Size = new System.Drawing.Size(164, 37);
            this.btnAddCopyright.TabIndex = 0;
            this.btnAddCopyright.Text = "添加版权信息";
            this.btnAddCopyright.Click  = new System.EventHandler(this.btnAddCopyright_Click);
            // 
            // btnOpenFile
            // 
            this.btnOpenFile.Location = new System.Drawing.Point(32, 240);
            this.btnOpenFile.Name = "btnOpenFile";
            this.btnOpenFile.Size = new System.Drawing.Size(164, 37);
            this.btnOpenFile.TabIndex = 0;
            this.btnOpenFile.Text = "打开图像文件";
            this.btnOpenFile.Click  = new System.EventHandler(this.btnOpenFile_Click);
            // 
            // pictureBox1
            // 
            this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.pictureBox1.Location = new System.Drawing.Point(8, 0);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(400, 224);
            this.pictureBox1.TabIndex = 0;
            this.pictureBox1.TabStop = false;
            // 
            // groupBox1
            // 
            this.groupBox1.Location = new System.Drawing.Point(24, 224);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(368, 64);
            this.groupBox1.TabIndex = 1;
            this.groupBox1.TabStop = false;
            // 
            // Form1
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
            this.ClientSize = new System.Drawing.Size(416, 301);
            this.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                          this.pictureBox1,
                                                                          this.btnAddCopyright,
                                                                          this.btnOpenFile,
                                                                          this.groupBox1});
            this.Name = "Form1";
            this.Text = "给图像添加版权信息";
            this.ResumeLayout(false);

        }
		#endregion

		/// <summary>
		/// The main entry point for the application.
		/// </summary>
		[STAThread]
		static void Main() 
		{
			Application.Run(new Form1());
		}

        private void btnOpenFile_Click(object sender, System.EventArgs e)
        {
            //Stream myStream;
            OpenFileDialog openFileDialog1 = new OpenFileDialog();

            openFileDialog1.InitialDirectory = "c:\\" ;
            openFileDialog1.Filter= "All files (*.*)|*.*";
            openFileDialog1.FilterIndex = 2 ;
            openFileDialog1.RestoreDirectory = true ;

            if(openFileDialog1.ShowDialog() == DialogResult.OK)
            {
                originalimage = System.Drawing.Image.FromFile(openFileDialog1.FileName.ToString());
                Image ithumbnail = originalimage.GetThumbnailImage(200, 200, null, new IntPtr());
                pictureBox1.Image=ithumbnail;
                btnAddCopyright.Enabled = true;
            }
        }

        private void btnAddCopyright_Click(object sender, System.EventArgs e)
        {
            int imagewidth;
            int imageheight;
            int fontsize=300;
            int x,y;
            int a,re,gr,bl,x1,y1,z1;
            int size;
            Bitmap pattern;
            SizeF sizeofstring;
            bool foundfont;		
            imagewidth=originalimage.Width;
            imageheight=originalimage.Height;
            size=imagewidth*imageheight;
            pattern = new Bitmap(imagewidth,imageheight);
            Bitmap temp = new Bitmap(originalimage);
            Graphics g = Graphics.FromImage(pattern);
            Graphics tempg =Graphics.FromImage(originalimage);
            //find a font size that will fit in the bitmap
            foundfont=false;
            g.Clear(Color.White);
            while(foundfont==false)
            {
                Font fc = new Font("Georgia", fontsize, System.Drawing.FontStyle.Bold);
				
                sizeofstring=new SizeF(imagewidth,imageheight);
                sizeofstring=g.MeasureString("DOTNET",fc);
                if (sizeofstring.Width<pattern.Width)
                {
                    if (sizeofstring.Height<pattern.Height)
                    {
                        foundfont=true;
                        g.DrawString("DOTNET", fc, new SolidBrush(Color.Black),1,1);
                    }

                }
                else
                    fontsize=fontsize-1;			
            }
            MessageBox.Show("已创建新文件","给图像添加版权信息");
            for(x=1;x<pattern.Width;x  )
            {
                for(y=1;y<pattern.Height;y  )//
                {
                    if (pattern.GetPixel(x,y).ToArgb()==Color.Black.ToArgb())
                    {
                        a=temp.GetPixel(x,y).A;
                        re=temp.GetPixel(x,y).R;
                        gr=temp.GetPixel(x,y).G;
                        bl=temp.GetPixel(x,y).B;
												
                        x1=re;
                        y1=gr;
                        z1=bl;						
						
                        if (bl 25<255)
                            bl=bl 25;					
                        if (gr 25<255)
                            gr=gr 25;						
                        if (re 25<255)
                            re=re 25;
                        if (x1-25>0)
                            x1=x1-25;					
                        if (y1-25>0)
                            y1=y1-25;						
                        if (z1-25>0)
                            z1=z1-25;			
						
                        tempg.DrawEllipse(new Pen(new SolidBrush(Color.Black)),x,y 1,3,3);
                        tempg.DrawEllipse(new Pen(new SolidBrush(Color.FromArgb(a,x1,y1,z1))),x,y,1,1);
                    }				
                }		
            }
            MessageBox.Show("输出文件是c:\\output.jpeg","给图像添加版权信息");
            tempg.Save();
            originalimage.Save("c:\\output.jpeg",ImageFormat.Jpeg);
        }
	}
}


实例下载地址

C#初学必看的黄金实例程序100个

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警