Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: base64 images not rendered inside of html #671

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Commits on Apr 22, 2024

  1. fix: base64 images not rendered inside of html

    I'm not sure when this happened, but default base64 encoded images were no longer rendered in html  text.
    
    If the image is rendered like this:
    ```
    <img src="data:image/png;base64,....." />
    ```
    
    the image was not rendered when inside of an html text. Instead one has to replace `data:image/png;base64,` with `@`which in my opinion is not ideal and an overhead.
    
    tecnickcom#179
    
    Update include/tcpdf_static.php
    
    Co-authored-by: William Desportes <williamdes@wdes.fr>
    compojoom and williamdes committed Apr 22, 2024
    Configuration menu
    Copy the full SHA
    b122a94 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    aae5eec View commit details
    Browse the repository at this point in the history