首页 服务器 编程 必备知识 搜索引擎 圩日手册
站内搜索
最近浏览
推荐文章
热文排行

C++中读取图片长度和宽度


如何在C++中如何读取图片的长与宽,转载了网上一个好例子,仅供学习之用!

#include <iostream>
#include <fstream>
#include <string>

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."<<endl;
        return;
    
    int result = get_extension(fname);
    char s1[2] = {0}, s2[2] = {0};
   
    switch(result)
    {
    case 1:    // gif   
        ffin.seekg(6);        
        ffin.read(s1, 2);
        ffin.read(s2, 2);      
        m_Width = (unsigned int)(s1[1])<<8|(unsigned int)(s1[0]);
        m_Height = (unsigned int)(s2[1])<<8|(unsigned int)(s2[0]);   
        break;
    case 2:    // jpg
        ffin.seekg(164);       
        ffin.read(s1, 2);
        ffin.read(s2, 2);      
        m_Width = (unsigned int)(s1[1])<<8|(unsigned int)(s1[0]);
        m_Height = (unsigned int)(s2[1])<<8|(unsigned int)(s2[0]);   
        break;
    case 3:     // png
        ffin.seekg(17);       
        ffin.read(s1, 2);
        ffin.seekg(2, std::ios::cur);
        ffin.read(s2, 2);    
        m_Width = (unsigned int)(s1[1])<<8|(unsigned int)(s1[0]);
        m_Height = (unsigned int)(s2[1])<<8|(unsigned int)(s2[0]);   
        break;
    case 4:     // bmp      
        ffin.seekg(18);       
        ffin.read(s1, 2);
        ffin.seekg(2, std::ios::cur);
        ffin.read(s2, 2);      
        m_Width = (unsigned int)(s1[1])<<8|(unsigned int)(s1[0]);
        m_Height = (unsigned int)(s2[1])<<8|(unsigned int)(s2[0]);   
        break;
    default:
        cout<<"NO"<<endl;
        break;
     
    ffin.close();
};


int main(int argc, char *argv[])
{
    if (argc < 2){
        printf("usage: program imagefilename\n");
        return 0;
   
    CImage  test;
    test.LoadImage(argv[1]);
    cout<<"width:"<<test.get_width()<<endl;
    cout<<"height:"<<test.get_height()<<endl;
     
    return 0;
}

[wangjy17908]
添加时间:2010-01-21
版权所有(C)2005-2015