Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fumiama/imgsz
Image size analyzer for jpg/png/gif/webp
https://github.com/fumiama/imgsz
Last synced: 8 days ago
JSON representation
Image size analyzer for jpg/png/gif/webp
- Host: GitHub
- URL: https://github.com/fumiama/imgsz
- Owner: fumiama
- License: gpl-3.0
- Created: 2022-01-08T04:06:31.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-06T09:09:40.000Z (8 months ago)
- Last Synced: 2024-10-30T17:08:46.797Z (2 months ago)
- Language: Go
- Size: 2.23 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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)
```