1
0
mirror of https://github.com/fumiama/imgsz.git synced 2026-06-12 06:00:28 +08:00

🎉 完成

This commit is contained in:
fumiama
2022-01-08 15:09:05 +08:00
parent d016c6e69d
commit fd0b2eae31
14 changed files with 1181 additions and 0 deletions

View File

@@ -1,2 +1,12 @@
# imgsz
Image size analyzer for jpg/png/gif/webp
# Usage
```go
// DecodeSize decodes the dimensions of an image that has
// been encoded in a registered format. The string returned is the format name
// used during format registration. Format registration is typically done by
// an init function in the codec-specific package.
func DecodeSize(r io.Reader) (Size, string, error)
```