Write compressed ContactCard
This commit is contained in:
parent
8195a22300
commit
f4ebb5cab1
@ -7,6 +7,7 @@ import (
|
|||||||
"image"
|
"image"
|
||||||
"image/color"
|
"image/color"
|
||||||
"image/png"
|
"image/png"
|
||||||
|
"io/ioutil"
|
||||||
"log"
|
"log"
|
||||||
"math"
|
"math"
|
||||||
"os"
|
"os"
|
||||||
@ -53,6 +54,18 @@ func (contact *ContactCard) Compress() ([]byte, error) {
|
|||||||
return b.Bytes(), nil
|
return b.Bytes(), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (contact *ContactCard) WriteCompressed(filename string) error {
|
||||||
|
out, err := contact.Compress()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
err = ioutil.WriteFile(filename, out, 0600)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
func (contact *ContactCard) WritePng(filename string) {
|
func (contact *ContactCard) WritePng(filename string) {
|
||||||
out, err := proto.Marshal(contact)
|
out, err := proto.Marshal(contact)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
Loading…
Reference in New Issue
Block a user