package
Version:
v0.0.0-...-48663ca
Opens a new window with list of versions in this module.
Published: Nov 28, 2023
License: MIT
Opens a new window with license information.
Imports: 8
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Area struct {
Id string `json:"id"`
Alt string `json:"alt,omitempty"`
Min Point `json:"min"`
Max Point `json:"max"`
}
type Point struct {
X int `json:"x"`
Y int `json:"y"`
}
type XML struct {
Image struct {
Href string `xml:"href,attr"`
} `xml:"image"`
Area []XMLArea `xml:"area"`
}
type XMLArea struct {
Shape string `xml:"shape"`
Coords string `xml:"coords"`
XRef struct {
Href string `xml:"href,attr"`
Alt string `xml:",chardata"`
} `xml:"xref"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.