PNG文件中的LSB隐写

看到MottoIn的一篇文章时关于LSB隐写的,正好赶上中秋攒了一堆月饼没处放,就想由此出个题送送月饼。

环境:win10 python27

lsb脚本使用了https://github.com/cyberinc/cloacked-pixel

在使用之前需要几个python包,主要说下win10下如何安装这些包

1.PIL

这个包你按廖雪峰官网上的方法可能安装不上,所以我给出我自己的解决办法:

https://pypi.python.org/pypi/Pillow/2.7.0找到exe安装包双击

主要是PIL官方编译包有bug,所以最好下载第三方组织编译包,强烈推荐pillow的确好用

2.matplotlib

这个包的安装直接参考官方网站的方法,注意一步一步来。

1
2
3
4
5
6
python -m pip install --upgrade pip
python -m pip install --upgrade numpy
python -m pip install --upgrade pytz
python -m pip install --upgrade pyparsing
python -m pip install --upgrade cycler
python -m pip install --upgrade matplotlib

这就ok了,很简单。

接下来按照MottoIn这个玩就好了。