滚动照片抽奖软件

CODE

GitHub 源码

1、女友说很丑的一个软件

说个最近的事情,女友公司过年了要搞活动,需要个抽奖的环节,当时就问我能不能给做一个,正好我也没啥事儿,就在周末的时候用C#做了一个,虽然派上用场了,不过被说丑也是挺无语的……

2、丑也要说

虽然心里想的这个软件很简单,但是真正编程也花了5个小时,主要在怎样做好看上犹豫的太久,后来索性全都做成可以配置的了,也真是绝了……

3、程序主界面

先把软件界面放出来:

主界面
主界面

抽中某某某的样子
抽中某某某的样子

使用帮助
使用帮助

根本也没用什么随机之类的算法,直接用的是Timer控件,噼里啪啦一顿循环,按 “空格” 或者 “回车” 都可以 “开始/暂停”,简单暴力。抽中后,可以把抽中的人删除掉,双击照片,或者直接按键盘 “DEL”(随意大小写)就可以删掉这个人了,下次就不会重复出现了……当然,可以重置所有的列表,跟着使用帮助就可以了。

4、配置文件

界面控件位置(控件在运行期间是可以移动的,自动保存移动位置)
界面控件位置(控件在运行期间是可以移动的,自动保存移动位置)

软件配置
软件配置

配置文件的详细解释:

[Strings]
FormName=这真的是一个抽奖软件 '窗口名'
Title=这真的是一个抽奖软件 '标题文本'
[Color]
MottoText=#ffffff '段落文本的颜色'
TitleText=#ffffff '标题的颜色'
[FontStyle]
Motto=华文楷体 '段落文本的字体'
Title=华文楷体 '标题的字体'
[FontSize]
Title=20 '标题的字号'
Motto=12 '段落文本的字号'
[FormSize]
MainFormWidth=1000 '窗口宽'
MainFormHeight=600 '窗口高'
[Interval]
Rolling=50 '图片滚动间隔:毫秒'

5、主界面上的图片也是可以修改的

主界面图片源
主界面图片源

目录Images文件夹中的图片,是主界面显示的:背景、Logo以及空闲状态的照片,可以修改成自己想要的样子。

6、至于如何把照片放到程序里

想要滚动的照片,放到Box文件夹中,如果有文本要显示,取和图片相同文件名,后缀为.txt就可以了:

要滚动的照片放在这里
要滚动的照片放在这里

对于一些大图片来说,动辄就是几M,也并不能让用户来压缩成小图片,所以我就自行处理成缩略图了,以免在程序中加载图片太大造成的卡顿,当然对于这个文件夹的操作 “什么都不用管,什么都不用管,什么都不用管”:

图片的缩略图处理
图片的缩略图处理

7、关于绘图过程的双缓冲

在拖动控件的时候或者绘图的过程中,会有些闪动的情况发生,需要在窗体构造的时候开启双缓冲即可:

            SetStyle(ControlStyles.UserPaint, true);SetStyle(ControlStyles.AllPaintingInWmPaint, true); // 禁止擦除背景.  SetStyle(ControlStyles.DoubleBuffer, true); // 双缓冲 

8、关于缩略图的生成

之前忘了是从哪里收集的一个图片处理的工具类:

    public class ImageHelper{/// <summary> /// 生成缩略图 /// </summary> /// <param name="originalImagePath">源图路径(物理路径)</param> /// <param name="thumbnailPath">缩略图路径(物理路径)</param> /// <param name="width">缩略图宽度</param> /// <param name="height">缩略图高度</param> /// <param name="mode">生成缩略图的方式</param>     public static bool MakeThumbnail(string originalImagePath, string thumbnailPath, int width, int height, string mode){Image originalImage = Image.FromFile(originalImagePath);int towidth = width;int toheight = height;int x = 0;int y = 0;int ow = originalImage.Width;int oh = originalImage.Height;switch (mode){case "HW"://指定高宽缩放(可能变形)                 break;case "W"://指定宽,高按比例                     toheight = originalImage.Height * width / originalImage.Width;break;case "H"://指定高,宽按比例 towidth = originalImage.Width * height / originalImage.Height;break;case "Cut"://指定高宽裁减(不变形)                 if ((double)originalImage.Width / (double)originalImage.Height > (double)towidth / (double)toheight){oh = originalImage.Height;ow = originalImage.Height * towidth / toheight;y = 0;x = (originalImage.Width - ow) / 2;}else{ow = originalImage.Width;oh = originalImage.Width * height / towidth;x = 0;y = (originalImage.Height - oh) / 2;}break;default:break;}//新建一个bmp图片 Image bitmap = new System.Drawing.Bitmap(towidth, toheight);//新建一个画板 Graphics g = System.Drawing.Graphics.FromImage(bitmap);//设置高质量插值法 g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.High;//设置高质量,低速度呈现平滑程度 g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;//清空画布并以透明背景色填充 g.Clear(Color.Transparent);//在指定位置并且按指定大小绘制原图片的指定部分 g.DrawImage(originalImage, new Rectangle(0, 0, towidth, toheight),new Rectangle(x, y, ow, oh),GraphicsUnit.Pixel);try{//以jpg格式保存缩略图 bitmap.Save(thumbnailPath, System.Drawing.Imaging.ImageFormat.Jpeg);return true;}catch (System.Exception e){return false;//throw e;}finally{originalImage.Dispose();bitmap.Dispose();g.Dispose();}}/// <summary>/// 逆时针旋转图像/// </summary>/// <param name="originalImagePath">原始图像路径</param>/// <param name="saveImagePath">保存图像的路径</param>/// <param name = "angle" > 旋转角度[0, 360](前台给的) </ param >/// <returns></returns>public static bool RotateImg(string originalImagePath, string saveImagePath, int angle){Image originalImage = Image.FromFile(originalImagePath);angle = angle % 360;//弧度转换  double radian = angle * Math.PI / 180.0;double cos = Math.Cos(radian);double sin = Math.Sin(radian);//原图的宽和高  int w = originalImage.Width;int h = originalImage.Height;int W = (int)(Math.Max(Math.Abs(w * cos - h * sin), Math.Abs(w * cos + h * sin)));int H = (int)(Math.Max(Math.Abs(w * sin - h * cos), Math.Abs(w * sin + h * cos)));//目标位图  Bitmap saveImage = new Bitmap(W, H);Graphics g = Graphics.FromImage(saveImage);g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.Bilinear;g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;//计算偏移量  Point Offset = new Point((W - w) / 2, (H - h) / 2);//构造图像显示区域:让图像的中心与窗口的中心点一致  Rectangle rect = new Rectangle(Offset.X, Offset.Y, w, h);Point center = new Point(rect.X + rect.Width / 2, rect.Y + rect.Height / 2);g.TranslateTransform(center.X, center.Y);g.RotateTransform(360 - angle);//恢复图像在水平和垂直方向的平移  g.TranslateTransform(-center.X, -center.Y);g.DrawImage(originalImage, rect);//重至绘图的所有变换  g.ResetTransform();g.Save();//保存旋转后的图片  originalImage.Dispose();try{saveImage.Save(saveImagePath, System.Drawing.Imaging.ImageFormat.Jpeg);return true;}catch (Exception e) { return false; }finally{originalImage.Dispose();saveImage.Dispose();g.Dispose();}}}

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

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

相关文章

Java即时类| 带示例的compareTo()方法

即时类compareTo()方法 (Instant Class compareTo() method) compareTo() method is available in java.time package. compareTo()方法在java.time包中可用。 compareTo() method is used to compare this Instant object to the given object. compareTo()方法用于将此Instan…

11个小技巧,玩转Spring!

前言最近有些读者私信我说希望后面多分享spring方面的文章&#xff0c;这样能够在实际工作中派上用场。正好我对spring源码有过一定的研究&#xff0c;并结合我这几年实际的工作经验&#xff0c;把spring中我认为不错的知识点总结一下&#xff0c;希望对您有所帮助。一 如何获取…

MFC中的几种播放声音的方法

一&#xff0e;播放声音文件的简单方法  在VC 中的多媒体动态连接库中提供了一组与音频设备有关的函数。利用这些函数可以方便地播放声音。最简单的播放声音方法就是直接调用VC中提供的声音播放函 数BOOL sndPlaySound ( LPCSTR lpszSound,UINT fuSound ); 或BOOL PlaySound(…

标志枚举的使用

标志枚举的使用大多是在标记多重状态&#xff0c;比如说文件的属性&#xff1a;只读&#xff0c;可写&#xff0c;隐藏&#xff0c;系统文件等相关属性&#xff0c;都对应相应的标志位&#xff0c;如果在C#中想实现自己的标志枚举&#xff0c;也是可以的&#xff0c;下文是亲身…

duration java_Java Duration类| 带示例的getUnits()方法

duration java持续时间类getUnits()方法 (Duration Class getUnits() method) getUnits() method is available in java.time package. getUnits()方法在java.time包中可用。 getUnits() method is used to get the List object that contains the units of seconds and Nanos …

synchronized 的超多干货!

synchronized 这个关键字的重要性不言而喻&#xff0c;几乎可以说是并发、多线程必须会问到的关键字了。synchronized 会涉及到锁、升级降级操作、锁的撤销、对象头等。所以理解 synchronized 非常重要&#xff0c;本篇文章就带你从 synchronized 的基本用法、再到 synchronize…

团队项目—第二阶段第三天

昨天&#xff1a;快捷键的设置已经实现了 今天&#xff1a;协助成员实现特色功能之一 问题&#xff1a;技术上遇到了困难&#xff0c;特色功能一直没太大的进展。网上相关资料不是那么多&#xff0c;我们无从下手。 有图有真相&#xff1a; 转载于:https://www.cnblogs.com/JJJ…

C# struct 装箱拆箱例子

值类型&#xff1a;拆箱、装箱 struct是值类型 struct和class的区别 类是引用类型&#xff0c;struct是值类型在托管堆上创建类的实例&#xff0c;在栈上创建struct实例类实例的赋值&#xff0c;赋的是引用地址&#xff0c;struct实例的赋值&#xff0c;赋的是值类作为参数类…

stl min函数_std :: min_element()函数以及C ++ STL中的示例

stl min函数C STL std :: min_element()函数 (C STL std::min_element() function) min_element() function is a library function of algorithm header, it is used to find the smallest element from the range, it accepts a container range [start, end] and returns a…

不重启JVM,替换掉已经加载的类,偷天换日?

来源 | 美团技术博客在遥远的希艾斯星球爪哇国塞沃城中&#xff0c;两名年轻的程序员正在为一件事情苦恼&#xff0c;程序出问题了&#xff0c;一时看不出问题出在哪里&#xff0c;于是有了以下对话&#xff1a;“Debug一下吧。”“线上机器&#xff0c;没开Debug端口。”“看日…

[nodejs] 利用openshift 撰寫應用喔

2019独角兽企业重金招聘Python工程师标准>>> 朋友某一天告訴我,可以利用openshift來架站,因為他架了幾個nodejs應用放在上面,我也來利用這個平台架看看,似乎因為英文不太行,搞很久啊!! 先來架一個看看,不過架好之後,可以有三個應用,每個應用有1G的空間,用完就沒啦~~…

C#单例模式的简单使用

单例模式示例&#xff1a; public sealed class WindowService {//定义一个私有的静态全局变量来保存该类的唯一实例private static WindowService Service;//定义一个只读静态对象//且这个对象是在程序运行时创建的private static readonly object syncObject new object();…

stl max函数_std :: max_element()函数以及C ++ STL中的示例

stl max函数C STL std :: max_element()函数 (C STL std::max_element() function) max_element() function is a library function of algorithm header, it is used to find the largest element from the range, it accepts a container range [start, end] and returns an…

详解4种经典的限流算法

最近&#xff0c;我们的业务系统引入了Guava的RateLimiter限流组件&#xff0c;它是基于令牌桶算法实现的,而令牌桶是非常经典的限流算法。本文将跟大家一起学习几种经典的限流算法。限流是什么?维基百科的概念如下&#xff1a;In computer networks, rate limiting is used t…

css clearfix_如何使用CSS清除浮点数(clearfix)?

css clearfixIntroduction: 介绍&#xff1a; Dealing with various elements on a website or web page can sometimes prove to create many problems hence one should be aware of many properties, tricks or ways to cope with those problems. We do not want our webs…

C# 写入注册表启动项

C# 写入注册表启动项 private void RegisterSelfKey() {try{string strName Application.ExecutablePath;if (!File.Exists(strName))return;string strnewName strName.Substring(strName.LastIndexOf("\\") 1);RegistryKey RKey Registry.LocalMachine.OpenSu…

将你的Windows,快速打造成Docker工作站!

手里的macbook因为键盘问题返厂维修了&#xff0c;只好抱起了久违的Windows。首先面临的&#xff0c;就是Docker问题。docker好用&#xff0c;但安装麻烦&#xff0c;用起来也命令繁多。一个小白&#xff0c;如何打造舒适的docker环境&#xff0c;是一个非常有挑战的问题。本文…

HTML5游戏引擎Egret发布2.0版 开发工具亦获更新

5月22日在北京国际会议中心举办的HTML5游戏生态大会上&#xff0c;白鹭时代旗下游戏引擎Egret Engine发布2.0版&#xff0c;同时还发布了Flash转换HTML5工具Egret Conversion、HTML5游戏加速Egret Runtime 2.0、GUI可视化编辑器Egret Wing 2.0、骨骼动画工具DragonBones4.0、富…

DES和AES加密:指定键的大小对于此算法无效

“System.ArgumentException”类型的未经处理的异常在 mscorlib.dll 中发生 其他信息: 指定键的大小对于此算法无效。 在看DES和AES加密的时候&#xff0c;找了个加密的Demo&#xff0c;自己试验的时候总是报&#xff1a;指定键的大小对于此算法无效 的错误。 原因为&#xf…

软件测试 测试策略_测试策略| 软件工程

软件测试 测试策略Testing is a process of checking any software for its correctness. Various strategies are followed by the testers while checking for the bugs and errors in the software. Let us have a look at these strategies: 测试是检查任何软件的正确性的过…