📄 img_decoder.h
字号:
/* * This file is part of Ambulant Player, www.ambulantplayer.org. * * Copyright (C) 2003-2007 Stichting CWI, * Kruislaan 413, 1098 SJ Amsterdam, The Netherlands. * * Ambulant Player is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * Ambulant Player is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with Ambulant Player; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA *//* * @$Id: img_decoder.h,v 1.5 2007/02/12 14:14:14 jackjansen Exp $ */#ifndef AMBULANT_GUI_IMG_DECODER_H#define AMBULANT_GUI_IMG_DECODER_H#ifndef _WINDOWS_#include <windows.h>#endif#include "ambulant/config/config.h"#include "ambulant/lib/colors.h"#include "ambulant/lib/basic_types.h"#include "ambulant/gui/dg/dg_surface.h"#include "ambulant/gui/dg/dg_dib_surface.h"namespace ambulant {namespace gui {namespace dg {typedef lib::color_trible surf_color_t;template<class DataSource>class img_decoder { public: img_decoder(DataSource *src, HDC hdc) : m_src(src), m_hdc(hdc) {} virtual ~img_decoder() {} virtual bool can_decode() = 0; virtual dib_surface<surf_color_t>* decode() = 0; virtual bool is_transparent() { return false;} virtual void get_transparent_color(BYTE *rgb) { rgb[0] = 0; rgb[1] = 0; rgb[2] = 0; } virtual lib::color_t get_transparent_color() { if(!is_transparent()) return CLR_INVALID; BYTE rgb[3];get_transparent_color(rgb); return lib::to_color(rgb[0], rgb[1], rgb[2]); } protected: DataSource* m_src; HDC m_hdc;};template<class DataSource>struct file_reader { size_t (*read_file)(void *p, void *buf, unsigned long sizeofbuf); static size_t read_file_impl(void *p, void *buf, unsigned long sizeofbuf) { return ((file_reader*)p)->m_src->read((uchar_t*)buf, sizeofbuf); } file_reader(DataSource *src) : m_src(src) { m_src->seekg(0); read_file = &file_reader::read_file_impl; } DataSource *m_src;};typedef unsigned char uchar;struct color_quad { uchar b; uchar g; uchar r; uchar a;};} // namespace dg} // namespace gui } // namespace ambulant#endif // AMBULANT_GUI_IMG_DECODER_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -