privacyguides.org/i18n/he/meta/uploading-images.md

2.5 KiB

title
העלאת תמונות

הנה כמה כללים כלליים לתרומה ל-Privacy Guides:

תמונות

  • אנחנו מעדיפים תמונות SVG, אבל אם אלה לא קיימות נוכל להשתמש בתמונות PNG

לסמלי החברה יש גודל קנבס של:

  • 128x128 פיקסלים
  • 384x128 פיקסלים

אופטימיזציה

PNG

השתמש ב-OptiPNG כדי לבצע אופטימיזציה של תמונת PNG:

optipng -o7 file.png

SVG

Inkscape

סרקו את כל תמונות ה-SVG.

ב-Inkscape:

  1. File Save As..
  2. הגדר את הסוג ל-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:

  • Turn off Remove the XML declaration
  • Turn on Remove metadata
  • Turn on Remove comments
  • 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

--8<-- "includes/abbreviations.he.txt"