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-10 17:59:38 +01:00
|
|
|
|
2018-02-08 18:46:33 +01:00
|
|
|
//go:generate file2byteslice -input text.png -output bindata.go -package assets -var textPng
|
2016-07-31 15:02:56 +02:00
|
|
|
//go:generate gofmt -s -w .
|
|
|
|
|
2014-12-10 17:59:38 +01:00
|
|
|
package assets
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2017-03-04 04:02:41 +01:00
|
|
|
"fmt"
|
2014-12-10 17:59:38 +01:00
|
|
|
"image"
|
|
|
|
_ "image/png"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2018-02-10 17:56:13 +01:00
|
|
|
CharWidth = 6
|
|
|
|
CharHeight = 16
|
2014-12-10 17:59:38 +01:00
|
|
|
)
|
|
|
|
|
2018-02-10 17:56:13 +01:00
|
|
|
func CreateTextImage() image.Image {
|
2018-02-08 18:46:33 +01:00
|
|
|
img, _, err := image.Decode(bytes.NewBuffer(textPng))
|
2015-01-06 14:59:15 +01:00
|
|
|
if err != nil {
|
2017-03-04 04:02:41 +01:00
|
|
|
panic(fmt.Sprintf("assets: image.Decode failed, %v", err))
|
2015-01-06 14:59:15 +01:00
|
|
|
}
|
2017-03-04 04:02:41 +01:00
|
|
|
return img
|
2014-12-10 17:59:38 +01:00
|
|
|
}
|