mirror of
https://codeberg.org/aryak/mozhi
synced 2024-11-09 00:52:23 +05:30
32 lines
733 B
Go
32 lines
733 B
Go
package cmd
|
|
|
|
import (
|
|
"codeberg.org/aryak/simplytranslate/utils"
|
|
"fmt"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var file string
|
|
|
|
var imgtxtCmd = &cobra.Command{
|
|
Use: "imgtxt",
|
|
Short: "Image -> Text.",
|
|
Long: `Convert given image (filename) to text using gosseract.`,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
text, err := utils.ImgTxt(file)
|
|
if err != nil {
|
|
fmt.Println("Failed to convert image to text")
|
|
} else {
|
|
fmt.Println(text)
|
|
}
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(imgtxtCmd)
|
|
|
|
imgtxtCmd.Flags().StringVarP(&file, "file", "f", "", "The query SimplyTranslate will listen to. Defaults to 3000, and overrides the SIMPLYTRANSLATE_query environment variable.")
|
|
|
|
langlist = imgtxtCmd.Flag("file").Value.String()
|
|
}
|