status-go/protocol/images/type.go

39 lines
794 B
Go
Raw Normal View History

package images
import (
"errors"
"github.com/status-im/status-go/images"
"github.com/status-im/status-go/protocol/protobuf"
)
2020-10-26 13:01:46 +00:00
func ImageType(buf []byte) protobuf.ImageType {
2020-11-24 23:16:19 +00:00
switch images.GetType(buf) {
case images.JPEG:
2020-10-26 13:01:46 +00:00
return protobuf.ImageType_JPEG
case images.PNG:
2020-10-26 13:01:46 +00:00
return protobuf.ImageType_PNG
case images.GIF:
2020-10-26 13:01:46 +00:00
return protobuf.ImageType_GIF
case images.WEBP:
2020-10-26 13:01:46 +00:00
return protobuf.ImageType_WEBP
default:
2020-10-26 13:01:46 +00:00
return protobuf.ImageType_UNKNOWN_IMAGE_TYPE
}
}
func ImageMime(buf []byte) (string, error) {
switch images.GetType(buf) {
case images.JPEG:
return "image/jpeg", nil
case images.PNG:
return "image/png", nil
case images.GIF:
return "image/gif", nil
case images.WEBP:
return "image/webp", nil
default:
return "", errors.New("mime type not found")
}
}