Код: Выделить всё
use CGI qw/:standard/;
print header(-type=>"*/*",-charset=>"utf-8");
print "Content-Length: 61262\n\n";
open (IMG,"/photo/runningb.jpg");
binmode IMG;
binmode STDOUT;
print <IMG>;
close (IMG);
вообще хз
Код: Выделить всё
use CGI qw/:standard/;
print header(-type=>"*/*",-charset=>"utf-8");
print "Content-Length: 61262\n\n";
open (IMG,"/photo/runningb.jpg");
binmode IMG;
binmode STDOUT;
print <IMG>;
close (IMG);
Код: Выделить всё
?????JFIF??H?H????4Photoshop 3.0?8BIM???????H?????H????8BIM??????????????8BIM'????? ????????8BIM??????H?/ff??lff???????/ff????????????2????Z?????????5????-????????8BIM??????p????????????????????????????????????????????????????????????????????????????????????????????????????????????8BIM?????????Adobe?d????????? ?????"?????????????? ???????? ?3?!1AQa"q?2???B#$R?b34r??C%?S???cs5???&D?TdE?t6?U?e???u??F'?????????????Vfv????????7GWgw?????????5?!1AQaq"2????B#?R??3$b?r??CScs4?%???&5??D?T?dEU6te????u??F?????????????Vfv????????'7GWgw????????? ?????????????????{8w?W?+????P????es?9n??F??-<:???g?s@??'??? ?????^ d9??}?DGv?SCosA?4?! ?[??c?>??????aA?g?L<{u??????<??>~i?K8?N?W?6??i?6??66?'?Z?>?V+???k?T?w6N?E?=W??$???Cu??*?$???&U???G??k??2??? ?1???SW?u??]_?9??7???p????????X??G???*?s??3?6?;?=Y??o??J?L,?X{?a???{Uly'?X???
Nick: rtyrty
template provided by:
A+ Templates
Copyright 2002 Yoursite.com. All rights reserved
Login:
Password:
Код: Выделить всё
header(-type=>"image/gif",
Код: Выделить всё
*/*
Код: Выделить всё
use CGI qw/:standard/;
#Длину можно нафик
#print "Content-Length: 61262\n\n";
# а вот тип - обзательно
print "Content-Type: image/jpeg\n\n";
open (IMG,"/photo/runningb.jpg");
binmode IMG;
binmode STDOUT;
print <IMG>;
close (IMG);