Mercurial > hg > orthanc
annotate Core/Images/JpegReader.cpp @ 2933:4a38d7d4f0e0
new class: OrthancConfiguration
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 27 Nov 2018 17:08:48 +0100 |
parents | 964fb9a5786d |
children | d924f9bb61cc |
rev | line source |
---|---|
1604 | 1 /** |
2 * Orthanc - A Lightweight, RESTful DICOM Store | |
1900 | 3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics |
1604 | 4 * Department, University Hospital of Liege, Belgium |
2447
878b59270859
upgrade to year 2018
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2244
diff
changeset
|
5 * Copyright (C) 2017-2018 Osimis S.A., Belgium |
1604 | 6 * |
7 * This program is free software: you can redistribute it and/or | |
8 * modify it under the terms of the GNU General Public License as | |
9 * published by the Free Software Foundation, either version 3 of the | |
10 * License, or (at your option) any later version. | |
11 * | |
12 * In addition, as a special exception, the copyright holders of this | |
13 * program give permission to link the code of its release with the | |
14 * OpenSSL project's "OpenSSL" library (or with modified versions of it | |
15 * that use the same license as the "OpenSSL" library), and distribute | |
16 * the linked executables. You must obey the GNU General Public License | |
17 * in all respects for all of the code used other than "OpenSSL". If you | |
18 * modify file(s) with this exception, you may extend this exception to | |
19 * your version of the file(s), but you are not obligated to do so. If | |
20 * you do not wish to do so, delete this exception statement from your | |
21 * version. If you delete this exception statement from all source files | |
22 * in the program, then also delete it here. | |
23 * | |
24 * This program is distributed in the hope that it will be useful, but | |
25 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
27 * General Public License for more details. | |
28 * | |
29 * You should have received a copy of the GNU General Public License | |
30 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
31 **/ | |
32 | |
33 | |
34 #include "../PrecompiledHeaders.h" | |
35 #include "JpegReader.h" | |
36 | |
37 #include "JpegErrorManager.h" | |
38 #include "../OrthancException.h" | |
39 #include "../Logging.h" | |
2171
35febe19e874
improved support for sandboxed environments
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2170
diff
changeset
|
40 |
35febe19e874
improved support for sandboxed environments
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2170
diff
changeset
|
41 #if ORTHANC_SANDBOXED == 0 |
35febe19e874
improved support for sandboxed environments
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2170
diff
changeset
|
42 # include "../SystemToolbox.h" |
35febe19e874
improved support for sandboxed environments
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2170
diff
changeset
|
43 #endif |
35febe19e874
improved support for sandboxed environments
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2170
diff
changeset
|
44 |
1604 | 45 |
46 namespace Orthanc | |
47 { | |
48 static void Uncompress(struct jpeg_decompress_struct& cinfo, | |
49 std::string& content, | |
50 ImageAccessor& accessor) | |
51 { | |
2683 | 52 // The "static_cast" is necessary on OS X: |
53 // https://github.com/simonfuhrmann/mve/issues/371 | |
54 jpeg_read_header(&cinfo, static_cast<boolean>(true)); | |
55 | |
1604 | 56 jpeg_start_decompress(&cinfo); |
57 | |
58 PixelFormat format; | |
59 if (cinfo.output_components == 1 && | |
60 cinfo.out_color_space == JCS_GRAYSCALE) | |
61 { | |
62 format = PixelFormat_Grayscale8; | |
63 } | |
64 else if (cinfo.output_components == 3 && | |
65 cinfo.out_color_space == JCS_RGB) | |
66 { | |
67 format = PixelFormat_RGB24; | |
68 } | |
69 else | |
70 { | |
71 throw OrthancException(ErrorCode_NotImplemented); | |
72 } | |
73 | |
74 unsigned int pitch = cinfo.output_width * cinfo.output_components; | |
75 | |
76 /* Make a one-row-high sample array that will go away when done with image */ | |
77 JSAMPARRAY buffer = (*cinfo.mem->alloc_sarray) ((j_common_ptr) &cinfo, JPOOL_IMAGE, pitch, 1); | |
78 | |
79 try | |
80 { | |
81 content.resize(pitch * cinfo.output_height); | |
82 } | |
83 catch (...) | |
84 { | |
85 throw OrthancException(ErrorCode_NotEnoughMemory); | |
86 } | |
87 | |
1610
2dff2bdffdb8
font support within Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1605
diff
changeset
|
88 accessor.AssignWritable(format, cinfo.output_width, cinfo.output_height, pitch, |
2dff2bdffdb8
font support within Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1605
diff
changeset
|
89 content.empty() ? NULL : &content[0]); |
1604 | 90 |
91 uint8_t* target = reinterpret_cast<uint8_t*>(&content[0]); | |
92 while (cinfo.output_scanline < cinfo.output_height) | |
93 { | |
94 jpeg_read_scanlines(&cinfo, buffer, 1); | |
95 memcpy(target, buffer[0], pitch); | |
96 target += pitch; | |
97 } | |
98 | |
99 // Everything went fine, "setjmp()" didn't get called | |
100 | |
101 jpeg_finish_decompress(&cinfo); | |
102 } | |
103 | |
104 | |
2170
baf8dd89b4e0
improved support for sandboxed environments
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2143
diff
changeset
|
105 #if ORTHANC_SANDBOXED == 0 |
1925
56276bad7e42
removal of two overloads making few sense
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1900
diff
changeset
|
106 void JpegReader::ReadFromFile(const std::string& filename) |
1604 | 107 { |
2140 | 108 FILE* fp = SystemToolbox::OpenFile(filename, FileMode_ReadBinary); |
1604 | 109 if (!fp) |
110 { | |
111 throw OrthancException(ErrorCode_InexistentFile); | |
112 } | |
113 | |
114 struct jpeg_decompress_struct cinfo; | |
115 memset(&cinfo, 0, sizeof(struct jpeg_decompress_struct)); | |
116 | |
117 Internals::JpegErrorManager jerr; | |
118 cinfo.err = jerr.GetPublic(); | |
119 | |
120 if (setjmp(jerr.GetJumpBuffer())) | |
121 { | |
122 jpeg_destroy_decompress(&cinfo); | |
123 fclose(fp); | |
2085 | 124 LOG(ERROR) << "Error during JPEG decoding: " << jerr.GetMessage(); |
1604 | 125 throw OrthancException(ErrorCode_InternalError); |
126 } | |
127 | |
128 // Below this line, we are under the scope of a "setjmp" | |
129 | |
130 jpeg_create_decompress(&cinfo); | |
131 jpeg_stdio_src(&cinfo, fp); | |
132 | |
133 try | |
134 { | |
135 Uncompress(cinfo, content_, *this); | |
136 } | |
137 catch (OrthancException&) | |
138 { | |
139 jpeg_destroy_decompress(&cinfo); | |
140 fclose(fp); | |
141 throw; | |
142 } | |
143 | |
144 jpeg_destroy_decompress(&cinfo); | |
145 fclose(fp); | |
146 } | |
2170
baf8dd89b4e0
improved support for sandboxed environments
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2143
diff
changeset
|
147 #endif |
1604 | 148 |
149 | |
150 void JpegReader::ReadFromMemory(const void* buffer, | |
151 size_t size) | |
152 { | |
153 struct jpeg_decompress_struct cinfo; | |
154 memset(&cinfo, 0, sizeof(struct jpeg_decompress_struct)); | |
155 | |
156 Internals::JpegErrorManager jerr; | |
157 cinfo.err = jerr.GetPublic(); | |
158 | |
159 if (setjmp(jerr.GetJumpBuffer())) | |
160 { | |
161 jpeg_destroy_decompress(&cinfo); | |
2085 | 162 LOG(ERROR) << "Error during JPEG decoding: " << jerr.GetMessage(); |
1604 | 163 throw OrthancException(ErrorCode_InternalError); |
164 } | |
165 | |
166 // Below this line, we are under the scope of a "setjmp" | |
167 jpeg_create_decompress(&cinfo); | |
168 jpeg_mem_src(&cinfo, const_cast<unsigned char*>(reinterpret_cast<const unsigned char*>(buffer)), size); | |
169 | |
170 try | |
171 { | |
172 Uncompress(cinfo, content_, *this); | |
173 } | |
174 catch (OrthancException&) | |
175 { | |
176 jpeg_destroy_decompress(&cinfo); | |
177 throw; | |
178 } | |
179 | |
180 jpeg_destroy_decompress(&cinfo); | |
181 } | |
182 | |
183 | |
184 void JpegReader::ReadFromMemory(const std::string& buffer) | |
185 { | |
186 if (buffer.empty()) | |
187 { | |
188 ReadFromMemory(NULL, 0); | |
189 } | |
190 else | |
191 { | |
192 ReadFromMemory(buffer.c_str(), buffer.size()); | |
193 } | |
194 } | |
195 } |