You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
706 B
21 lines
706 B
package podcast |
|
|
|
import "encoding/xml" |
|
|
|
// Image represents an image. |
|
// |
|
// Podcast feeds contain artwork that is a minimum size of |
|
// 1400 x 1400 pixels and a maximum size of 3000 x 3000 pixels, |
|
// 72 dpi, in JPEG or PNG format with appropriate file |
|
// extensions (.jpg, .png), and in the RGB colorspace. To optimize |
|
// images for mobile devices, Apple recommends compressing your |
|
// image files. |
|
type Image struct { |
|
XMLName xml.Name `xml:"image"` |
|
URL string `xml:"url"` |
|
Title string `xml:"title"` |
|
Link string `xml:"link"` |
|
Description string `xml:"description,omitempty"` |
|
Width int `xml:"width,omitempty"` |
|
Height int `xml:"height,omitempty"` |
|
}
|
|
|