File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1+ // Package pbm implements a Portable Bit Map. (PBM) image decoder and encoder. The supported image
2+ // color model is color.RGBAModel.
3+ //
4+ // The PBM specification is at http://netpbm.sourceforge.net/doc/pbm.html.
5+ package pbm
6+
17// Copyright [2022] slashformotion
28
39// Licensed under the Apache License, Version 2.0 (the "License");
1117// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1218// See the License for the specific language governing permissions and
1319// limitations under the License.
14- package pbm
15-
16- // Package pbm implements a Portable Bit Map. (PBM) image decoder and encoder. The supported image
17- // color model is color.RGBAModel.
18- //
19- // The PBM specification is at http://netpbm.sourceforge.net/doc/pbm.html.
2020
2121import (
2222 "bufio"
Original file line number Diff line number Diff line change 1+ package pbm
2+
13// Copyright [2022] slashformotion
24
35// Licensed under the Apache License, Version 2.0 (the "License");
1214// See the License for the specific language governing permissions and
1315// limitations under the License.
1416
15- package pbm
16-
1717import (
1818 "bufio"
1919 "errors"
You can’t perform that action at this time.
0 commit comments