1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
/*
* This file is part of the KDE project, added by Bryce Nesbitt
*
* This is a plugin for Konqeror/KFile which processes 'extra' information
* contained in a .gif image file (In particular the comment, and resolution).
*
**************************************
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public
* License as published by the Free Software Foundation version 2.
*
* This program 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
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#include <stdlib.h>
#include "tdefile_gif.h"
#include <kurl.h>
#include <kprocess.h>
#include <tdelocale.h>
#include <kgenericfactory.h>
#include <kdebug.h>
#include <tqcstring.h>
#include <tqfile.h>
#include <tqdatetime.h>
#include <tqdict.h>
#include <tqvalidator.h>
#include <tqimage.h>
typedef KGenericFactory<KGifPlugin> GifFactory;
K_EXPORT_COMPONENT_FACTORY(tdefile_gif, GifFactory("tdefile_gif"))
KGifPlugin::KGifPlugin(TQObject *parent, const char *name,
const TQStringList &args)
: KFilePlugin(parent, name, args)
{
kdDebug(7034) << "gif KFileMetaInfo plugin\n";
KFileMimeTypeInfo* info = addMimeTypeInfo( "image/gif" );
KFileMimeTypeInfo::GroupInfo* group = 0L;
group = addGroupInfo(info, "General", i18n("General"));
KFileMimeTypeInfo::ItemInfo* item;
item = addItemInfo(group, "Version", i18n("Version"), TQVariant::String);
item = addItemInfo( group, "Dimensions", i18n("Dimensions"), TQVariant::Size );
setHint( item, KFileMimeTypeInfo::Size );
setUnit( item, KFileMimeTypeInfo::Pixels );
item = addItemInfo(group, "BitDepth", i18n("Bit Depth"), TQVariant::Int);
setUnit(item, KFileMimeTypeInfo::BitsPerPixel);
}
bool KGifPlugin::readInfo( KFileMetaInfo& info, uint what )
{
Q_UNUSED( what );
kdDebug(7034) << "gif KFileMetaInfo readInfo\n";
TQFile file(info.path());
if (!file.open(IO_ReadOnly)) {
kdDebug(7034) << "Couldn't open " << TQFile::encodeName(info.path()).data() << endl;
return false;
}
TQDataStream fstream(&file);
bool isGIF87a = false;
char magic[7];
TQ_UINT16 width = 0;
TQ_UINT16 height = 0;
TQ_UINT8 miscInfo = 0;
fstream.readRawBytes( magic, 6 );
magic[6] = 0x00; // null terminate
// I have special requirements...
fstream.setByteOrder( TQDataStream::LittleEndian );
fstream >> width;
fstream >> height;
fstream >> miscInfo;
KFileMetaInfoGroup group = appendGroup(info, "General");
if ( 0 == strncmp( magic, "GIF89a", 6 ) ) {
appendItem( group, "Version", i18n("GIF Version 89a") );
} else if ( 0 == strncmp( magic, "GIF87a", 6 ) ) {
appendItem( group, "Version", i18n("GIF Version 87a") );
isGIF87a = true;
} else {
appendItem( group, "Version", i18n("Unknown") );
}
appendItem( group, "Dimensions", TQSize(width, height) );
if ( isGIF87a ) {
appendItem( group, "BitDepth", ( (miscInfo & 0x07) + 1) );
}
file.close();
return true;
}
#include "tdefile_gif.moc"
|