Questions tagged [ascii85]

ASCII85 or Base85 is a binary to text encoding system.

ASCII85 (Base85) is a binary to text encoding system created by Paul E. Rutter. ASCII85 encoding is compatible with 7-bit and 8-bit MIME. ASCII85 is used in PostScript (PS) and Portable Document Format (PDF) file formats.

ASCII85 is similar to Base64, It uses 5 ASCII characters to code 4 bytes of binary data whereas in Base64 4 characters are used to code 3 bytes. ASCII85 has less overhead than Base64 as the ASCII85 encoded data size is ¹⁄₄ larger than the original size compared to ¹⁄₃ increase if encoded by Base64.

16 questions
0
votes
2 answers

Why doesn't Ascii85 encoding allow for dynamic compression?

According to Wikipedia: [Ascii85 uses] the ASCII characters 33 (!) through 117 (u) inclusive (to represent the base-85 digits 0 through 84), together with the letter z (as a special case to represent a 32-bit 0 value). [btoa] Version 4.2 added a…
ThunderFrame
  • 9,352
  • 2
  • 29
  • 60
1
2