Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
5a242f65
Kaydet (Commit)
5a242f65
authored
Eki 06, 2015
tarafından
Samuel Mehrbrodt
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add script to check that icons have correct size
Change-Id: I7c17ff1379d744378accd3c08c72f17f6ac6f545
üst
11c2d1e0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
0 deletions
+34
-0
check-icon-sizes.py
bin/check-icon-sizes.py
+34
-0
No files found.
bin/check-icon-sizes.py
0 → 100755
Dosyayı görüntüle @
5a242f65
#!/usr/bin/env python3
#
# This file is part of the LibreOffice project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
import
os
from
PIL
import
Image
"""
This script walks through all icon files and checks whether the sc_* and lc_* files have the correct size.
"""
icons_folder
=
os
.
path
.
abspath
(
os
.
path
.
join
(
__file__
,
'..'
,
'..'
,
'icon-themes'
))
def
check_size
(
filename
,
size
):
image
=
Image
.
open
(
filename
)
width
,
height
=
image
.
size
if
width
!=
size
or
height
!=
size
:
print
(
"
%
s has size
%
dx
%
d but should have
%
dx
%
d"
%
(
filename
,
width
,
height
,
size
,
size
))
for
root
,
dirs
,
files
in
os
.
walk
(
icons_folder
):
for
filename
in
files
:
if
not
filename
.
endswith
(
'png'
):
continue
if
filename
.
startswith
(
'lc_'
):
check_size
(
os
.
path
.
join
(
root
,
filename
),
24
)
elif
filename
.
startswith
(
'sc_'
):
check_size
(
os
.
path
.
join
(
root
,
filename
),
16
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment