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
Zip::InputStream
Gem: rubyzip
rubyzip
Repo: rubyzip/rubyzip
rubyzip/rubyzip
Documentation:
entry.get_input_stream
Example:
Zip::File.open(zipfile.path) do |zip_file_entries| zip_file_entries.each_with_index do |entry, index| pdf_reader = PDF::Reader.new(entry.get_input_stream) ... end end
Current error: ArgumentError: input must be an IO-like object or a filename (Zip::InputStream)
ArgumentError: input must be an IO-like object or a filename (Zip::InputStream)
Zip::InputStream is documented specifically as IO-like.
Adding compatibility for this would remove the need to unzip a ZIP file of PDFs, trading memory for disk space.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Gem:
rubyzip
Repo:
rubyzip/rubyzip
Documentation:
Zip::InputStream
entry.get_input_stream
Example:
Current error:
ArgumentError: input must be an IO-like object or a filename (Zip::InputStream)
Zip::InputStream
is documented specifically as IO-like.Adding compatibility for this would remove the need to unzip a ZIP file of PDFs, trading memory for disk space.
The text was updated successfully, but these errors were encountered: