jiabotao
jiabotao
```Rust use std::fs::File; use std::io::{Read}; use docx_rs::*; fn main() { let mut file = File::open("./aaa.docx").unwrap(); let mut buf = vec![]; file.read_to_end(&mut buf).unwrap(); let docx = read_docx(&buf).unwrap(); let new_docx = copy_docx(docx);...
1: when i want resolve images in run ,the 'pic.image' is empty RunChild::Drawing(draw_box) => { let drawing_data = draw_box.data.unwrap(); match drawing_data { DrawingData::Pic(pic) => { println!("fount image"); let pic_image =...