Ai
1 Star 0 Fork 1

青大叔/gooxml

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.go 1.86 KB
一键复制 编辑 原始数据 按行查看 历史
qwj 提交于 2021-09-03 14:09 +08:00 . 修改包名
// Copyright 2017 Baliance. All rights reserved.
package main
import (
"log"
"gitee.com/jiewen/gooxml/schema/soo/dml"
"gitee.com/jiewen/gooxml/color"
"gitee.com/jiewen/gooxml/common"
"gitee.com/jiewen/gooxml/measurement"
"gitee.com/jiewen/gooxml/presentation"
)
const lorem = "Lorem ipsum dolor sit amet."
func main() {
ppt := presentation.New()
imgColor, err := common.ImageFromFile("gophercolor.png")
if err != nil {
log.Fatalf("unable to create image: %s", err)
}
irefColor, err := ppt.AddImage(imgColor)
if err != nil {
log.Fatal(err)
}
slide := ppt.AddSlide()
img := slide.AddImage(irefColor)
img.Properties().SetWidth(2 * measurement.Inch)
img.Properties().SetHeight(irefColor.RelativeHeight(2 * measurement.Inch))
tb := slide.AddTextBox()
tb.SetTextAnchor(dml.ST_TextAnchoringTypeCtr) // vertical center
para := tb.AddParagraph()
para.Properties().SetAlign(dml.ST_TextAlignTypeCtr) // horizontal center
run := para.AddRun()
run.Properties().SetBold(true)
run.Properties().SetSolidFill(color.Red)
run.SetText("Look a Gopher!")
tb.Properties().SetGeometry(dml.ST_ShapeTypeChevron)
tb.Properties().SetFlipHorizontal(true)
tb.Properties().SetSolidFill(color.LightBlue)
tb.Properties().LineProperties().SetWidth(0.125 * measurement.Inch)
tb.Properties().LineProperties().SetSolidFill(color.DarkBlue)
tb.Properties().SetPosition(2.5*measurement.Inch, 0.5*measurement.Inch)
tb = slide.AddTextBox()
tb.Properties().SetPosition(3.5*measurement.Inch, 2.5*measurement.Inch)
for i := 0; i < 4; i++ {
para = tb.AddParagraph()
para.Properties().SetBulletFont("Wingdings")
para.Properties().SetBulletChar("Ø")
para.Properties().SetLevel(int32(i))
run = para.AddRun()
if i%2 == 1 {
run.Properties().SetSolidFill(color.DarkRed)
}
run.SetText("Foo")
}
if err := ppt.Validate(); err != nil {
log.Fatal(err)
}
ppt.SaveToFile("complex.pptx")
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jiewen/gooxml.git
git@gitee.com:jiewen/gooxml.git
jiewen
gooxml
gooxml
c517a803bade

搜索帮助