summaryrefslogtreecommitdiff
path: root/vendor/github.com/dsoprea/go-iptc/utility.go
blob: 5a4a10ad373cd7125712a5f50506e6aace851f50 (plain)
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
package iptc

import (
	"bytes"
	"fmt"

	"github.com/dsoprea/go-logging"
)

// DumpBytesToString returns a stringified list of hex-encoded bytes.
func DumpBytesToString(data []byte) string {
	b := new(bytes.Buffer)

	for i, x := range data {
		_, err := b.WriteString(fmt.Sprintf("%02x", x))
		log.PanicIf(err)

		if i < len(data)-1 {
			_, err := b.WriteRune(' ')
			log.PanicIf(err)
		}
	}

	return b.String()
}