SDL显示内存中的图像

<textareareadonly="readonly"name="code"class="c++">
#include <stdio.h>
#include "SDL/SDL.h"
#include "SDL/SDL_image.h"

void ShowPic(unsigned char *buf, int size, SDL_Surface *screen, int x, int y)
{
    SDL_RWops *src;
    SDL_Surface *image;
    SDL_Rect dest;

    src = SDL_RWFromMem(buf, size);

    /* 将BMP文件加载到一个surface*/
    image = IMG_Load_RW(src, 1);
    if ( image == NULL )
    {
        fprintf(stderr, "无法加载 %s\n", SDL_GetError());
        return;
    }

    /* Blit到屏幕surface。onto the screen surface.
       这时不能锁住surface。
     */
    dest.x = x;
    dest.y = y;
    dest.w = image->w;
    dest.h = image->h;
    SDL_BlitSurface(image, NULL, screen, &dest);

    /* 刷新屏幕的变化部分 */
    SDL_UpdateRects(screen, 1, &dest);
}


int main(int argc, char *argv[])
{
    unsigned char *buf;
    FILE *fp;
    int size, i;

    if (argc != 2)
    {
        fprintf(stderr, "Usage:%s file_name\n", argv[0]);
        exit(1);

    }

    if (SDL_Init(SDL_INIT_AUDIO|SDL_INIT_VIDEO) < 0)
	{
        fprintf(stderr, "无法初始化SDL: %s\n", SDL_GetError());
        exit(1);
    }
    atexit(SDL_Quit);

	SDL_Surface *screen;

    screen = SDL_SetVideoMode(640, 480, 16, SDL_SWSURFACE);
    if (screen == NULL)
	{
        fprintf(stderr, "无法设置640x480的视频模式:%s\n", SDL_GetError());
        exit(1);
    }

    fp = fopen(argv[1], "r");
    if (fp == NULL)
    {
        perror("fopen");
        exit(1);
    }

    fseek(fp, 0L, SEEK_END);  
    size = ftell(fp);
    printf("file size:%d\n", size);
    rewind(fp);

    buf = malloc(size);
    if (buf == NULL)
    {
        perror("malloc");
        exit(1);
    }
    memset(buf, 0, size);

    i = fread(buf, size, 1, fp);
    if (i < 0)
    {
        perror("fread");
        exit(1);
    }
    fclose(fp);

    printf("read:%d\n", i);

#if 0
    for (i = 0; i < 100; i++)
    {
        if (i % 10 == 0)
            printf("\n");
        printf("%02X ", buf[i]);
    }
    printf("\n");
#endif
	ShowPic(buf, size, screen, 0, 0);

	printf("please enter Enter to exit....");
	getchar();

	return 0;
}


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值