Jump to content
php.lv forumi

bilde iekš php, jeb tas paradšana ar headeriem


Devils666

Recommended Posts

Atceros kādreiz man bija tāds kods, ar kuru varēju bildi pārādīt ar headeri

Ideja tāda:

ielikt bildi php failā:

bilde.php

un pēctam to pārādit, apmēram šādi:

<img src="bilde.php">

 

googlei prasiju, bet nu iekš manuāļiem nesanaca, vai ari vienkārši nesapratu

tatad, kāds varētu, lūdzu pateikt, kā to izdarīt? :)

Edited by Devils666
Link to comment
Share on other sites

Atceros kādreiz man bija tāds kods, ar kuru varēju bildi pārādīt ar headeri

Ideja tāda:

ielikt bildi php failā:

bilde.php

un pēctam to pārādit, apmēram šādi:

<img src="bilde.php">

 

googlei prasiju, bet nu iekš manuāļiem nesanaca, vai ari vienkārši nesapratu

tatad, kāds varētu, lūdzu pateikt, kā to izdarīt? :)

 

Ko nu stāsti, ka manuālī nav :)

 

http://us3.php.net/manual/en/function.imagejpeg.php

 

Pats pirmais paraugs!

Link to comment
Share on other sites

<?php
// Create a blank image and add some text
$im = imagecreatetruecolor(120, 20);
$text_color = imagecolorallocate($im, 233, 14, 91);
imagestring($im, 1, 5, 5,  'A Simple Text String', $text_color);

// Set the content type header - in this case image/jpeg
header('Content-type: image/jpeg');

// Output the image
imagejpeg($im);

// Free up memory
imagedestroy($im);
?>

 

viņš jau vairak textam domāts un kā es varu iekļaut kādu bildi, piemēram, bilde.jpg

Edited by Devils666
Link to comment
Share on other sites

<?php
// Create a blank image and add some text
$im = imagecreatetruecolor(120, 20);
$text_color = imagecolorallocate($im, 233, 14, 91);
imagestring($im, 1, 5, 5,  'A Simple Text String', $text_color);

// Set the content type header - in this case image/jpeg
header('Content-type: image/jpeg');

// Output the image
imagejpeg($im);

// Free up memory
imagedestroy($im);
?>

 

viņš jau vairak textam domāts un kā es varu iekļaut kādu bildi, piemēram, bilde.jpg

 

Skaties tur funkciju sarakstu... karoč, cītīgi brauc visam manuālim cauri un lasi komentārus !!!

Link to comment
Share on other sites

Derētu zināt iemeslu kāpēc to vajag, ja tā būs parasta bilde. Parasti to vajag visādiem captcha vai statistiku ja grib izmantot.

Savādāk jēgu neredzu tam īsti. Jēga varētu būt ja ir <img src="bilde.php?image=img_id"/>

EDIT: Vispār jēga varētu būt gan, ja čeko kādus cepumus un atkarībā no tā atdod to vai citu bildi. Tad 2easy variants ir tieši laikā.

Edited by mounkuls
Link to comment
Share on other sites

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.   Paste as plain text instead

  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.

Loading...
×
×
  • Create New...