| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308 |
- from magic_pdf.libs.commons import fitz
- import os
- def draw_bbox_on_page(raw_pdf_doc: fitz.Document, paras_dict:dict, save_path: str):
- """
- 在page上画出bbox,保存到save_path
- """
- # 检查文件是否存在
- is_new_pdf = False
- if os.path.exists(save_path):
- # 打开现有的 PDF 文件
- doc = fitz.open(save_path)
- else:
- # 创建一个新的空白 PDF 文件
- is_new_pdf = True
- doc = fitz.open('')
- color_map = {
- 'image': fitz.pdfcolor["yellow"],
- 'text': fitz.pdfcolor['blue'],
- "table": fitz.pdfcolor['green']
- }
-
- for k, v in paras_dict.items():
- page_idx = v['page_idx']
- width = raw_pdf_doc[page_idx].rect.width
- height = raw_pdf_doc[page_idx].rect.height
- new_page = doc.new_page(width=width, height=height)
- shape = new_page.new_shape()
- for order, block in enumerate(v['preproc_blocks']):
- rect = fitz.Rect(block['bbox'])
- shape = new_page.new_shape()
- shape.draw_rect(rect)
- shape.finish(color=None, fill=color_map['text'], fill_opacity=0.2)
- shape.finish()
- shape.commit()
-
- for img in v['images']:
- # 原始box画上去
- rect = fitz.Rect(img['bbox'])
- shape = new_page.new_shape()
- shape.draw_rect(rect)
- shape.finish(color=None, fill=fitz.pdfcolor['yellow'])
- shape.finish()
- shape.commit()
- for img in v['image_backup']:
- # 原始box画上去
- rect = fitz.Rect(img['bbox'])
- shape = new_page.new_shape()
- shape.draw_rect(rect)
- shape.finish(color=fitz.pdfcolor['yellow'], fill=None)
- shape.finish()
- shape.commit()
-
- for tb in v['droped_text_block']:
- # 原始box画上去
- rect = fitz.Rect(tb['bbox'])
- shape = new_page.new_shape()
- shape.draw_rect(rect)
- shape.finish(color=None, fill=fitz.pdfcolor['black'], fill_opacity=0.4)
- shape.finish()
- shape.commit()
-
- # TODO table
- for tb in v['tables']:
- rect = fitz.Rect(tb['bbox'])
- shape = new_page.new_shape()
- shape.draw_rect(rect)
- shape.finish(color=None, fill=fitz.pdfcolor['green'], fill_opacity=0.2)
- shape.finish()
- shape.commit()
- parent_dir = os.path.dirname(save_path)
- if not os.path.exists(parent_dir):
- os.makedirs(parent_dir)
- if is_new_pdf:
- doc.save(save_path)
- else:
- doc.saveIncr()
- doc.close()
-
- def debug_show_bbox(raw_pdf_doc: fitz.Document, page_idx: int, bboxes: list, droped_bboxes:list, expect_drop_bboxes:list, save_path: str, expected_page_id:int):
- """
- 以覆盖的方式写个临时的pdf,用于debug
- """
- if page_idx!=expected_page_id:
- return
-
- if os.path.exists(save_path):
- # 删除已经存在的文件
- os.remove(save_path)
- # 创建一个新的空白 PDF 文件
- doc = fitz.open('')
- width = raw_pdf_doc[page_idx].rect.width
- height = raw_pdf_doc[page_idx].rect.height
- new_page = doc.new_page(width=width, height=height)
- shape = new_page.new_shape()
- for bbox in bboxes:
- # 原始box画上去
- rect = fitz.Rect(*bbox[0:4])
- shape = new_page.new_shape()
- shape.draw_rect(rect)
- shape.finish(color=fitz.pdfcolor['red'], fill=fitz.pdfcolor['blue'], fill_opacity=0.2)
- shape.finish()
- shape.commit()
-
- for bbox in droped_bboxes:
- # 原始box画上去
- rect = fitz.Rect(*bbox[0:4])
- shape = new_page.new_shape()
- shape.draw_rect(rect)
- shape.finish(color=None, fill=fitz.pdfcolor['yellow'], fill_opacity=0.2)
- shape.finish()
- shape.commit()
-
- for bbox in expect_drop_bboxes:
- # 原始box画上去
- rect = fitz.Rect(*bbox[0:4])
- shape = new_page.new_shape()
- shape.draw_rect(rect)
- shape.finish(color=fitz.pdfcolor['red'], fill=None)
- shape.finish()
- shape.commit()
- # shape.insert_textbox(fitz.Rect(200, 0, 600, 20), f"total bboxes: {len(bboxes)}", fontname="helv", fontsize=12,
- # color=(0, 0, 0))
- # shape.finish(color=fitz.pdfcolor['black'])
- # shape.commit()
- parent_dir = os.path.dirname(save_path)
- if not os.path.exists(parent_dir):
- os.makedirs(parent_dir)
- doc.save(save_path)
- doc.close()
-
- def debug_show_page(page, bboxes1: list,bboxes2: list,bboxes3: list,):
- save_path = "./tmp/debug.pdf"
- if os.path.exists(save_path):
- # 删除已经存在的文件
- os.remove(save_path)
- # 创建一个新的空白 PDF 文件
- doc = fitz.open('')
- width = page.rect.width
- height = page.rect.height
- new_page = doc.new_page(width=width, height=height)
-
- shape = new_page.new_shape()
- for bbox in bboxes1:
- # 原始box画上去
- rect = fitz.Rect(*bbox[0:4])
- shape = new_page.new_shape()
- shape.draw_rect(rect)
- shape.finish(color=fitz.pdfcolor['red'], fill=fitz.pdfcolor['blue'], fill_opacity=0.2)
- shape.finish()
- shape.commit()
-
- for bbox in bboxes2:
- # 原始box画上去
- rect = fitz.Rect(*bbox[0:4])
- shape = new_page.new_shape()
- shape.draw_rect(rect)
- shape.finish(color=None, fill=fitz.pdfcolor['yellow'], fill_opacity=0.2)
- shape.finish()
- shape.commit()
-
- for bbox in bboxes3:
- # 原始box画上去
- rect = fitz.Rect(*bbox[0:4])
- shape = new_page.new_shape()
- shape.draw_rect(rect)
- shape.finish(color=fitz.pdfcolor['red'], fill=None)
- shape.finish()
- shape.commit()
-
- parent_dir = os.path.dirname(save_path)
- if not os.path.exists(parent_dir):
- os.makedirs(parent_dir)
- doc.save(save_path)
- doc.close()
-
-
-
-
- def draw_layout_bbox_on_page(raw_pdf_doc: fitz.Document, paras_dict:dict, header, footer, pdf_path: str):
- """
- 在page上画出bbox,保存到save_path
- """
- # 检查文件是否存在
- is_new_pdf = False
- if os.path.exists(pdf_path):
- # 打开现有的 PDF 文件
- doc = fitz.open(pdf_path)
- else:
- # 创建一个新的空白 PDF 文件
- is_new_pdf = True
- doc = fitz.open('')
- for k, v in paras_dict.items():
- page_idx = v['page_idx']
- layouts = v['layout_bboxes']
- page = doc[page_idx]
- shape = page.new_shape()
- for order, layout in enumerate(layouts):
- border_offset = 1
- rect_box = layout['layout_bbox']
- layout_label = layout['layout_label']
- fill_color = fitz.pdfcolor['pink'] if layout_label=='U' else None
- rect_box = [rect_box[0]+1, rect_box[1]-border_offset, rect_box[2]-1, rect_box[3]+border_offset]
- rect = fitz.Rect(*rect_box)
- shape.draw_rect(rect)
- shape.finish(color=fitz.pdfcolor['red'], fill=fill_color, fill_opacity=0.4)
- """
- draw order text on layout box
- """
- font_size = 10
- shape.insert_text((rect_box[0] + 1, rect_box[1] + font_size), f"{order}", fontsize=font_size, color=(0, 0, 0))
-
- """画上footer header"""
- if header:
- shape.draw_rect(fitz.Rect(header))
- shape.finish(color=None, fill=fitz.pdfcolor['black'], fill_opacity=0.2)
- if footer:
- shape.draw_rect(fitz.Rect(footer))
- shape.finish(color=None, fill=fitz.pdfcolor['black'], fill_opacity=0.2)
-
- shape.commit()
-
- if is_new_pdf:
- doc.save(pdf_path)
- else:
- doc.saveIncr()
- doc.close()
-
- @DeprecationWarning
- def draw_layout_on_page(raw_pdf_doc: fitz.Document, page_idx: int, page_layout: list, pdf_path: str):
- """
- 把layout的box用红色边框花在pdf_path的page_idx上
- """
- def draw(shape, layout, fill_color=fitz.pdfcolor['pink']):
- border_offset = 1
- rect_box = layout['layout_bbox']
- layout_label = layout['layout_label']
- sub_layout = layout['sub_layout']
- if len(sub_layout)==0:
- fill_color = fill_color if layout_label=='U' else None
- rect_box = [rect_box[0]+1, rect_box[1]-border_offset, rect_box[2]-1, rect_box[3]+border_offset]
- rect = fitz.Rect(*rect_box)
- shape.draw_rect(rect)
- shape.finish(color=fitz.pdfcolor['red'], fill=fill_color, fill_opacity=0.2)
- # if layout_label=='U':
- # bad_boxes = layout.get("bad_boxes", [])
- # for bad_box in bad_boxes:
- # rect = fitz.Rect(*bad_box)
- # shape.draw_rect(rect)
- # shape.finish(color=fitz.pdfcolor['red'], fill=fitz.pdfcolor['red'], fill_opacity=0.2)
- # else:
- # rect = fitz.Rect(*rect_box)
- # shape.draw_rect(rect)
- # shape.finish(color=fitz.pdfcolor['blue'])
-
- for sub_layout in sub_layout:
- draw(shape, sub_layout)
- shape.commit()
-
-
- # 检查文件是否存在
- is_new_pdf = False
- if os.path.exists(pdf_path):
- # 打开现有的 PDF 文件
- doc = fitz.open(pdf_path)
- else:
- # 创建一个新的空白 PDF 文件
- is_new_pdf = True
- doc = fitz.open('')
- page = doc[page_idx]
- shape = page.new_shape()
- for order, layout in enumerate(page_layout):
- draw(shape, layout, fitz.pdfcolor['yellow'])
- # shape.insert_textbox(fitz.Rect(200, 0, 600, 20), f"total bboxes: {len(layout)}", fontname="helv", fontsize=12,
- # color=(0, 0, 0))
- # shape.finish(color=fitz.pdfcolor['black'])
- # shape.commit()
- parent_dir = os.path.dirname(pdf_path)
- if not os.path.exists(parent_dir):
- os.makedirs(parent_dir)
- if is_new_pdf:
- doc.save(pdf_path)
- else:
- doc.saveIncr()
- doc.close()
-
|