Image Size in PDF
DonCammne opened this issue · 0 comments
DonCammne commented
Ehi, I'm trying to render an image in a PDF converted using nbconvert from jupyter notebook directly to pdf.
Not working:
<div>
<img src="IMAGE.png" width=100>
</div>
<img src="IMAGE.png" height=100 />
Working:
from IPython.display import display, Image
display(Image(filename="IMAGE.png", height=100, width=100))
![IMAGE](IMAGE.png)
The problem is that I found no way to scale the image in the dimension that I desire. I'm probably missing something, thus any direction or help is very appreciated.
Thanks!