Location:
Search - BMP w
Search list
Description: 一个基于C语言的五子棋程序
five.c为c语言源程序,pic.bmp,win.bmp,lose.bmp为150×330的16色位图文件
five.exe为已将位图加入到代码中的游戏程序,可以单独运行。
程序还有一些bug,有兴趣的话可以自己改源程序。
二维数组w中保存的是权值表,你可以增加或更改它。
Platform: |
Size: 46971 |
Author: 刘领 |
Hits:
Description: 一个基于C语言的五子棋程序
five.c为c语言源程序,pic.bmp,win.bmp,lose.bmp为150×330的16色位图文件
five.exe为已将位图加入到代码中的游戏程序,可以单独运行。
程序还有一些bug,有兴趣的话可以自己改源程序。
二维数组w中保存的是权值表,你可以增加或更改它。-Based on C language five.c Gobang procedure for c language source code, pic.bmp, win.bmp, lose.bmp for 150 × 330 16-color bitmap file bitmap five.exe to have added to the code game procedures, can be run separately. Procedures there are still some bug, are interested in having their own source code change. Two-dimensional array w is stored in the weights table, you can increase or change it.
Platform: |
Size: 47104 |
Author: 刘领 |
Hits:
Description: 全新开发的雷达图组件--wfRadar,使用简单,功能强大,图像处理效果极佳。
组件支持多种图片格式,包括bmp,jpg,gif,wmf,emf,ico,png,pcx,tif,tga,pcx,dcx等。
组件提供两种输出接口,包括保存,直接显示(您再也不用定时清理那些临时的垃圾图片)。
组件可设置背景,可设置渐变,可雷达数字格式化,自动多值处理等。
组件采用多种图片输出格式(包括jpg,gif,bmp,png),可自定义图像质量,适合不同网络速度和图像质量要求。
采用了标准的Com组件方式,只需服务器端注册即可,而再也不用担心客户机是否支持。
本组件经过多种平台环境负荷压力测试,运行稳定、速度快、资源占用低。
Platform: |
Size: 3188736 |
Author: lee |
Hits:
Description: 西北工业大学程序设计大赛作品
拿出来与大家分享
程序说明
名称:tank
编译环境:win-tc
tank.bmp tank.c EGAVGA.bgi要放在同一目录
按键:player1 : 上 Up 下 Down 左 Left 右 Right 攻击 0
player2: 上 W 下 S 左 A 右 D 攻击 SPACE
不足:游戏中没有制作攻击效果,只做攻击是否命中的判断。
如果一方按键不放,无法响应另一人的按键。
两个tank如果相撞,会抹去一方的图象。 -Northwestern Polytechnical University Programming Competition works out to share with you the description of the procedures for the name: tank compiler environment: win-tc tank.bmp tank.c EGAVGA.bgi to keys on the same directory: player1: on Up next Left Right Right Left Down attack 0 player2: on W under S Left A Right D attack less than SPACE: the game did not effect the production of attack, and they should only attack if hit judgments. If one button without letting go, and unable to respond to another person s key. If the collision of two tank will be wiped off the side of the image.
Platform: |
Size: 30720 |
Author: 王赫 |
Hits:
Description: 用windows画笔生成BMP文件f(x,y),图象宽为W,高为H,编写程序读取BMP文件,并生成新的图象g(x,y)。以BMP文件格式输出该图象。-Windows paintbrush used to generate BMP file f (x, y), image width W, height H, the preparation process to read BMP files, and generate new images g (x, y). BMP file format to the output of the image.
Platform: |
Size: 3245056 |
Author: 赵晓霞 |
Hits:
Description: 将BMP转换成WMV视频文件的源代码,值得一看-BMP converted to WMV video file of the source code, see
Platform: |
Size: 63488 |
Author: san |
Hits:
Description: It makes program EP2.CPP in C/C++ that, given an image in levels of gray m? .tga with letters H, V, W, X (arial boldface, different rotations and scales), creates binarizada image b? .bmp e, after that, creates colorful image c? .jpg painting each letter of a color. For example, executing the command below, we must get the images b1.bmp and c1.jpg.
Platform: |
Size: 827392 |
Author: Rodrigo |
Hits:
Description: 图片与剪切板的操作,包括bmp,jpg,wmf,emf等格式-operation on picture and clipboard,including bmp,jpg,wmf,emf etc.
Platform: |
Size: 12288 |
Author: zhangjt |
Hits:
Description: 一个实现bmp格式图片转换为raw纯数据格式的C++程序,经调试通过,使用时修改程序中H、W为自己图片的高和宽即可-Bmp format image of a realization of pure raw data format is converted to the C++ program by debugging through the use of modified procedures when H, W for his picture of the height and width can be
Platform: |
Size: 340992 |
Author: qinfenging |
Hits:
Description: 屏幕截图并且保存文件,在VC6.0,利用快捷键ctrl+w 对屏幕截图 并且存成32bit的bmp文件-Save Screen to a file!
Platform: |
Size: 1509376 |
Author: xushanfeng |
Hits:
Description: Public Sub DibGet(ByVal IdSource As Long, XBegin As Long, ByVal YBegin As Long, ByVal XEnd As Long, ByVal YEnd As Long)
Dim iBitmap As Long
Dim iDC As Long
Dim I As Long
Dim W As Long
Dim H As Long
On Error GoTo ErrLine
Done = False
TimeGet = timeGetTime
InPutWid = XEnd - XBegin
InPutHei = YEnd - YBegin
W = InPutWid + 1
H = InPutHei + 1
I = (Bits \ 8) - 1
ReDim ColVal(I, InPutWid, InPutHei)
With bi24BitInfo.bmiHeader
.biBitCount = Bits
.biCompression = 0&
.biPlanes = 1
.biSize = Len(bi24BitInfo.bmiHeader)
.biWidth = W
.biHeight = H
End With
iBitmap = GetCurrentObject(IdSource, 7&)
GetDIBits IdSource, iBitmap, 0&, H, ColVal(0, 0, 0), bi24BitInfo, 0&
DeleteObject iBitmap
Done = True
TimeGet = timeGetTime - TimeGet
Exit Sub
ErrLine:
MsgBox "错误号: " & Err.Number & ": " & Err.Description
End Sub(The RGB value of a pixel is displayed, and the high hand continues)
Platform: |
Size: 2048 |
Author: GSO625 |
Hits: