[Go] 이미지 크기 가져오기

4185 단어 Gotech
Go의 표준 라이브러리입니다.그림 크기를 가져오는 데 사용되는 샘플 코드입니다.

샘플 코드


main.go
package main

import (
	"fmt"
	"os"

	"image"
	_ "image/jpeg" // NOTE: jpeg 画像を読み込むために必要
	// _ "image/gif" // NOTE: gif 画像を読み込むために必要(今回は使用しません)
	// _ "image/png" // NOTE: png 画像を読み込むために必要(今回は使用しません)
)

func main() {
	file, err := os.Open("./example.jpeg")
	if err != nil {
		panic(err)
	}
	defer file.Close()

	// 画像を読み込み
	img, _, err := image.Decode(file)
	if err != nil {
		panic(err)
	}

	// 幅 -> img.Bounds().Dx()
	// 高さ -> img.Bounds().Dy()
	fmt.Println("width:", img.Bounds().Dx())
	fmt.Println("height:", img.Bounds().Dy())
	// => width: 1200
	//    height: 800
}

참고 자료


https://golang.org/pkg/image/

좋은 웹페이지 즐겨찾기