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 generate the thumbnail image for psd format file. Dose not support?
I see that code in project, dose this mean is not support psd format file?
func DetermineImageType(buf []byte) ImageType { if len(buf) < 12 { return ImageTypeUnknown } else if isJPEG(buf) { return ImageTypeJPEG } else if isPNG(buf) { return ImageTypePNG } else if isGIF(buf) { return ImageTypeGIF } else if isTIFF(buf) { return ImageTypeTIFF } else if isWEBP(buf) { return ImageTypeWEBP } else if isAVIF(buf) { return ImageTypeAVIF } else if isHEIF(buf) { return ImageTypeHEIF } else if isSVG(buf) { return ImageTypeSVG } else if isPDF(buf) { return ImageTypePDF } else if isBMP(buf) { return ImageTypeBMP } else if isJP2K(buf) { return ImageTypeJP2K } else { return ImageTypeUnknown } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I want to generate the thumbnail image for psd format file. Dose not support?
I see that code in project, dose this mean is not support psd format file?
The text was updated successfully, but these errors were encountered: