栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

C++实现读取图片长度和宽度

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

C++实现读取图片长度和宽度

看到一个用ASP写的读取图片文件的长度、宽度的程序,感觉有点意思,于是用C++也写了一个。

#include 
#include 
#include 

using namespace std;

class CImage
{
private:
  long  m_Width;
  long  m_Height;
  
  int get_extension(string fname);
public:
  CImage()
  {
    m_Width = 0;
    m_Height = 0;
    
  };
  void LoadImage(char* fname);
  
  long get_width()
  {
    return m_Width;
  };
  
  long get_height()
  {
    return m_Height;
  };  
  
};

int  CImage::get_extension(string fname)
{    
  char c = fname.at(fname.length()-1);
  char c2 = fname.at(fname.length()-3);
  
  if ((c == 'f') && (c2 == 'g')){  // file extension name is gif 
    return 1;
  }else if ((c == 'g') && (c2 == 'j')){ // file extension name is jpg
    return 2;
  }else if ((c == 'g') && (c2 == 'p')){ // file extension name is png
    return 3;
  }else if ((c == 'p') && (c2 == 'b')){ // file extension name is bmp
    return 4;
  }
  return 0;
}

void  CImage::LoadImage(char *fname)
{    
  m_Width = m_Height = 0;
    
  ifstream ffin(fname, std::ios::binary);
    
  if (!ffin){
    cout<<"Can not open this file."<

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/65183.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号