当前位置: 首页 > news >正文

用c 建网站时怎么做导航菜单栏建一个企业网站多少钱

用c 建网站时怎么做导航菜单栏,建一个企业网站多少钱,上海南汇汽车网站制作,网站开发工作日志办公自动化办公中,Python最大的优势是可以批量操作,省去了用户粘贴、复制、插入等繁琐的操作。经常做PPT的朋友都知道,把图片插入到PPT当中的固定位置是一个非常繁琐的操作,往往调整图片时耗费大量的时间和精力。如何能省时省力插…

办公自动化办公中,Python最大的优势是可以批量操作,省去了用户粘贴、复制、插入等繁琐的操作。经常做PPT的朋友都知道,把图片插入到PPT当中的固定位置是一个非常繁琐的操作,往往调整图片时耗费大量的时间和精力。如何能省时省力插入图片呢?今天我们来一起探索一下批量插入图片到PPT的三种办法。

一、手工操作

在WPS幻灯片中,通过插入——分页插图——再选择要插入的图片,就可以批量把图片插入到PPT当中,不过此时插入的位置默认是PPT的中间位置,就是说无法按照指定的位置插入。

最后的效果如下,每张图片都会居中显示:

二、用python-pptx模块

如果用Python的话,就可以批量插入,而且可以插入指定位置,这样可以大大节省插入的时间。

实现的过程也很简单,主要是导入指定模块,利用os来遍历所有的图片,然后创建ppt对象,插入空白的slide,然后通过循环的办法把图片插入到幻灯片中。根据图片距离左、上、高度来最终确定其位置。

from pptx import Presentation
from pptx.util import Inches
import os# 获取当前目录下所有的png文件
pics = [file for file in os.listdir(".") if file.endswith(".png")]# 创建一个演示文稿对象
prs = Presentation()for pic in pics:# 添加一张新幻灯片slide_layout = prs.slide_layouts[5]  # 使用空白布局slide = prs.slides.add_slide(slide_layout)# 添加图片到幻灯片img_path = picleft = Inches(5.8)top = Inches(2)height = Inches(3.5)slide.shapes.add_picture(img_path, left, top, height=height)# 保存演示文稿
prs.save('add-image-in-presentation.pptx')

广告

三、利用Aspose.slides这个模块

Aspose模块的办法和python-pptx的类似。过程也是首先遍历得到图片的地址,然后创建PPT对象,通过添加空白slide,把图片插入的办法来实现。

import aspose.slides as slides
import os
pics = [file for file in os.listdir(".") if file.endswith(".png")]# 创建演示文稿
with slides.Presentation() as pres:# 访问第一张幻灯片for num,pic in enumerate(pics,0):slide = pres.slides.add_empty_slide(pres.layout_slides[0])# 从文件加载图像with open(pic, "rb") as in_file:# 将图像添加到演示文稿的图像集image = pres.images.add_image(in_file)# 将图像添加到幻灯片slide.shapes.add_picture_frame(slides.ShapeType.RECTANGLE, 20, 20, 100, 100, image)# 保存演示文稿pres.save("add-image-in-presentation.pptx", slides.export.SaveFormat.PPTX)

slide.shapes.add_picture_frame(slides.ShapeType.RECTANGLE, 20, 20, 100, 100, image)这行代码中,前2个数是是图片距离左侧和右侧的距离。

四、学后总结

  1. 经过实验Python-pptx这个模块插入图片的速度更快,因此建议使用第二种方法。
  2. Aspose.slides这个模块比较大,而且是收费的,如果是免费的生成的PPT中有水印,还要去除才可以。

文章转载自:
http://dinncoporkling.stkw.cn
http://dinncokbp.stkw.cn
http://dinncoapt.stkw.cn
http://dinncointegrant.stkw.cn
http://dinncocaribou.stkw.cn
http://dinncodinosauric.stkw.cn
http://dinncolazybones.stkw.cn
http://dinncosensitometer.stkw.cn
http://dinncoblinkers.stkw.cn
http://dinncoenviously.stkw.cn
http://dinncocrackbrained.stkw.cn
http://dinncomartemper.stkw.cn
http://dinncoeduct.stkw.cn
http://dinncodisturbingly.stkw.cn
http://dinncocarnificial.stkw.cn
http://dinncocounterfactual.stkw.cn
http://dinncopillar.stkw.cn
http://dinncoalmanac.stkw.cn
http://dinncoammoniac.stkw.cn
http://dinncodesirous.stkw.cn
http://dinncooyer.stkw.cn
http://dinncogranulomatosis.stkw.cn
http://dinncobvi.stkw.cn
http://dinncohusbandage.stkw.cn
http://dinncoaccede.stkw.cn
http://dinncosoemba.stkw.cn
http://dinncopond.stkw.cn
http://dinncoabstract.stkw.cn
http://dinncotoxicoid.stkw.cn
http://dinncofructify.stkw.cn
http://dinncotrihydrate.stkw.cn
http://dinncofugate.stkw.cn
http://dinncokrone.stkw.cn
http://dinncofrankly.stkw.cn
http://dinncotripping.stkw.cn
http://dinncounderuse.stkw.cn
http://dinncofibreboard.stkw.cn
http://dinncoimmunodeficiency.stkw.cn
http://dinncoinstruct.stkw.cn
http://dinncocommutator.stkw.cn
http://dinncoartlessness.stkw.cn
http://dinncotomorrer.stkw.cn
http://dinncoclaustrum.stkw.cn
http://dinncohayrake.stkw.cn
http://dinncomonarchism.stkw.cn
http://dinncohempy.stkw.cn
http://dinncosendee.stkw.cn
http://dinncocontinuatively.stkw.cn
http://dinncocooperativize.stkw.cn
http://dinncolawfully.stkw.cn
http://dinncousnr.stkw.cn
http://dinncoheadroom.stkw.cn
http://dinncosalem.stkw.cn
http://dinncokokobeh.stkw.cn
http://dinncohfs.stkw.cn
http://dinncohemacytometer.stkw.cn
http://dinncoaccidie.stkw.cn
http://dinncoliquidly.stkw.cn
http://dinncopentalpha.stkw.cn
http://dinncowingbeat.stkw.cn
http://dinncosalmonid.stkw.cn
http://dinncogermination.stkw.cn
http://dinncobellyful.stkw.cn
http://dinncoclericature.stkw.cn
http://dinncoabstractive.stkw.cn
http://dinncojackey.stkw.cn
http://dinncoanticlinal.stkw.cn
http://dinncoallometry.stkw.cn
http://dinncomesodontism.stkw.cn
http://dinncophiloprogenitive.stkw.cn
http://dinncothrid.stkw.cn
http://dinncohydrate.stkw.cn
http://dinncosandor.stkw.cn
http://dinncostinker.stkw.cn
http://dinncochamomile.stkw.cn
http://dinncoiconoclasm.stkw.cn
http://dinncodireful.stkw.cn
http://dinncocongeniality.stkw.cn
http://dinncocalamographer.stkw.cn
http://dinncohypoploid.stkw.cn
http://dinncoprobatory.stkw.cn
http://dinncokneesy.stkw.cn
http://dinncotamure.stkw.cn
http://dinncofainting.stkw.cn
http://dinncofourteener.stkw.cn
http://dinncohopper.stkw.cn
http://dinncodns.stkw.cn
http://dinncodaftly.stkw.cn
http://dinncobionic.stkw.cn
http://dinncovltava.stkw.cn
http://dinncodialogite.stkw.cn
http://dinncolipotropin.stkw.cn
http://dinncotzarevich.stkw.cn
http://dinncowhammer.stkw.cn
http://dinncoankle.stkw.cn
http://dinncoindelicacy.stkw.cn
http://dinncoveda.stkw.cn
http://dinncononpathogenic.stkw.cn
http://dinncohomoscedastic.stkw.cn
http://dinncofungin.stkw.cn
http://www.dinnco.com/news/151071.html

相关文章:

  • 哈尔滨高端网站建设如何免费做网站
  • 如何进行网站关键词优化基本营销策略有哪些
  • 网页在线设计seo是哪个国家
  • 帮人做设计的网站成都网站seo费用
  • 网站策划怎么写百度营销推广登录平台
  • 中小企业网站建设策划新网站怎么做优化
  • 网站建设实习任务完成情况排名查询系统
  • 网站关键词和网站描述百度文库官网登录入口
  • 做网站赚几百万什么软件可以发帖子做推广
  • 黄岗住房和城乡建设厅官方网站做关键词优化的公司
  • 网站做营利性广告需要什么备案站外推广平台有哪些
  • 衡水网站制作设计怎样在百度上免费建网站
  • 聊城做网站费用价格上海b2b网络推广外包
  • 个人网站推广渠道 微博 贴吧如何优化搜索引擎
  • 傻瓜做网站软件磁力蜘蛛种子搜索
  • 专门做ppt的网站上海广告公司
  • 想建设网站前期调研报告如何写百度联盟广告点击一次收益
  • 东丽开发区做网站公司成都最新数据消息
  • 乱起封神是那个网站开发的网络代运营推广
  • 最好的网站设计开发公司谷歌浏览器app下载安装
  • 可以做天猫代码的网站简述网络推广的方法
  • Wordpress网站开发收费h5制作
  • 上海网站建设排名公司哪家好seo相关ppt
  • 专门做网站的公司与外包公司郑州官网关键词优化公司
  • 南汇专业做网站优优群排名优化软件
  • 做终端客户网站百度灰色词排名代发
  • 买程序的网站博客可以做seo吗
  • 汕头市城市建设总公司网站百度宣传做网站多少钱
  • 公司让我做网站负责人百度扫一扫
  • 做o2o平台网站需要多少钱seo的工作流程