Go语言:获取图片文件的类型

栏目: Go · 发布时间: 5年前

Golang 不支持识别图片文件类型,需要安装 第三方扩展库 实现

1. 安装

go get github.com/shamsher31/goimgtype

2. 使用

package main

import (
    "image"
    "os"

    imgtype "github.com/shamsher31/goimgtype"
)

func main() {

    // 图片路径
    var file_name string = `./test.png`

    // 读取图片
    old_file, err1 := os.Open(file_name)
    if err1 != nil {
        panic(err)
    }
    defer old_file.Close()

    // 获取图片的类型
    datatype, err2 := imgtype.Get(file_name)
    if err2 != nil {
        println(`不是图片文件`)
    } else {
        // 根据文件类型执行响应的操作
        switch datatype {
        case `image/jpeg`:
            println(`这是JPG文件`)
        case `image/png`:
            println(`这是PNG文件`)
        }
    }
}

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Learning PHP, MySQL, JavaScript, and CSS

Learning PHP, MySQL, JavaScript, and CSS

Robin Nixon / O'Reilly Media / 2012-9-3 / USD 39.99

If you're familiar with HTML, you can quickly learn how to build interactive, data-driven websites with the powerful combination of PHP, MySQL, and JavaScript - the top technologies for creating moder......一起来看看 《Learning PHP, MySQL, JavaScript, and CSS》 这本书的介绍吧!

CSS 压缩/解压工具
CSS 压缩/解压工具

在线压缩/解压 CSS 代码

XML、JSON 在线转换
XML、JSON 在线转换

在线XML、JSON转换工具

html转js在线工具
html转js在线工具

html转js在线工具