File indexing completed on 2024-09-22 05:02:10

0001 /*
0002     SPDX-FileCopyrightText: 2007 Paolo Capriotti <p.capriotti@gmail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include <QStringList>
0010 
0011 const QStringList &suffixes();
0012 
0013 /**
0014  * Check if the image format is supported by QImageReader.
0015  *
0016  * @return @p true if the format is supported, @p false otherwise.
0017  */
0018 bool isAcceptableSuffix(QString &&suffix);