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
dxatf_7194703270eb7fa37dc11189ef47dcdb.pdf
This is a pdf document. I want to convert it to image by the following code, But get crash:
warning: ... repeated 33 times... error: aborting process from uncaught error!
my code to reappear:
package main import ( "fmt" "image/png" "os" "path/filepath" "github.com/gen2brain/go-fitz" ) func main() { filePath := "document file path" doc, err := fitz.New(filePath) if err != nil { panic(err) } for i := 0; i < doc.NumPage(); i++ { img, err := doc.Image(i) localFile := filepath.Join("./", fmt.Sprintf("%d.png", i)) f, err := os.Create(localFile) if err != nil { panic(err) } if err := png.Encode(f, img); err != nil { panic(err) } fmt.Println(localFile) } }
please, How i solve it?
The text was updated successfully, but these errors were encountered:
@helios741 have you found the fix? I'm also having the same problem
Sorry, something went wrong.
Now it will return error for broken files when load/run page is started.
No branches or pull requests
dxatf_7194703270eb7fa37dc11189ef47dcdb.pdf
This is a pdf document. I want to convert it to image by the following code, But get crash:
warning: ... repeated 33 times... error: aborting process from uncaught error!
my code to reappear:
please, How i solve it?
The text was updated successfully, but these errors were encountered: