-
DotRas EnablingDiagnosticLogging示例源码
DotRas EnablingDiagnosticLogging示例源码
- 2014-03-17下载
- 积分:1
-
控制进程的一个例子
控制进程的一个例子-control an example of the process
- 2022-08-25 02:51:22下载
- 积分:1
-
MY_FILE
spi总线SD卡驱动,stm32芯片用,够20字节了吧(Spi bus SD card driver, stm32 chip, enough 20 bytes.)
- 2018-03-13 17:44:16下载
- 积分:1
-
Delphi中向TDBGrid添加组件是一件十分麻烦的事情。笔者在这里向大家介绍一种利用WIN32 API函数在TDBGRID中嵌入CHECKBOX组件的方法。...
Delphi中向TDBGrid添加组件是一件十分麻烦的事情。笔者在这里向大家介绍一种利用WIN32 API函数在TDBGRID中嵌入CHECKBOX组件的方法。-Delphi to add components to the TDBGrid is a very troublesome thing. I here to tell you about a using WIN32 API function in TDBGRID embedded CHECKBOX components.
- 2022-06-13 09:28:59下载
- 积分:1
-
使用WebBrowser控件实现的三国风云web游戏的自动推荐名将的辅助工具。...
使用WebBrowser控件实现的三国风云web游戏的自动推荐名将的辅助工具。-WebBrowser control to achieve use of the Three Kingdoms games Fengyun automatic web tool" s recommendation.
- 2022-01-25 22:21:33下载
- 积分:1
-
mcg
基于IAR开发环境,野火PLL 配置文件,包含C和H文件(Based on IAR development environment, wildfire PLL configuration file, including C and H files)
- 2020-06-16 21:00:02下载
- 积分:1
-
六自由度并联机器人控制界面开发
该软件主要包含运动学逆解、点位运动、直线插补、图形绘制、示教再现、机器人复位、机器人急停、回停机位等模块。“运动学逆解”的主要功能是对运动范围内的任意两点的位资进行运动学逆解,来算出两点对应的各个电机位置,并算出各个电机需要移动的脉冲数。
- 2022-08-10 21:54:12下载
- 积分:1
-
aw9136驱动代码
aw9136驱动程序实现,包括硬件gpio配置,模拟I2C通信借口的实现,输入键值上报,中断处理等./**************************************************************************
* AW9136_ts_3button.c
*
* Create Date :
*
* Modify Date :
*
* Create by : AWINIC Technology CO., LTD
*
* Version : 1.0 , 2014/06/27
* 2.0 , 2014/06/27
* 2.1 , 2014/07/01
* 2.2 , 2014/07/02
*
**************************************************************************/
//////////////////////////////////////////////////////////////
//
// APPLICATION DEFINE :
//
// Mobile - MENU HOME &nb
- 2023-03-23 20:40:04下载
- 积分:1
-
sidianchafen
使用五点差分格式计算一个微分方程在边值问题上的解(The use of a five-point difference scheme for the calculation of a differential equation in the solution of boundary value problems)
- 2008-06-09 22:48:58下载
- 积分:1
-
C#在图片格式转换时设置JPEG压缩级别的实现源码
C#在转换图像格式时设置JPEG压缩级别,运行程序在窗口上单击按钮后,会生成多个版本不同压缩级别的图片,图片大小字节都不一样,如下代码是实现本功能的核心代码:
Bitmap MyBitmap = new Bitmap(@"J001.jpg");
ImageCodecInfo MyDecoder = null;
ImageCodecInfo[] MyDecoders = ImageCodecInfo.GetImageDecoders();
foreach (ImageCodecInfo MyFormat in MyDecoders)
{
if (MyFormat.FormatID == ImageFormat.Jpeg.Guid)
{
MyDecoder = MyFormat;
}
}
System.Drawing.Imaging.Encoder MyEncoder =
System.Drawing.Imaging.Encoder.Quality;
EncoderParameters MyEncoderParameters = new EncoderParameters(1);
//以50中级压缩图像
EncoderParameter MyEncoderParameter = new EncoderParameter(MyEncoder, 50L);
MyEncoderParameters.Param[0] = MyEncoderParameter;
MyBitmap.Save("J50L.jpg", MyDecoder, MyEncoderParameters);
//以100高级压缩图像
MyEncoderParameter = new EncoderParameter(MyEncoder, 100L);
MyEncoderParameters.Param[0] = MyEncoderParameter;
MyBitmap.Save("J99L.jpg", MyDecoder, MyEncoderParameters);
//以0低级压缩图像
MyEncoderParameter = new Enc
- 2022-05-18 00:19:47下载
- 积分:1