码迷,mamicode.com
首页 > 编程语言 > 详细

c/c++ 读取图片容量大小

时间:2017-11-24 15:02:47      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:col   pat   math   pen   clu   .net   bsp   ==   char*   

//http://blog.csdn.net/lijia11080117/article/details/42042301?locationNum=10
#include "stdafx.h" #include<stdio.h> #include<stdlib.h> #include<Windows.h> #include<math.h> int _tmain(int argc, _TCHAR* argv[]) { FILE *fp; long siz; char path[100]="E://1.jpg"; //图片地址,我的图片放在E盘根目录 if((fp=fopen(path,"rb"))==NULL) { printf("不能打开该地址文件,请检查\n"); getchar(); return 0; } if (fp) { fseek(fp, 0, SEEK_END); siz = ftell(fp); fclose(fp); } siz/=1024.0; printf("该图片大小为 %ld kb\n",siz); getchar(); return 0; }

 

c/c++ 读取图片容量大小

标签:col   pat   math   pen   clu   .net   bsp   ==   char*   

原文地址:http://www.cnblogs.com/gaohai/p/7890354.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!