Python 练习册 => 0000 将 QQ 头像右上角加上红色的数字 练习心得 使用PIL进行简单的图像处理 RGBA 不能转换为 JPEG 收藏一个字体下载站:http://www.touwenzi.com 源码如下: https://github.com/plough/show-me-the-code/tree/master/0000 #!/usr/bin/env python # encoding: utf-8 from PIL import Image, I Python 桩白墨 2017-11-01 113 热度 0评论
去除图片浅色背景(PIL实现) 基本思路:在二值化的基础上修改。首先灰度化,然后大于阈值的像素(浅色背景),设为255,小于阈值的像素,保留原样。阈值可以试出来,不同的图片,适合的阈值不一样。 源码: from PIL import Image def testImg(file,threshold): loadpath = "./image/" img = Image.open(loadpath+file) img.show() Python 桩白墨 2017-10-30 141 热度 0评论