默默纸飞机

文章
5
资源
0
加入时间
2年10月21天

【Python 大图切割指定尺寸多个图片生成html预览和JSON文件】

翻到10年世博深圳馆的一个工程文件,画面是深圳卫星地图上找东西的效果,当时是用flash 做的,现在已经记不起是as2还是as3做的了。这个切图的功臣当时用的是一款名为splitz.exe工具软件,把上万像素的图分成了256px的方块图。于是从g盘的software目录里找到还保存的这工具,想点开回忆一下。js+canvas想想就感觉太费劲了,用Python吧,自做了几个爬虫下载颜色图,感觉效率挺高的,于是就有了下面这些东西。

Unexpected character ‘=‘; expected a semi-colon after the reference for entity ‘characterEncoding‘Unexpected character ‘=’; expected a semi-colon after the reference for entity ‘characterEncoding’

Unexpected character ‘=’; expected a semi-colon after the reference for entity ‘characterEncoding’hive-site.xml文件配置mysql数据库地址<property> <name>javax.jdo.option.ConnectionURL</name> <value>j

python判断参数是否是合法标识符

import stringdef is_valid_identifier(param): alphas = string.letters + '_' nums = string.digits if len(param) > 1: if param[0] not in alphas: print 'invalid:fi...