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
|
// Copyright (c) the JPEG XL Project Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
#include <stdio.h>
#include <string>
#include "lib/extras/codec.h"
#include "lib/jxl/base/data_parallel.h"
#include "lib/jxl/base/status.h"
#include "lib/jxl/base/thread_pool_internal.h"
#include "lib/jxl/codec_in_out.h"
namespace jxl {
namespace {
// Reads an input file (typically PNM) with color_space hint and writes to an
// output file (typically PNG) which supports all required metadata.
int Convert(int argc, char** argv) {
if (argc != 4 && argc != 5) {
fprintf(stderr, "Args: in colorspace_description out [bits]\n");
return 1;
}
const std::string& pathname_in = argv[1];
const std::string& desc = argv[2];
const std::string& pathname_out = argv[3];
CodecInOut io;
extras::ColorHints color_hints;
ThreadPoolInternal pool(4);
color_hints.Add("color_space", desc);
if (!SetFromFile(pathname_in, color_hints, &io, &pool)) {
fprintf(stderr, "Failed to read %s\n", pathname_in.c_str());
return 1;
}
if (!EncodeToFile(io, pathname_out, &pool)) {
fprintf(stderr, "Failed to write %s\n", pathname_out.c_str());
return 1;
}
return 0;
}
} // namespace
} // namespace jxl
int main(int argc, char** argv) { return jxl::Convert(argc, argv); }
|