mirror of
https://github.com/unidoc/unioffice.git
synced 2025-04-27 13:48:54 +08:00
51 lines
1.1 KiB
Go
51 lines
1.1 KiB
Go
// Copyright 2017 Baliance. All rights reserved.
|
|
package main
|
|
|
|
import (
|
|
"log"
|
|
|
|
"baliance.com/gooxml/measurement"
|
|
|
|
"baliance.com/gooxml/common"
|
|
|
|
"baliance.com/gooxml/presentation"
|
|
)
|
|
|
|
func main() {
|
|
ppt := presentation.New()
|
|
imgColor, err := common.ImageFromFile("gophercolor.png")
|
|
if err != nil {
|
|
log.Fatalf("unable to create image: %s", err)
|
|
}
|
|
imgBW, err := common.ImageFromFile("gopher.png")
|
|
if err != nil {
|
|
log.Fatalf("unable to create image: %s", err)
|
|
}
|
|
|
|
irefColor, err := ppt.AddImage(imgColor)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
irefBW, err := ppt.AddImage(imgBW)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
slide := ppt.AddSlide()
|
|
|
|
ibColor := slide.AddImage(irefColor)
|
|
ibColor.Properties().SetWidth(2 * measurement.Inch)
|
|
ibColor.Properties().SetHeight(irefColor.RelativeHeight(2 * measurement.Inch))
|
|
|
|
ibBW := slide.AddImage(irefBW)
|
|
ibBW.Properties().SetWidth(2 * measurement.Inch)
|
|
ibBW.Properties().SetHeight(irefBW.RelativeHeight(2 * measurement.Inch))
|
|
ibBW.Properties().SetPosition(4*measurement.Inch, 4*measurement.Inch)
|
|
|
|
if err := ppt.Validate(); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
ppt.SaveToFile("image.pptx")
|
|
}
|