This page temporarily redirects to gemini://blekksprut.net/aspeq/.
aspeq finds the closest "standard" aspect ratio from an image file, or from relative or absolute dimensions (width and height)
$ aspeq *.jpeg 1.66.jpeg: super16 1.77.jpeg: sixteen-nine 2.35.jpeg: cinemascope $ aspeq -x 1.66.jpeg 1.66.jpeg: 5:3
package main import ( "fmt" "blekksprut.net/aspeq" ) func main() { ratio := aspeq.Match(320, 240) fmt.Println(ratio.Xy()) // prints "4:3" ar, err := aspeq.FromImage("1.66.jpeg") // a 40:24 image if err != nil { panic(err) } fmt.Println(ar.Name) // prints "super16" }
text/gemini; lang=en
This content has been proxied by September (ba2dc).