# fix : file close 没有关闭
This commit is contained in:
parent
ec37b114c3
commit
ce5b37a4ac
|
@ -88,7 +88,11 @@ func (f *File) AddPicture(sheet, cell, picture, format string) error {
|
||||||
if !ok {
|
if !ok {
|
||||||
return errors.New("Unsupported image extension")
|
return errors.New("Unsupported image extension")
|
||||||
}
|
}
|
||||||
readFile, _ := os.Open(picture)
|
readFile, err := os.Open(picture)
|
||||||
|
if err!=nil{
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
defer readFile.Close()
|
||||||
image, _, _ := image.DecodeConfig(readFile)
|
image, _, _ := image.DecodeConfig(readFile)
|
||||||
_, file := filepath.Split(picture)
|
_, file := filepath.Split(picture)
|
||||||
formatSet, err := parseFormatPictureSet(format)
|
formatSet, err := parseFormatPictureSet(format)
|
||||||
|
|
Loading…
Reference in New Issue