-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtestMPageStream.cpp
216 lines (165 loc) · 6.1 KB
/
testMPageStream.cpp
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
// ==========================================================
// FreeImage 3 Test Script
//
// Design and implementation by
// - Hervé Drolon ([email protected])
//
// This file is part of FreeImage 3
//
// COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY
// OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
// THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE
// OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED
// CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT
// THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
// SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL
// PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER
// THIS DISCLAIMER.
//
// Use at your own risk!
// ==========================================================
#include "TestSuite.h"
// --------------------------------------------------------------------------
static unsigned DLL_CALLCONV
myReadProc(void *buffer, unsigned size, unsigned count, fi_handle handle) {
return (unsigned)fread(buffer, size, count, (FILE *)handle);
}
static unsigned DLL_CALLCONV
myWriteProc(void *buffer, unsigned size, unsigned count, fi_handle handle) {
return (unsigned)fwrite(buffer, size, count, (FILE *)handle);
}
static int DLL_CALLCONV
mySeekProc(fi_handle handle, long offset, int origin) {
return fseek((FILE *)handle, offset, origin);
}
static long DLL_CALLCONV
myTellProc(fi_handle handle) {
return ftell((FILE *)handle);
}
FIBOOL testStreamMultiPageOpen(const char *input, int flags) {
// initialize your own IO functions
FreeImageIO io;
io.read_proc = myReadProc;
io.write_proc = myWriteProc;
io.seek_proc = mySeekProc;
io.tell_proc = myTellProc;
FIBOOL bSuccess = FALSE;
// Open src stream in read-only mode
FILE *file = fopen(input, "r+b");
if (file != NULL) {
// Open the multi-page file
FREE_IMAGE_FORMAT fif = FreeImage_GetFileTypeFromHandle(&io, (fi_handle)file);
FIMULTIBITMAP *src = FreeImage_OpenMultiBitmapFromHandle(fif, &io, (fi_handle)file, flags);
if(src) {
// get the page count
int count = FreeImage_GetPageCount(src);
assert(count > 1);
// delete page 0 (modifications are stored to the cache)
FreeImage_DeletePage(src, 0);
// Close src file (nothing is done, the cache is cleared)
bSuccess = FreeImage_CloseMultiBitmap(src, 0);
assert(bSuccess);
}
// Close the src stream
fclose(file);
return bSuccess;
}
return bSuccess;
}
FIBOOL testStreamMultiPageSave(const char *input, const char *output, int input_flag, int output_flag) {
// initialize your own IO functions
FreeImageIO io;
io.read_proc = myReadProc;
io.write_proc = myWriteProc;
io.seek_proc = mySeekProc;
io.tell_proc = myTellProc;
FIBOOL bCreateNew = FALSE;
FIBOOL bReadOnly = TRUE;
FIBOOL bMemoryCache = TRUE;
// Open src file (read-only, use memory cache)
FREE_IMAGE_FORMAT fif = FreeImage_GetFileType(input);
FIMULTIBITMAP *src = FreeImage_OpenMultiBitmap(fif, input, bCreateNew, bReadOnly, bMemoryCache, input_flag);
if(src) {
// Open dst stream in read/write mode
FILE *file = fopen(output, "w+b");
if (file != NULL) {
// Save the multi-page file to the stream
FIBOOL bSuccess = FreeImage_SaveMultiBitmapToHandle(fif, src, &io, (fi_handle)file, output_flag);
assert(bSuccess);
// Close the dst stream
fclose(file);
// Close src file
FreeImage_CloseMultiBitmap(src, 0);
return TRUE;
}
// Close src
FreeImage_CloseMultiBitmap(src, 0);
}
return FALSE;
}
FIBOOL testStreamMultiPageOpenSave(const char *input, const char *output, int input_flag, int output_flag) {
// initialize your own IO functions
FreeImageIO io;
io.read_proc = myReadProc;
io.write_proc = myWriteProc;
io.seek_proc = mySeekProc;
io.tell_proc = myTellProc;
FIBOOL bSuccess = FALSE;
// Open src stream in read-only mode
FILE *src_file = fopen(input, "r+b");
assert(src_file);
if (src_file != NULL) {
// Open the multi-page file
FREE_IMAGE_FORMAT fif = FreeImage_GetFileTypeFromHandle(&io, (fi_handle)src_file);
FIMULTIBITMAP *src = FreeImage_OpenMultiBitmapFromHandle(fif, &io, (fi_handle)src_file, input_flag);
if(src) {
// get the page count
int count = FreeImage_GetPageCount(src);
assert(count > 2);
// Load the bitmap at position '2'
FIBITMAP *dib = FreeImage_LockPage(src, 2);
if(dib) {
FreeImage_Invert(dib);
// Unload the bitmap (apply change to src, modifications are stored to the cache)
FreeImage_UnlockPage(src, dib, TRUE);
}
// delete page 0 (modifications are stored to the cache)
FreeImage_DeletePage(src, 0);
// insert a new page at position '0' (modifications are stored to the cache)
FIBITMAP *page = createZonePlateImage(512, 512, 128);
FreeImage_InsertPage(src, 0, page);
FreeImage_Unload(page);
// Open dst stream in read/write mode
FILE *dst_file = fopen(output, "w+b");
assert(dst_file);
if (dst_file != NULL) {
// Save the multi-page file to the stream (modifications are applied)
FIBOOL bSuccess = FreeImage_SaveMultiBitmapToHandle(fif, src, &io, (fi_handle)dst_file, output_flag);
assert(bSuccess);
// Close the dst stream
fclose(dst_file);
}
// Close src file (nothing is done, the cache is cleared)
bSuccess = FreeImage_CloseMultiBitmap(src, 0);
assert(bSuccess);
}
// Close the src stream
fclose(src_file);
return bSuccess;
}
return FALSE;
}
// --------------------------------------------------------------------------
void testStreamMultiPage(const char *lpszPathName) {
FIBOOL bSuccess;
printf("testStreamMultiPage ...\n");
// test multipage stream (opening)
bSuccess = testStreamMultiPageOpen(lpszPathName, 0);
assert(bSuccess);
// test multipage stream (save as)
bSuccess = testStreamMultiPageSave(lpszPathName, "clone-stream.tif", 0, 0);
assert(bSuccess);
// test multipage stream (open, modify, save as)
bSuccess = testStreamMultiPageOpenSave(lpszPathName, "redirect-stream.tif", 0, 0);
assert(bSuccess);
}