1.安装 2.使用 1)图片缩放 效果图: 2.图片模糊 效果图: 3.生成验证码 效果: 4.裁图,旋转,粘贴 效果图: 5.添加图片水印: 效果: 6.添加透明文字水印: 参考: http://pythoncentral.io/watermark-images-python-2x/ 效果图: 相 ...
分类:
其他好文 时间:
2017-04-07 20:09:45
阅读次数:
1055
常用操作: Image.open() Image.close() Image.show() Image.save(filename) #打开、关闭、显示、保存图像文件 Img.crop(box) img.paste(region,box) img.resize(tuple) img.rotate(4 ...
分类:
其他好文 时间:
2017-04-04 00:00:00
阅读次数:
216
生成图片的验证码,进行图像处理,需使用Pillow 1 #!/usr/bin/env python 2 #coding:utf-8 3 4 import os 5 import random 6 from PIL import Image, ImageDraw, ImageFont, ImageFi ...
分类:
其他好文 时间:
2017-04-03 11:31:00
阅读次数:
249
在项目中需要将两张图片合在一起。遇到两种情况,一种就是两张非透明图片的合成, 一种是涉及到透明png的合成。 相关API见 http://pillow.readthedocs.io/en/latest/reference/Image.html 第一种情况,直接将两张图片合在一起就可以了。如下图所示, ...
分类:
编程语言 时间:
2017-02-27 19:31:03
阅读次数:
1091
默认pip是使用Python官方的源,但是由于国外官方源经常被墙,导致不可用,我们可以使用国内的python镜像源,从而解决Python安装不上库的烦恼。 注意后面要有/simple目录!!! 1、临时使用,只有安装pillow时使用指定源 2、永久修改,一劳永逸 ...
分类:
编程语言 时间:
2017-02-06 20:02:50
阅读次数:
257
A - Petr and a calendar (water) 题意:在2017年,m是月份,d是这个月第一个是星期几。问这个月的日历需要多少行。 1 #include <bits/stdc++.h> 2 using namespace std; 3 const int INF = 0x3f3f3f ...
分类:
其他好文 时间:
2017-01-24 21:49:01
阅读次数:
255
django文件上传 上传图片 1、model中定义属性类型为models.ImageField类型pic=models.ImageField(upload_to='images/upload/') 2、如果属性类型为ImageField需要安装包Pilowpip install Pillow==3 ...
分类:
Web程序 时间:
2017-01-17 21:37:22
阅读次数:
256
当pip install不能正确安装的时候,try easy_install 重复试了几次pip install -r requirements.txt,都在安装pillow的时候失败了,想找这个枕头真的不容易 easy_install Pillow==3.4.1 非常顺利 然而, TODO:eas ...
分类:
其他好文 时间:
2017-01-01 10:06:34
阅读次数:
186
1. 首先尝试从官网下载, pip install pillow, 结果网络不行,总是连不上或者下载中就失败, C:\Windows\system32>pip install pillowCollecting pillow Retrying (Retry(total=4, connect=None, ...
分类:
编程语言 时间:
2017-01-01 00:49:47
阅读次数:
641
遇到的俩种错误1.ValueError: zlib is required unless explicitly disabled using --disable-zlib, aborting 问题原因未知,博主尝试了一下解决方案可以解决问题。博主PC 是 Pthon3.4.3-win32pip in... ...
分类:
编程语言 时间:
2016-12-17 16:37:35
阅读次数:
967