How to encode an image resource to base64?

Ali

I was wondering if there's a way to encode an image to a base64 if it was a resource for example if I loaded an image using GD

    $image = imagecreatefromjpeg("captcha/$captcha-$num.jpg");

    // Add some filters
    imagefilter($image, IMG_FILTER_PIXELATE, 1, true);
    imagefilter($image, IMG_FILTER_MEAN_REMOVAL);

If this was my code and instead of saving the image and displaying it using

<img src='someimage.jpg'>

I wanted to display it as a data URI without having to save it, like

<img data='src="data:image/jpeg;base64,BASE64_HERE'>

How can I do that?

Bez Hermoso
$image = imagecreatefromjpeg("captcha/$captcha-$num.jpg");

// Add some filters
imagefilter($image, IMG_FILTER_PIXELATE, 1, true);
imagefilter($image, IMG_FILTER_MEAN_REMOVAL);

ob_start(); // Let's start output buffering.
    imagejpeg($image); //This will normally output the image, but because of ob_start(), it won't.
    $contents = ob_get_contents(); //Instead, output above is saved to $contents
ob_end_clean(); //End the output buffer.

$dataUri = "data:image/jpeg;base64," . base64_encode($contents);

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to encode an image resource to base64?

From Dev

How to cache base64 encode image

From Java

How to base64 encode image in linux bash / shell

From Dev

How to upload base64 image resource with dropzone?

From Dev

How to upload base64 image resource with dropzone?

From Dev

Encode a ImageMagick image with Base64

From Dev

Angular 2 encode image to base64

From Dev

Encode an image as a base64 string in MATLAB

From Dev

JS: how to encode an image.png into base64 code for data URI embedding?

From Dev

JS: how to encode an image.png into base64 code for data URI embedding?

From Dev

How do I get external image and encode it to base64 on client WebApp?

From Dev

How to (base64) encode a protobuf as a String

From Dev

How to encode text to base64 in python

From Dev

How to base64 encode apache header?

From Dev

How to encode an attachment to Base64 in Jmeter?

From Dev

how to encode servlet response to base64?

From Dev

phonegap: Couldn't encode image to base64 on android 2.3

From Dev

base64 encode image host url or server file path

From Dev

Encode image from URL in Base64 in Java

From Dev

Base64 Encode Image and Save it later to a file

From Dev

Base64 Encode Image and Save it later to a file

From Dev

Uploading A Base64 encode Image to php server

From Dev

encode image to base64, get a invalid base64 string (ios using base64EncodedStringWithOptions)

From Dev

angularjs image base64 show error "Failed to load resource"

From Dev

How to Convert Image to Base64Encode String

From Dev

How to Convert Image to Base64Encode String

From Java

How do I encode and decode a base64 string?

From Java

How can you encode a string to Base64 in JavaScript?

From Java

How can I encode a string to Base64 in Swift?

Related Related

  1. 1

    How to encode an image resource to base64?

  2. 2

    How to cache base64 encode image

  3. 3

    How to base64 encode image in linux bash / shell

  4. 4

    How to upload base64 image resource with dropzone?

  5. 5

    How to upload base64 image resource with dropzone?

  6. 6

    Encode a ImageMagick image with Base64

  7. 7

    Angular 2 encode image to base64

  8. 8

    Encode an image as a base64 string in MATLAB

  9. 9

    JS: how to encode an image.png into base64 code for data URI embedding?

  10. 10

    JS: how to encode an image.png into base64 code for data URI embedding?

  11. 11

    How do I get external image and encode it to base64 on client WebApp?

  12. 12

    How to (base64) encode a protobuf as a String

  13. 13

    How to encode text to base64 in python

  14. 14

    How to base64 encode apache header?

  15. 15

    How to encode an attachment to Base64 in Jmeter?

  16. 16

    how to encode servlet response to base64?

  17. 17

    phonegap: Couldn't encode image to base64 on android 2.3

  18. 18

    base64 encode image host url or server file path

  19. 19

    Encode image from URL in Base64 in Java

  20. 20

    Base64 Encode Image and Save it later to a file

  21. 21

    Base64 Encode Image and Save it later to a file

  22. 22

    Uploading A Base64 encode Image to php server

  23. 23

    encode image to base64, get a invalid base64 string (ios using base64EncodedStringWithOptions)

  24. 24

    angularjs image base64 show error "Failed to load resource"

  25. 25

    How to Convert Image to Base64Encode String

  26. 26

    How to Convert Image to Base64Encode String

  27. 27

    How do I encode and decode a base64 string?

  28. 28

    How can you encode a string to Base64 in JavaScript?

  29. 29

    How can I encode a string to Base64 in Swift?

HotTag

Archive