Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // https://www.taeluf.com/blog/php/convert-image-file-to-blob-img-tag/
- $path = 'http://your_image_path/image.jpg';
- $source = file_get_contents($path);
- $base64 = base64_encode($source);
- $blob = 'data:image/jpeg;base64,'.$base64;
- ?>
Add Comment
Please, Sign In to add comment