Commit 992dcd48 authored by Davis King's avatar Davis King

merged

parents aa19ff73 02f6da28
...@@ -86,8 +86,8 @@ namespace dlib ...@@ -86,8 +86,8 @@ namespace dlib
cinfo.input_components = 3; cinfo.input_components = 3;
cinfo.in_color_space = JCS_RGB; cinfo.in_color_space = JCS_RGB;
jpeg_set_defaults(&cinfo); jpeg_set_defaults(&cinfo);
jpeg_set_quality (&cinfo, quality, true); jpeg_set_quality (&cinfo, quality, TRUE);
jpeg_start_compress(&cinfo, true); jpeg_start_compress(&cinfo, TRUE);
// now write out the rows one at a time // now write out the rows one at a time
while (cinfo.next_scanline < cinfo.image_height) { while (cinfo.next_scanline < cinfo.image_height) {
...@@ -148,8 +148,8 @@ namespace dlib ...@@ -148,8 +148,8 @@ namespace dlib
cinfo.input_components = 1; cinfo.input_components = 1;
cinfo.in_color_space = JCS_GRAYSCALE; cinfo.in_color_space = JCS_GRAYSCALE;
jpeg_set_defaults(&cinfo); jpeg_set_defaults(&cinfo);
jpeg_set_quality (&cinfo, quality, true); jpeg_set_quality (&cinfo, quality, TRUE);
jpeg_start_compress(&cinfo, true); jpeg_start_compress(&cinfo, TRUE);
// now write out the rows one at a time // now write out the rows one at a time
while (cinfo.next_scanline < cinfo.image_height) { while (cinfo.next_scanline < cinfo.image_height) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment