2022年第一篇C语言50行代码制作爱心电子相册的代码
立即下载
资源介绍:
2022年第一篇C语言50行代码制作爱心电子相册的代码
#include
#include
#include
#include"mmsystem.h"
#pragma comment(lib,"winmm.lib")
struct Point //位置
{
int x;
int y;
};
IMAGE img[10];//10张照片
void initImgage()
{
char buf[128] = { 0 }; //图片的路径
for (int i = 0; i < 10; i++)
{
sprintf_s(buf, "images\\%d.jpg", i + 1);
loadimage(&img[i], buf, 40, 40);//40x40大小
}
}
void main()
{
initgraph(800, 800);
Point arr[46] = { { 395, 268 },{ 406, 222 },{ 416, 193 },{ 441, 162 },
{ 468, 133 },{ 500, 117 },{ 537, 105 },{ 577, 107 },{ 617, 120 },
{ 649, 146 },{ 666, 173 },{ 680, 211 },{ 683, 247 },{ 680, 293 },
{ 675, 338 },{ 660, 385 },{ 640, 440 },{ 616, 484 },{ 580, 529 },
{ 557, 573 },{ 530, 610 },{ 493, 645 },{ 460, 675 },{ 422, 696 },
{ 381, 676 },{ 350, 654 },{ 320, 626 },{ 292, 606 },{ 257, 570 },
{ 230, 540 },{ 200, 500 },{ 180, 470 },{ 160, 430 },{ 140, 390 },
{ 126, 342 },{ 117, 293 },{ 120, 250 },{ 133, 203 },{ 160, 170 },
{ 200, 140 },{ 240, 130 },{ 280, 135 },{ 312, 146 },{ 340, 170 },
{ 360, 195 },{ 375, 230 } };
initImgage();
mciSendString("open qiqiu.mp3", 0, 0, 0);
mciSendString("play qiqiu.mp3", 0, 0, 0);
int index = 0;
while (1)
{
cleardevice();
for (int i = 0; i < 46; i++)
{
putimage(arr[i].x, arr[i].y, &img[(i + index) % 10]);
putimage(400, 400, 100, 100, &img[(i + index) % 10], -.10, -10);
}
index++;
Sleep(1000);
}
closegraph();
}