Jump to content

multipart images on page


ginerjm

Recommended Posts

Ok - trying to use some new little software I got from a fellow poster. Want to display some html output as well as the image produced by the new code. No Can Do.

 

Did some reading on doing multipart content type headers and here is what I am trying:

 

if ($btn == 'Make Barcode' )
{
	$sample = $_POST['sample'];
	$bar_image = MakeBarcode($sample);
?>
Content-Type: multipart/mixed; boundary="simple boundary"

--simple boundary
Content-Type: image/png;
<?php
imagepng($bar_image);
?>


--simple boundary

Content-Type: text/html;
<br><br>
Go Back to tester
<a href='barcode_tester.php'>Click here</a>
<br>

--simple boundary

<?php

imagedestroy($bar_image);
exit();
}
This what I am getting:

Content-Type: multipart/mixed; boundary="simple boundary" --simple boundary Content-Type: image/png; ‰PNG  IHDRc£Ò¯PLTEÿÿÿ¥ÙŸÝIDAT•cøºÚß9?Õ¶õr—ý†Q”µŠ5½Ó7ÕIEND®B`‚ --simple boundary Content-Type: text/html; 

 Go Back to tester Click here 
 --simple boundary 
I'm hoping that some "header" expert can point out my mistake. OR - tell me I can't do this thing.
Link to comment
Share on other sites

A multipart response in the browser sounds like a very obscure approach. They do work in some browsers in some special cases (like attachments), but how do you even expect this to be rendered?

 

Since the images are probably very small, you could embed them in an img tag with a data source:

<img src="data:image/png;base64,<?= base64_encode($bar_image) ?>" alt="barcode">

Or use a separate script as suggested by QuickOldCar.

 

If you insist on multipart messages, and if you've found a browser which can actually display them reasonable, there are some issues in your code:

  • You need to send the first Content-Type header with the header() function. Otherwise you get plain old text/html.
  • You're missing the terminating delimiter (with a double dash at the end).
  • You're missing the blank line after the part headers.
  • There are trailing spaces after your image data.
Edited by Jacques1
Link to comment
Share on other sites

The multi part thing was just the first thing I thought I had to try. Seems like it is not necessary.

 

I like the file idea - will have to try that, as well as using an iframe - have never done that.

 

Jacques - what does the base64 encoding do to make the display possible?

Link to comment
Share on other sites

That didn't give me anything at all. No errors; no image.

 

To clarify for those still following:

I have created a barcode via a function that someone gave me. The output of that function is meant to be output with the following:

 

imagepng($image)

 

I am returning the $image var from the function and attempting to output it to my web page results but failing to get an image unless it is the only thing on the output page AND I use a header call to set the content-type to image/png.

 

The process is:

$bar_image = MakeBarcode($sample); // a function that does indeed make a bar code image
ob_start();
imagepng($bar_image);
$bar_image_png = ob_get_clean();

 

Actually I do get one bit of output - the undefined little icon.

Link to comment
Share on other sites

Just to make sure we're on the same page:

 

You're saying this shows the image:

<?php

$sample = '...';
$bar_gd_image = MakeBarcode($sample);

header('Content-Type: image/png');

imagepng($bar_gd_image);

But this doesn't:?

<?php

$sample = '...';
$bar_gd_image = MakeBarcode($sample);

ob_start();
imagepng($bar_gd_image);
$bar_image_png = ob_get_clean();

?>
<img src="data:image/png;base64,<?= base64_encode($bar_image_png) ?>" alt="barcode">

Link to comment
Share on other sites

Here is what I am doing since I hate using php tags in code midstream:

$sample = $_POST['sample'];
$bar_image = MakeBarcode($sample);

ob_start();
imagepng($bar_image);
$bar_image_png = ob_get_clean();
$bar_image64 = base64_encode($bar_image);

 

Then my html looks like:

<img src="data:image/png;base64,$bar_image64" alt="$sample">

 

Results:

Where the img s/b I get the little icon of an undefined(?) image. Also I get this error:

 

Warning: base64_encode() expects parameter 1 to be string, resource given in /home/albany/public_html/homejg/jg/barcode_tester.php on line 74

 

Where line 74 is the call to base64_encode.

Link to comment
Share on other sites

$bar_image_png is just one of several names I used in my code. As it stands the bar code maker function produces a result that works just fine in my last post. All I am doing is returning that variable and then trying to output it using your latest suggested solution. I have no 'png' named version - there is no other result. If the var I am using is a GD resource so be it. But it works for the imagepng() call so it must be a resource for it. So - apparently there is no other way to output the barcode image?

Link to comment
Share on other sites

OK, again:

 

Your MakeBarcode() function returns the barcode image as a GD resource. If you want to embed this image into your page, you need to turn the GD resource into a Base64-encoded string of the PNG data. The only way to do that is to start an output buffer, save the buffer content into a variable and then Base64-encode this(!) variable:

// I assume that $bar_image is the GD resource returned by MakeBarcode()

ob_start();
imagepng($bar_image);
$png_data_of_bar_image = ob_get_clean();    // fetch the content of the output buffer into a variable
$bar_image64 = base64_encode($png_data_of_bar_image);

I've verified this with different GD resources, so it definitely works. If it's somehow too difficult to implement, I suggest you go with a separate script which serves one barcode image at a time.

Edited by Jacques1
Link to comment
Share on other sites

Thank you Jacques1 for staying with me while I struggled to see the nose on my face! Apparently when I tried to follow your guidance I used the wrong variable since this time it worked perfectly.

 

Do you have a resource for the syntax of the <img> tag using that data: attribute? Haven't been able to locate one.

Link to comment
Share on other sites

Apparently when I tried to follow your guidance I used the wrong variable since this time it worked perfectly.

 

Cool. :)

 

 

 

Do you have a resource for the syntax of the <img> tag using that data: attribute? Haven't been able to locate one.

 

 

The MDN has a lot of infos about data URIs:

 

https://developer.mozilla.org/en-US/docs/Web/HTTP/data_URIs

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.