Skip to content

Commit

Permalink
v0.2.22
Browse files Browse the repository at this point in the history
  • Loading branch information
yh202109 committed Aug 27, 2024
1 parent f92d44a commit ba4a976
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
My tool box in Python.

Quick links:
[Github](https://github.com/yh202109/mtbp3) |
[Documentation](https://yh202109.github.io/mtbp3/index.html) |
[StatLab](https://yh202109.github.io/mtbp3Lab/index.html).
[Mtbp3 Documentation](https://yh202109.github.io/mtbp3/index.html) |
[StatLab Documentation](https://yh202109.github.io/mtbp3Lab/index.html) |
[Github](https://github.com/yh202109/mtbp3)

Functions are grouped into:

Expand Down
20 changes: 16 additions & 4 deletions docs/std_iso_pdf.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,19 @@
"outputs": [],
"source": [
"img = pfr.get_image(page_index=2, image_index=0, outfolder='')\n",
"print(type(img))\n",
"print(type(img))\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"vscode": {
"languageId": "plaintext"
}
},
"outputs": [],
"source": [
"img.show()"
]
},
Expand All @@ -155,11 +167,11 @@
},
"outputs": [],
"source": [
"from PIL import Image\n",
"from IPython.display import Image \n",
"\n",
"img_path = pfr.get_image(page_index=3, image_index=1, outfolder='.')\n",
"img = Image.open(img_path)\n",
"img.show()"
"img = Image(filename=img_path)\n",
"display(img)"
]
},
{
Expand Down

0 comments on commit ba4a976

Please sign in to comment.