python以环状形式组合排列图片并输出的方法


Posted in Python onMarch 17, 2015

本文实例讲述了python以环状形式组合排列图片并输出的方法。分享给大家供大家参考。具体分析如下:

这段代码可以自定义一个空白画板,然后将指定的图片以圆环状的方式排列起来,用到了pil库,可以通过:
pip install pil 的方式安装。

具体代码如下:

# -*- coding: utf-8 -*-

__author__ = '3water.com'

import math

from PIL import Image

def arrangeImagesInCircle(masterImage, imagesToArrange):

    imgWidth, imgHeight = masterImage.size

    #we want the circle to be as large as possible.

    #but the circle shouldn't extend all the way to the edge of the image.

    #If we do that, then when we paste images onto the circle, those images will partially fall over the edge.

    #so we reduce the diameter of the circle by the width/height of the widest/tallest image.

    diameter = min(

        imgWidth  - max(img.size[0] for img in imagesToArrange),

        imgHeight - max(img.size[1] for img in imagesToArrange)

    )

    radius = diameter / 2

    circleCenterX = imgWidth  / 2

    circleCenterY = imgHeight / 2

    theta = 2*math.pi / len(imagesToArrange)

    for i in range(len(imagesToArrange)):

        curImg = imagesToArrange[i]

        angle = i * theta

        dx = int(radius * math.cos(angle))

        dy = int(radius * math.sin(angle))

        #dx and dy give the coordinates of where the center of our images would go.

        #so we must subtract half the height/width of the image to find where their top-left corners should be.

        pos = (

            circleCenterX + dx - curImg.size[0]/2,

            circleCenterY + dy - curImg.size[1]/2

        )

        masterImage.paste(curImg, pos)

img = Image.new("RGB", (500,500), (255,255,255))

#下面的三个图片是3个 50x50 的pngs 图片,使用了绝对路径,需要自己进行替换成你的图片路径

imageFilenames = ["d:/3water.com/images/1.png", "d:/3water.com/images/2.png", "d:/3water.com/images/3.png"] * 5

images = [Image.open(filename) for filename in imageFilenames]

arrangeImagesInCircle(img, images)

img.save("output.png")

希望本文所述对大家的Python程序设计有所帮助。

Python 相关文章推荐
python调用Delphi写的Dll代码示例
Dec 05 Python
numpy实现合并多维矩阵、list的扩展方法
May 08 Python
浅谈Python里面小数点精度的控制
Jul 16 Python
python内置数据类型之列表操作
Nov 12 Python
解决pycharm每次新建项目都要重新安装一些第三方库的问题
Jan 17 Python
Python使用统计函数绘制简单图形实例代码
May 15 Python
python实现函数极小值
Jul 10 Python
Python实现多线程/多进程的TCP服务器
Sep 03 Python
python中如何写类
Jun 29 Python
如何使用Cython对python代码进行加密
Jul 08 Python
python 怎样进行内存管理
Nov 10 Python
python脚本使用阿里云slb对恶意攻击进行封堵的实现
Feb 04 Python
python将ip地址转换成整数的方法
Mar 17 #Python
python实现模拟按键,自动翻页看u17漫画
Mar 17 #Python
python通过pil为png图片填充上背景颜色的方法
Mar 17 #Python
python按照多个字符对字符串进行分割的方法
Mar 17 #Python
python通过floor函数舍弃小数位的方法
Mar 17 #Python
python常规方法实现数组的全排列
Mar 17 #Python
python标准算法实现数组全排列的方法
Mar 17 #Python
You might like
PHP统计二维数组元素个数的方法
2013/11/12 PHP
Swoole-1.7.22 版本已发布,修复PHP7相关问题
2015/12/31 PHP
PHP实现微信支付(jsapi支付)流程步骤详解
2018/03/15 PHP
PHP实现负载均衡的加权轮询方法分析
2018/08/22 PHP
Laravel 读取 config 下的数据方法
2019/10/13 PHP
JavaScript将数据转换成整数的方法
2014/01/04 Javascript
javascript实现单击和双击并存的方法
2014/12/13 Javascript
JavaScript实现的MD5算法完整实例
2016/02/02 Javascript
AngularJS表单详解及示例代码
2016/08/17 Javascript
js实现交通灯效果
2017/01/13 Javascript
微信小程序form表单组件示例代码
2018/07/15 Javascript
Vue中axios拦截器如何单独配置token
2019/12/27 Javascript
[00:08]DOTA2勇士令状等级奖励“天外飞星”
2019/05/24 DOTA
Python基于PycURL实现POST的方法
2015/07/25 Python
两个使用Python脚本操作文件的小示例分享
2015/08/27 Python
Python中用字符串调用函数或方法示例代码
2017/08/04 Python
python中Matplotlib实现绘制3D图的示例代码
2017/09/04 Python
Windows系统下多版本pip的共存问题详解
2017/10/10 Python
python 中的paramiko模块简介及安装过程
2020/02/29 Python
HTML5仿微信聊天界面、微信朋友圈实例代码
2018/01/29 HTML / CSS
港湾网络笔试题
2014/04/19 面试题
门店业绩提升方案
2014/06/08 职场文书
开业庆典活动策划方案
2014/09/21 职场文书
优秀团队申报材料
2014/12/26 职场文书
平安建设汇报材料
2014/12/29 职场文书
优秀党员个人总结
2015/02/14 职场文书
护林员个人总结
2015/03/04 职场文书
现实表现证明材料
2015/06/19 职场文书
退货证明模板
2015/06/23 职场文书
2016年春季运动会通讯稿
2015/11/25 职场文书
iPhone13再次曝光
2021/04/15 数码科技
只用40行Python代码就能写出pdf转word小工具
2021/05/31 Python
HTML+CSS实现导航条下拉菜单的示例代码
2021/08/02 HTML / CSS
Android Gradle 插件自定义Plugin实现注意事项
2022/06/16 Java/Android
MySQL约束(创建表时的各种条件说明)
2022/06/21 MySQL
python数据分析之单因素分析线性拟合及地理编码
2022/06/25 Python