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文件`) } } }
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- 获取系统语言/当前 App支持语言
- go语言 从命令行获取参数解析
- Go语言-执行系统命令以及获取命令行参数
- 使用C语言获取DNS nameserver并进行域名解析
- C语言获取当前时间(Linux环境下,VC6.0,Codeblock环境下通用)
- ADO.NET获取数据(DataSet)同时获取表的架构实例
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
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》 这本书的介绍吧!