We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to compress a tif image of 1GB or more, but it always returns unknown format .But it can successfully compress 700MB tif image.
unknown format
f := "E:\\workPlace\\sys-tool\\example\\baidu\\V24080165.tif" fs, err := os.Open(f) if err != nil { fmt.Println(err) return } img, err := imaging.Decode(fs) if err != nil { fmt.Println(err) return } fmt.Println(img.Bounds().Dx())
The text was updated successfully, but these errors were encountered:
My tif image's magic is II+.This is different with default format(II* or MM*).
magic
II+
default format
II*
MM*
Sorry, something went wrong.
No branches or pull requests
I want to compress a tif image of 1GB or more, but it always returns
unknown format
.But it can successfully compress 700MB tif image.The text was updated successfully, but these errors were encountered: