type Image struct {
Top int `xml:"top,attr"`
Left int `xml:"left,attr"`
Width int `xml:"width,attr"`
Height int `xml:"height,attr"`
Src string `xml:"src,attr"`
}
type Page struct {
Number int `xml:"number,attr"`
Height int `xml:"height,attr"`
Width int `xml:"width,attr"`
Texts []Text `xml:"text"`
Images []Image `xml:"image"`
}