mirror of
https://github.com/unidoc/unioffice.git
synced 2025-04-27 13:48:54 +08:00
71 lines
1.9 KiB
Go
71 lines
1.9 KiB
Go
// Copyright 2017 FoxyUtils ehf. All rights reserved.
|
|
package main
|
|
|
|
import (
|
|
"log"
|
|
|
|
"github.com/unidoc/unioffice/schema/soo/dml"
|
|
|
|
"github.com/unidoc/unioffice/color"
|
|
"github.com/unidoc/unioffice/common"
|
|
"github.com/unidoc/unioffice/measurement"
|
|
"github.com/unidoc/unioffice/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")
|
|
}
|