2014-12-24 03:04:10 +01:00
|
|
|
// Copyright 2014 Hajime Hoshi
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
2014-12-17 12:03:26 +01:00
|
|
|
|
|
|
|
package ebitenutil
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/hajimehoshi/ebiten"
|
|
|
|
"image"
|
2014-12-22 17:26:44 +01:00
|
|
|
"image/png"
|
2014-12-17 12:03:26 +01:00
|
|
|
"os"
|
|
|
|
)
|
|
|
|
|
2014-12-20 18:59:00 +01:00
|
|
|
func NewImageFromFile(path string, filter ebiten.Filter) (*ebiten.Image, image.Image, error) {
|
2014-12-17 12:03:26 +01:00
|
|
|
file, err := os.Open(path)
|
|
|
|
if err != nil {
|
2014-12-17 13:49:28 +01:00
|
|
|
return nil, nil, err
|
2014-12-17 12:03:26 +01:00
|
|
|
}
|
|
|
|
defer file.Close()
|
|
|
|
img, _, err := image.Decode(file)
|
|
|
|
if err != nil {
|
2014-12-17 13:49:28 +01:00
|
|
|
return nil, nil, err
|
2014-12-17 12:03:26 +01:00
|
|
|
}
|
2014-12-22 02:36:42 +01:00
|
|
|
img2, err := ebiten.NewImageFromImage(img, filter)
|
2014-12-17 13:49:28 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
2014-12-22 02:36:42 +01:00
|
|
|
return img2, img, err
|
2014-12-17 12:03:26 +01:00
|
|
|
}
|
2014-12-22 17:26:44 +01:00
|
|
|
|
|
|
|
func SaveImageAsPNG(path string, img *ebiten.Image) error {
|
|
|
|
file, err := os.Create(path)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer file.Close()
|
|
|
|
if err := png.Encode(file, img); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|