Jump to content

How to ensure images load?


ddalley

Recommended Posts

I am trying to figure out how to make sure that all images that I want to form a multi-part signature for a forum actually load and display. Is there a way of doing this?

 

This code wasn't written by me, but I did modify it slightly, to suit my purposes. It randomly picks an image to send to my signature and the sig loads a few other small images to box it in, however, the majority of the time the random image does not display. All of the other images do, so what can I do to ensure all images display?

 

This code is called in an HTML <IMG> tag.

 

<?php

srand((double)microtime()*1000000); //random number seed
$num = rand(16, 200); //random number generation range
$img = imagecreatefrompng("$num.png"); //make an image variable from a png image
$color = ImageColorAllocate($img, 255, 214, 12); //define a color for the text
// imagestring($img, 2, 7, 92, "text if I want it", $color); // position the text
header('content-type: image/png'); //tells the browser that it's receiving a png image
imagepng($img); //deliver the final png image
imagedestroy($img); //memory cleanup

?>

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.