summaryrefslogtreecommitdiffstatshomepage
path: root/image.go
blob: 90b73729d7e2fb1516940b9d0a2809f1c77f2db7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright 2010 The Walk Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// +build windows

package walk

import (
	"strings"
)

import (
	"github.com/lxn/win"
)

type Image interface {
	draw(hdc win.HDC, location Point) error
	drawStretched(hdc win.HDC, bounds Rectangle) error
	Dispose()
	Size() Size
}

func NewImageFromFile(filePath string) (Image, error) {
	if strings.HasSuffix(filePath, ".ico") {
		return NewIconFromFile(filePath)
	} else if strings.HasSuffix(filePath, ".emf") {
		return NewMetafileFromFile(filePath)
	}

	return NewBitmapFromFile(filePath)
}