2020-05-13 13:16:17 +00:00
|
|
|
package images
|
|
|
|
|
|
|
|
import (
|
2022-02-10 17:19:34 +00:00
|
|
|
"errors"
|
|
|
|
|
2020-10-01 16:47:34 +00:00
|
|
|
"github.com/status-im/status-go/images"
|
2020-05-13 13:16:17 +00:00
|
|
|
"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) {
|
2020-10-01 16:47:34 +00:00
|
|
|
case images.JPEG:
|
2020-10-26 13:01:46 +00:00
|
|
|
return protobuf.ImageType_JPEG
|
2020-10-01 16:47:34 +00:00
|
|
|
case images.PNG:
|
2020-10-26 13:01:46 +00:00
|
|
|
return protobuf.ImageType_PNG
|
2020-10-01 16:47:34 +00:00
|
|
|
case images.GIF:
|
2020-10-26 13:01:46 +00:00
|
|
|
return protobuf.ImageType_GIF
|
2020-10-01 16:47:34 +00:00
|
|
|
case images.WEBP:
|
2020-10-26 13:01:46 +00:00
|
|
|
return protobuf.ImageType_WEBP
|
2020-05-14 05:40:40 +00:00
|
|
|
default:
|
2020-10-26 13:01:46 +00:00
|
|
|
return protobuf.ImageType_UNKNOWN_IMAGE_TYPE
|
2020-05-13 13:16:17 +00:00
|
|
|
}
|
|
|
|
}
|
2022-02-10 17:19:34 +00:00
|
|
|
|
|
|
|
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")
|
|
|
|
}
|
|
|
|
}
|