I’m using excelize in golang, and I inserted a picture into a cell, but it’s align left. I think it’s the way of inserting the picture by excelize, which is add picture over cell. I couldn’t change the alignment by setting the cell style.
if err := f.AddPicture("Sheet1", "A1", "IMAGE.png",
&excelize.GraphicOptions{
AutoFit: true,
LockAspectRatio: true,
}); err != nil {
......
}
3