You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for (i, o) in images.iter().enumerate() {
let img = match **o {
XObject::Image(ref im) => im,
_ => continue
};
let data = img.image_data(&resolver)?;
let mut rgb_img: RgbImage = ImageBuffer::new(img.width, img.height);
rgb_img.copy_from_slice(data.as_bytes());
Fails with this error:
thread 'indexer_pdf::tests::test_indexing' panicked at 'source slice length (5250) does not match destination slice length (15750)', src/indexer/document/src/indexer_pdf.rs:127:21
stack backtrace:
0: rust_begin_unwind
at /rustc/903e279f468590fa3425f8aff7f3d61a5a873dbb/library/std/src/panicking.rs:593:5
1: core::panicking::panic_fmt
at /rustc/903e279f468590fa3425f8aff7f3d61a5a873dbb/library/core/src/panicking.rs:67:14
2: core::slice::<impl [T]>::copy_from_slice::len_mismatch_fail
at /rustc/903e279f468590fa3425f8aff7f3d61a5a873dbb/library/core/src/slice/mod.rs:3603:13
3: core::slice::<impl [T]>::copy_from_slice
at /rustc/903e279f468590fa3425f8aff7f3d61a5a873dbb/library/core/src/slice/mod.rs:3610:13
Using this to extract data from images:
Fails with this error:
With this PDF: Sample1.pdf
The text was updated successfully, but these errors were encountered: