@@ -2,15 +2,14 @@ package excelize
2
2
3
3
import (
4
4
"math"
5
- "strconv"
6
5
"strings"
7
6
)
8
7
9
8
// Define the default cell size and EMU unit of measurement.
10
9
const (
11
- defaultColWidthPixels int = 64
12
- defaultRowHeightPixels int = 20
13
- EMU int = 9525
10
+ defaultColWidthPixels float64 = 64
11
+ defaultRowHeightPixels float64 = 20
12
+ EMU int = 9525
14
13
)
15
14
16
15
// GetColVisible provides a function to get visible of a single column by given
@@ -157,26 +156,26 @@ func (f *File) positionObjectPixels(sheet string, colStart, rowStart, x1, y1, wi
157
156
158
157
// Calculate the absolute x offset of the top-left vertex.
159
158
for colID := 1 ; colID <= colStart ; colID ++ {
160
- xAbs += f .GetColWidth (sheet , colID )
159
+ xAbs += f .getColWidth (sheet , colID )
161
160
}
162
161
xAbs += x1
163
162
164
163
// Calculate the absolute y offset of the top-left vertex.
165
164
// Store the column change to allow optimisations.
166
165
for rowID := 1 ; rowID <= rowStart ; rowID ++ {
167
- yAbs += f .GetRowHeight (sheet , rowID )
166
+ yAbs += f .getRowHeight (sheet , rowID )
168
167
}
169
168
yAbs += y1
170
169
171
170
// Adjust start column for offsets that are greater than the col width.
172
- for x1 >= f .GetColWidth (sheet , colStart ) {
173
- x1 -= f .GetColWidth (sheet , colStart )
171
+ for x1 >= f .getColWidth (sheet , colStart ) {
172
+ x1 -= f .getColWidth (sheet , colStart )
174
173
colStart ++
175
174
}
176
175
177
176
// Adjust start row for offsets that are greater than the row height.
178
- for y1 >= f .GetRowHeight (sheet , rowStart ) {
179
- y1 -= f .GetRowHeight (sheet , rowStart )
177
+ for y1 >= f .getRowHeight (sheet , rowStart ) {
178
+ y1 -= f .getRowHeight (sheet , rowStart )
180
179
rowStart ++
181
180
}
182
181
@@ -188,15 +187,15 @@ func (f *File) positionObjectPixels(sheet string, colStart, rowStart, x1, y1, wi
188
187
height += y1
189
188
190
189
// Subtract the underlying cell widths to find end cell of the object.
191
- for width >= f .GetColWidth (sheet , colEnd ) {
190
+ for width >= f .getColWidth (sheet , colEnd ) {
192
191
colEnd ++
193
- width -= f .GetColWidth (sheet , colEnd )
192
+ width -= f .getColWidth (sheet , colEnd )
194
193
}
195
194
196
195
// Subtract the underlying cell heights to find end cell of the object.
197
- for height >= f .GetRowHeight (sheet , rowEnd ) {
196
+ for height >= f .getRowHeight (sheet , rowEnd ) {
198
197
rowEnd ++
199
- height -= f .GetRowHeight (sheet , rowEnd )
198
+ height -= f .getRowHeight (sheet , rowEnd )
200
199
}
201
200
202
201
// The end vertices are whatever is left from the width and height.
@@ -205,9 +204,9 @@ func (f *File) positionObjectPixels(sheet string, colStart, rowStart, x1, y1, wi
205
204
return colStart , rowStart , xAbs , yAbs , colEnd , rowEnd , x2 , y2
206
205
}
207
206
208
- // GetColWidth provides function to get column width in pixels by given sheet
207
+ // getColWidth provides function to get column width in pixels by given sheet
209
208
// name and column index.
210
- func (f * File ) GetColWidth (sheet string , col int ) int {
209
+ func (f * File ) getColWidth (sheet string , col int ) int {
211
210
xlsx := f .workSheetReader (sheet )
212
211
if xlsx .Cols != nil {
213
212
var width float64
@@ -221,21 +220,27 @@ func (f *File) GetColWidth(sheet string, col int) int {
221
220
}
222
221
}
223
222
// Optimisation for when the column widths haven't changed.
224
- return defaultColWidthPixels
223
+ return int ( defaultColWidthPixels )
225
224
}
226
225
227
- // GetRowHeight provides function to get row height in pixels by given sheet
228
- // name and row index.
229
- func (f * File ) GetRowHeight (sheet string , row int ) int {
226
+ // GetColWidth provides function to get column width by given sheet name and
227
+ // column index.
228
+ func (f * File ) GetColWidth (sheet , column string ) float64 {
229
+ col := TitleToNumber (strings .ToUpper (column )) + 1
230
230
xlsx := f .workSheetReader (sheet )
231
- for _ , v := range xlsx .SheetData .Row {
232
- if v .R == row && v .Ht != "" {
233
- ht , _ := strconv .ParseFloat (v .Ht , 64 )
234
- return int (convertRowHeightToPixels (ht ))
231
+ if xlsx .Cols != nil {
232
+ var width float64
233
+ for _ , v := range xlsx .Cols .Col {
234
+ if v .Min <= col && col <= v .Max {
235
+ width = v .Width
236
+ }
237
+ }
238
+ if width != 0 {
239
+ return width
235
240
}
236
241
}
237
- // Optimisation for when the row heights haven't changed.
238
- return defaultRowHeightPixels
242
+ // Optimisation for when the column widths haven't changed.
243
+ return defaultColWidthPixels
239
244
}
240
245
241
246
// convertColWidthToPixels provieds function to convert the width of a cell from
0 commit comments