鱼C论坛

 找回密码
 立即注册
查看: 2269|回复: 2

为什么我打不开图片1呢

[复制链接]
发表于 2012-4-27 23:17:58 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
这是和鱼C哥一样的源码啊,为什么我运行时会打不开图片呢#include <stdio.h>
#include <stdlib.h>


void main()
{
        FILE *f_pic,*f_file,*f_finish;
        char ch,pic_name[20],file_name[20],finish_name[20];
       
        printf("请输入需要合成的图片和文件的名称: \n");
        printf("图片:");
        scanf("%s",pic_name);
        printf("文件:");
        scanf("%s",file_name);
        printf("生成为:");
        scanf("%s",finish_name);
       
        if (!(f_pic=fopen(pic_name,"rb")))
        {
                printf("Cannot open the picture %s !\n",pic_name);
                return;
        }
        if (!(f_file=fopen(file_name,"rb")))
        {
                printf("Cannot open the picture %s !\n",file_name);
                return;
        }
        if (!(f_finish=fopen(finish_name,"wb")))
        {
                printf("Cannot open the picture %s !\n",finish_name);
                return;
        }
       
       
        while (!(feof(f_pic)))
        {
                ch =fgetc(f_pic);
                fputc(ch,f_finish);
        }
        fclose(f_pic);
       
        while (!(feof(f_file)))
        {
                ch =fgetc(f_file);
                fputc(ch,f_finish);
        }
        fclose(f_file);
        fclose(f_finish);
       
        system("pause");
       
}
小甲鱼最新课程 -> https://ilovefishc.com
发表于 2012-4-28 07:42:57 | 显示全部楼层
程序没问题。是不是没把jpg文件和rar文件放在程序的同一目录下。
小甲鱼最新课程 -> https://ilovefishc.com
发表于 2012-4-28 09:10:11 | 显示全部楼层
用getlasterror看返回的啥
小甲鱼最新课程 -> https://ilovefishc.com
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-11-13 02:48

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表