⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 imagetype.h

📁 Jpeg编解码器的源代码
💻 H
字号:
#ifndef CB__IMAGETYPE_H
#define CB__IMAGETYPE_H
//
// Copyright (c) 1997,1998 Colosseum Builders, Inc.
// All rights reserved.
//
// Colosseum Builders, Inc. makes no warranty, expressed or implied
// with regards to this software. It is provided as is.
//
// See the README.TXT file that came with this software for restrictions
// on the use and redistribution of this file or send E-mail to
// info@colosseumbuilders.com
//

//
//  Title:  Graphics Type Definitions
//
//  Author:  John M. Miano  miano@colosseumbuilders.com
//

#include "bitmapimage.h"

namespace Colosseum
{

enum ImageType
{
  UnknownImage=0,
  BmpImage = 2,
  JpegImage = 3,
} ;

extern ImageType GetStreamImageType (const std::string &) ;
extern ImageType ReadImage (const std::string &,
                            BitmapImage &image,
                            PROGRESSFUNCTION function,
                            void *data) ;
extern ImageType ReadImage2 (const std::string &filename,
                BitmapImage &image);
}
#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -