From e9ae9b45b20a5df7e3aa15afcfac83ecb13394c6 Mon Sep 17 00:00:00 2001 From: xuri Date: Wed, 28 Jul 2021 00:38:09 +0800 Subject: change go module import path to github.com/xuri/excelize --- picture.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'picture.go') diff --git a/picture.go b/picture.go index e524224..0531272 100644 --- a/picture.go +++ b/picture.go @@ -54,7 +54,7 @@ func parseFormatPictureSet(formatSet string) (*formatPicture, error) { // _ "image/jpeg" // _ "image/png" // -// "github.com/360EntSecGroup-Skylar/excelize/v2" +// "github.com/xuri/excelize/v2" // ) // // func main() { @@ -68,7 +68,7 @@ func parseFormatPictureSet(formatSet string) (*formatPicture, error) { // fmt.Println(err) // } // // Insert a picture offset in the cell with external hyperlink, printing and positioning support. -// if err := f.AddPicture("Sheet1", "H2", "image.gif", `{"x_offset": 15, "y_offset": 10, "hyperlink": "https://github.com/360EntSecGroup-Skylar/excelize", "hyperlink_type": "External", "print_obj": true, "lock_aspect_ratio": false, "locked": false, "positioning": "oneCell"}`); err != nil { +// if err := f.AddPicture("Sheet1", "H2", "image.gif", `{"x_offset": 15, "y_offset": 10, "hyperlink": "https://github.com/xuri/excelize", "hyperlink_type": "External", "print_obj": true, "lock_aspect_ratio": false, "locked": false, "positioning": "oneCell"}`); err != nil { // fmt.Println(err) // } // if err := f.SaveAs("Book1.xlsx"); err != nil { @@ -110,7 +110,7 @@ func (f *File) AddPicture(sheet, cell, picture, format string) error { // _ "image/jpeg" // "io/ioutil" // -// "github.com/360EntSecGroup-Skylar/excelize/v2" +// "github.com/xuri/excelize/v2" // ) // // func main() { -- cgit v1.2.1