2018-01-28 23:47:26 -08:00
|
|
|
const StillImage = {
|
|
|
|
props: [
|
|
|
|
'src',
|
|
|
|
'referrerpolicy',
|
|
|
|
'mimetype'
|
|
|
|
],
|
2018-03-11 16:31:33 -07:00
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
stopGifs: this.$store.state.config.stopGifs
|
|
|
|
}
|
|
|
|
},
|
2018-01-28 23:47:26 -08:00
|
|
|
computed: {
|
2018-02-03 09:32:13 -08:00
|
|
|
animated () {
|
2018-03-11 16:31:33 -07:00
|
|
|
return this.stopGifs && (this.mimetype === 'image/gif' || this.src.endsWith('.gif'))
|
2018-01-28 23:47:26 -08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
2018-02-03 08:55:45 -08:00
|
|
|
onLoad () {
|
2018-01-28 23:47:26 -08:00
|
|
|
const canvas = this.$refs.canvas
|
|
|
|
if (!canvas) return
|
2018-08-27 12:40:30 -07:00
|
|
|
const width = this.$refs.src.naturalWidth
|
|
|
|
const height = this.$refs.src.naturalHeight
|
|
|
|
canvas.width = width
|
|
|
|
canvas.height = height
|
|
|
|
canvas.getContext('2d').drawImage(this.$refs.src, 0, 0, width, height)
|
2018-01-28 23:47:26 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default StillImage
|