如何压缩字符串?

时间:2010-09-04 00:11:59

标签: javascript compression svg

我希望对一种字符串进行可逆压缩,以便我可以将其包含在URL中,而无需跟踪它所指的内容。我要压缩的字符串是SVG路径字符串,这是一个简短的引物:http://apike.ca/prog_svg_paths.html

基本上,字符串包含一个字符,后跟任意数量的整数,然后是另一个字符,后跟任意数量的整数,依此类推。

如果有人知道这方面的优质资源,我们将不胜感激!

杰森

4 个答案:

答案 0 :(得分:6)

许多压缩算法都有详细记录,有几个甚至有js实现:

  • GZip一个常见的(合理的)好的压缩算法,我知道有一个JS impl,我只是在搜索URL

  • LZW另一个问题指向JS中的LZW实现

  • Arithmetic coding(我这样做了,但它使用的模型很愚蠢,因此无法达到最佳压缩率)

答案 1 :(得分:3)

听起来你可能会受益于单次和双次RLE压缩。

这里可以看到这方面的基础知识:

http://pp19dd.com/2011/10/query-string-limits-encoding-hundreds-of-checkboxes-with-rle/#demo

库应该足够灵活,可以将压缩模式修改为更优选的模式。该文章解释了这是如何工作的;可能是优化SVG案例的良好开端。

答案 2 :(得分:1)

您可以尝试Huffman compression。不同字符的数量是20-30,如果字符串很长,压缩应该是有效的。

答案 3 :(得分:0)

以下解决方案返回压缩的Base64编码的字符串。

使用下面的代码创建一个名为zip.js的文件,然后在下面查看用法。

// Apply LZW-compression to a string and return base64 compressed string.
export function zip (s) {
  try {
    var dict = {}
    var data = (s + '').split('')
    var out = []
    var currChar
    var phrase = data[0]
    var code = 256
    for (var i = 1; i < data.length; i++) {
      currChar = data[i]
      if (dict[phrase + currChar] != null) {
        phrase += currChar
      } else {
        out.push(phrase.length > 1 ? dict[phrase] : phrase.charCodeAt(0))
        dict[phrase + currChar] = code
        code++
        phrase = currChar
      }
    }
    out.push(phrase.length > 1 ? dict[phrase] : phrase.charCodeAt(0))
    for (var j = 0; j < out.length; j++) {
      out[j] = String.fromCharCode(out[j])
    }
    return utoa(out.join(''))
  } catch (e) {
    console.log('Failed to zip string return empty string', e)
    return ''
  }
}

// Decompress an LZW-encoded base64 string
export function unzip (base64ZippedString) {
  try {
    var s = atou(base64ZippedString)
    var dict = {}
    var data = (s + '').split('')
    var currChar = data[0]
    var oldPhrase = currChar
    var out = [currChar]
    var code = 256
    var phrase
    for (var i = 1; i < data.length; i++) {
      var currCode = data[i].charCodeAt(0)
      if (currCode < 256) {
        phrase = data[i]
      } else {
        phrase = dict[currCode] ? dict[currCode] : oldPhrase + currChar
      }
      out.push(phrase)
      currChar = phrase.charAt(0)
      dict[code] = oldPhrase + currChar
      code++
      oldPhrase = phrase
    }
    return out.join('')
  } catch (e) {
    console.log('Failed to unzip string return empty string', e)
    return ''
  }
}

// ucs-2 string to base64 encoded ascii
function utoa (str) {
  return window.btoa(unescape(encodeURIComponent(str)))
}
// base64 encoded ascii to ucs-2 string
function atou (str) {
  return decodeURIComponent(escape(window.atob(str)))
}

用法:

import { zip, unzip } from './zip'

// Zip a string
const str = 'zip it'
const base64CompressedString = zip(str)

// Zip an object
const obj = { a: 123, b: 'zipit' }
const base64CompressedString = zip(JSON.stringify(obj))

// Unzip the base64 compressed string back to an object.
const originalObject = JSON.parse(unzip(base64CompressedString))

顺便说一句...如果您担心转义/转义贬值,请考虑使用polyfill

here中的LZW算法和here中的base64编码