mirror of
https://github.com/privacyguides/privacyguides.org.git
synced 2024-10-01 01:35:57 -04:00
9e35e2ef8a
Signed-off-by: Daniel Gray <dngray@privacyguides.org>
2.5 KiB
2.5 KiB
title |
---|
העלאת תמונות |
הנה כמה כללים כלליים לתרומה ל-Privacy Guides:
תמונות
- אנחנו מעדיפים תמונות SVG, אבל אם אלה לא קיימות נוכל להשתמש בתמונות PNG
לסמלי החברה יש גודל קנבס של:
- 128x128 פיקסלים
- 384x128 פיקסלים
אופטימיזציה
PNG
השתמש ב-OptiPNG כדי לבצע אופטימיזציה של תמונת PNG:
optipng -o7 file.png
SVG
Inkscape
סרקו את כל תמונות ה-SVG.
ב-Inkscape:
- File Save As..
- הגדר את הסוג ל-SVG אופטימיזציה (*.svg)
בלשונית האפשרויות:
- מספר הספרות המשמעותיות עבור קואורדינטות > 5
- Turn on Shorten color values
- Turn on Convert CSS attributes to XML attributes
- Turn on Collapse groups
- Turn on Create groups for similar attributes
- Turn off Keep editor data
- Turn off Keep unreferenced definitions
- Turn on Work around renderer bugs
In the SVG Output tab under Document options:
- תכבה הסר את הצהרת ה-XML
- הפעל הסר מטא נתונים
- הפעל הסר תגובות
- Turn on Embeded raster images
- Turn on Enable viewboxing
In the SVG Output under Pretty-printing:
- Turn off Format output with line-breaks and indentation
- Indentation characters > Select Space
- Depth of indentation > 1
- Turn off Strip the "xml:space" attribute from the root SVG element
In the IDs tab:
- Turn on Remove unused IDs
- Turn off Shorten IDs
- Prefix shortened IDs with >
leave blank
- Turn on Preserve manually created IDs not ending with digits
- Preserve the following IDs >
leave blank
- Preserve IDs starting with >
leave blank
CLI
ניתן להשיג את אותו הדבר עם הפקודה Scour:
scour --set-precision=5 \
--create-groups \
--renderer-workaround \
--remove-descriptive-elements \
--enable-comment-stripping \
--enable-viewboxing \
--indent=space \
--nindent=1 \
--no-line-breaks \
--enable-id-stripping \
--protect-ids-noninkscape \
input.svg output.svg