icc_detect.h (512B)
1 // Copyright (c) the JPEG XL Project Authors. All rights reserved. 2 // 3 // Use of this source code is governed by a BSD-style 4 // license that can be found in the LICENSE file. 5 6 #ifndef TOOLS_ICC_DETECT_ICC_DETECT_H_ 7 #define TOOLS_ICC_DETECT_ICC_DETECT_H_ 8 9 #include <QByteArray> 10 #include <QWidget> 11 12 namespace jpegxl { 13 namespace tools { 14 15 // Should be cached if possible. 16 QByteArray GetMonitorIccProfile(const QWidget* widget); 17 18 } // namespace tools 19 } // namespace jpegxl 20 21 #endif // TOOLS_ICC_DETECT_ICC_DETECT_H_