format_olympus.h

来自「Gqview,Linux下基于GTK+库写成的轻量级而能丰富的图像浏览程序。」· C头文件 代码 · 共 39 行

H
39
字号
/* *  GQView *  (C) 2005 John Ellis * * This software is released under the GNU General Public License (GNU GPL). * Please read the included file COPYING for more information. * This software comes with no warranty of any kind, use at your own risk! */#ifndef __FORMAT_OLYMPUS_H#define __FORMAT_OLYMPUS_H#include "exif.h"#if 0gint format_olympus_raw(unsigned char *data, const guint len,			guint *image_offset, guint *exif_offset);#define FORMAT_RAW_OLYMPUS { "orf", \			     FORMAT_RAW_MATCH_MAGIC, 0, "IIRS", 4, \			     "Olympus raw", format_olympus_raw }#endifgint format_olympus_makernote(ExifData *exif, unsigned char *tiff, guint offset,			      guint size, ExifByteOrder bo);#define FORMAT_EXIF_OLYMPUS { FORMAT_EXIF_MATCH_MAKERNOTE, "OLYMP\x00\x01", 7, \			      "Olympus", format_olympus_makernote }, \			    { FORMAT_EXIF_MATCH_MAKERNOTE, "OLYMP\x00\x02", 7, \			      "Olympus", format_olympus_makernote }#endif

⌨️ 快捷键说明

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