1
0
Fork 0
mirror of https://github.com/matomo-org/matomo-icons.git synced 2024-09-19 17:03:45 +02:00
matomo-icons/analyseIco.py

36 lines
1.2 KiB
Python
Raw Normal View History

2017-02-22 10:44:15 +01:00
#!/usr/bin/env python3
# Copyright (C) 2017 Lukas Winkler
#
# This program is free software: you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free Software
# Foundation, either version 3 of the License, or (at your option) any later
# version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along with
# this program. If not, see <http://www.gnu.org/licenses/>.
import re
import subprocess
import sys
file = sys.argv[1]
2019-10-03 20:23:01 +02:00
output = subprocess.check_output("identify " + file, shell=True).decode()
icons = output.splitlines()
2019-10-03 20:23:01 +02:00
regex = r"\d+x\d+"
maxsize = 0
maxpos = 0
2016-12-26 18:21:23 +01:00
for i, file_line in enumerate(icons):
2019-10-03 20:23:01 +02:00
resolution = re.findall(regex, file_line)[0] # e.g. 16x16
size = int(resolution.split("x")[0]) # e.g. 16
2016-12-26 18:21:23 +01:00
# "1-bit"-images are not very helpful
if size >= maxsize and " 1-bit" not in str(file_line):
maxsize = size
maxpos = i
print(maxpos)