php教程将bmp格式图片转换成jpg格式程序
function imagebmp($img,$file="",$rle=0)
{
$colorcount=imagecolorstotal($img);$transparent=imagecolortransparent($img);
$istransparent=$transparent!=-1;
if($istransparent) $colorcount--;if($colorcount==0) {$colorcount=0; $bitcount=24;};
if(($colorcount>0)and($colorcountif(($colorcount>2)and($colorcountif(($colorcount>16)and($colorcount
$width=imagesx($img);
$height=imagesy($img);$zbytek=(4-($width/(8/$bitcount))%4)%4;
if($bitcount
$size=(floor($width/(8/$bitcount))+$zbytek)*$height+54;
$size+=$palsize;
$offset=54+$palsize;// bitmap file header
$ret = 'bm'; // header (2b)
$ret .= int_to_dword($size); // size of file (4b)
$ret .= int_to_dword(0); // reserved (4b)
$ret .= int_to_dword($offset); // byte location in the file which is first byte of image (4b)
// bitmap info header
$ret .= int_to_dword(40); // size of bitmapinfoheader (4b)
$ret .= int_to_dword($width); // width of bitmap (4b)
$ret .= int_to_dword($height); // height of bitmap (4b)
$ret .= int_to_word(1); // biplanes = 1 (2b)
$ret .= int_to_word($bitcount); // bibitcount = {1 (mono) or 4 (16 clr ) or 8 (256 clr) or 24 (16 mil)} (2b)
$ret .= int_to_dword($rle); // rle compression (4b)
$ret .= int_to_dword(0); // width x height (4b)
$ret .= int_to_dword(0); // bixpelspermeter (4b)
$ret .= int_to_dword(0); // biypelspermeter (4b)
$ret .= int_to_dword(0); // number of palettes used (4b)
$ret .= int_to_dword(0); // number of important colour (4b)
// image data$cc=$colorcount;
$sl1=strlen($ret);
if($cc==0) $cc=256;
if($bitcount {
$colortotal=imagecolorstotal($img);
if($istransparent) $colortotal--;for($p=0;$p {
$color=imagecolorsforindex($img,$p);
$ret.=inttobyte($color["blue"]);
$ret.=inttobyte($color["green"]);
$ret.=inttobyte($color["red"]);
$ret.=inttobyte(0); //reserved
};$ct=$colortotal;
for($p=$colortotal;$p {
$ret.=inttobyte(0);
$ret.=inttobyte(0);
$ret.=inttobyte(0);
$ret.=inttobyte(0); //reserved
};
};
if($bitcount{for($y=$height-1;$y>=0;$y--)
{
$bwrite="";
for($x=0;$x {
$color=imagecolorat($img,$x,$y);
$bwrite.=decbinx($color,$bitcount);
if(strlen($bwrite)==8)
{
$retd.=inttobyte(bindec($bwrite));
$bwrite="";
};
};if((strlen($bwrite) {
$sl=strlen($bwrite);
for($t=0;$t $sl.="0";
$retd.=inttobyte(bindec($bwrite));
};
for($z=0;$z $retd.=inttobyte(0);
};
};if(($rle==1)and($bitcount==8))
{
for($t=0;$t{
if($t!=0)
if(($t)%$width==0)
$ret.=chr(0).chr(0);if(($t+5)%$width==0)
{
$ret.=chr(0).chr(5).substr($retd,$t,5).chr(0);
$t+=1;
}
if(($t+6)%$width==0)
{
$ret.=chr(0).chr(6).substr($retd,$t,6);
$t+=2;
}
else
{
$ret.=chr(0).chr(4).substr($retd,$t,4);
};
};
$ret.=chr(0).chr(1);
}
else
{
$ret.=$retd;
};
if($bitcount==24)
{
for($z=0;$z $dopl.=chr(0);for($y=$height-1;$y>=0;$y--)
{
for($x=0;$x {
$color=imagecolorsforindex($img,imagecolorat($img,$x,$y));
$ret.=chr($color["blue"]).chr($color["green"]).chr($color["red"]);
}
$ret.=$dopl;
};};
if($file!="")
{
$r=($f=fopen($file,"w"));
$r=$r and fwrite($f,$ret);
$r=$r and fclose($f);
return $r;
}
else
{
echo $ret;
};
};
/*
*------------------------------------------------------------
* imagecreatefrombmp
*------------------------------------------------------------
* - reads image from a bmp file
*
* parameters: $file - target file to load
*
* returns: image id
*/function imagecreatefrombmp($file)
{
global $currentbit, $echomode;$f=fopen($file,"r");
$header=fread($f,2);if($header=="bm")
{
$size=freaddword($f);
$reserved1=freadword($f);
$reserved2=freadword($f);
$firstbyteofimage=freaddword($f);$sizebitmapinfoheader=freaddword($f);
$width=freaddword($f);
$height=freaddword($f);
$biplanes=freadword($f);
$bibitcount=freadword($f);
$rlecompression=freaddword($f);
$widthxheight=freaddword($f);
$bixpelspermeter=freaddword($f);
$biypelspermeter=freaddword($f);
$numberofpalettesused=freaddword($f);
$numberofimportantcolors=freaddword($f);if($bibitcount {
$img=imagecreate($width,$height);
$colors=pow(2,$bibitcount);
for($p=0;$p {
$b=freadbyte($f);
$g=freadbyte($f);
$r=freadbyte($f);
$reserved=freadbyte($f);
$palette[]=imagecolorallocate($img,$r,$g,$b);
};
if($rlecompression==0)
{
$zbytek=(4-ceil(($width/(8/$bibitcount)))%4)%4;for($y=$height-1;$y>=0;$y--)
{
$currentbit=0;
for($x=0;$x {
$c=freadbits($f,$bibitcount);
imagesetpixel($img,$x,$y,$palette[$c]);
};
if($currentbit!=0) {freadbyte($f);};
for($g=0;$g freadbyte($f);
};};
};
if($rlecompression==1) //$bi_rle8
{
$y=$height;$pocetb=0;
while(true)
{
$y--;
$prefix=freadbyte($f);
$suffix=freadbyte($f);
$pocetb+=2;$echoit=false;
if($echoit)echo "prefix: $prefix suffix: $suffix
";
if(($prefix==0)and($suffix==1)) break;
if(feof($f)) break;while(!(($prefix==0)and($suffix==0)))
{
if($prefix==0)
{
$pocet=$suffix;
$data.=fread($f,$pocet);
$pocetb+=$pocet;
if($pocetb%2==1) {freadbyte($f); $pocetb++;};
};
if($prefix>0)
{
$pocet=$prefix;
for($r=0;$r $data.=chr($suffix);
};
$prefix=freadbyte($f);
$suffix=freadbyte($f);
$pocetb+=2;
if($echoit) echo "prefix: $prefix suffix: $suffix
";
};for($x=0;$x
{
imagesetpixel($img,$x,$y,$palette[ord($data[$x])]);
};
$data="";};
};
if($rlecompression==2) //$bi_rle4
{
$y=$height;
$pocetb=0;/*while(!feof($f))
echo freadbyte($f)."_".freadbyte($f)."
";*/
while(true)
{
//break;
$y--;
$prefix=freadbyte($f);
$suffix=freadbyte($f);
$pocetb+=2;$echoit=false;
if($echoit)echo "prefix: $prefix suffix: $suffix
";
if(($prefix==0)and($suffix==1)) break;
if(feof($f)) break;while(!(($prefix==0)and($suffix==0)))
{
if($prefix==0)
{
$pocet=$suffix;$currentbit=0;
for($h=0;$h $data.=chr(freadbits($f,4));
if($currentbit!=0) freadbits($f,4);
$pocetb+=ceil(($pocet/2));
if($pocetb%2==1) {freadbyte($f); $pocetb++;};
};
if($prefix>0)
{
$pocet=$prefix;
$i=0;
for($r=0;$r {
if($i%2==0)
{
$data.=chr($suffix%16);
}
else
{
$data.=chr(floor($suffix/16));
};
$i++;
};
};
$prefix=freadbyte($f);
$suffix=freadbyte($f);
$pocetb+=2;
if($echoit) echo "prefix: $prefix suffix: $suffix
";
};for($x=0;$x
{
imagesetpixel($img,$x,$y,$palette[ord($data[$x])]);
};
$data="";};
};
if($bibitcount==24)
{
$img=imagecreatetruecolor($width,$height);
$zbytek=$width%4;for($y=$height-1;$y>=0;$y--)
{
for($x=0;$x {
$b=freadbyte($f);
$g=freadbyte($f);
$r=freadbyte($f);
$color=imagecolorexact($img,$r,$g,$b);
if($color==-1) $color=imagecolorallocate($img,$r,$g,$b);
imagesetpixel($img,$x,$y,$color);
}
for($z=0;$z freadbyte($f);
};
};
return $img;};
fclose($f);
};
/*
* helping functions:
*-------------------------
*
* freadbyte($file) - reads 1 byte from $file
* freadword($file) - reads 2 bytes (1 word) from $file
* freaddword($file) - reads 4 bytes (1 dword) from $file
* freadlngint($file) - same as freaddword($file)
* decbin8($d) - returns binary string of d zero filled to 8
* retbits($byte,$start,$len) - returns bits $start->$start+$len from $byte
* freadbits($file,$count) - reads next $count bits from $file
* rgbtohex($r,$g,$b) - convert $r, $g, $b to hex
* int_to_dword($n) - returns 4 byte representation of $n
* int_to_word($n) - returns 2 byte representation of $n
*/function freadbyte($f)
{
return ord(fread($f,1));
};function freadword($f)
{
$b1=freadbyte($f);
$b2=freadbyte($f);
return $b2*256+$b1;
};
function freadlngint($f)
{
return freaddword($f);
};function freaddword($f)
{
$b1=freadword($f);
$b2=freadword($f);
return $b2*65536+$b1;
};
function retbits($byte,$start,$len)
{
$bin=decbin8($byte);
$r=bindec(substr($bin,$start,$len));
return $r;};
$currentbit=0;
function freadbits($f,$count)
{
global $currentbit,$smode;
$byte=freadbyte($f);
$lastcbit=$currentbit;
$currentbit+=$count;
if($currentbit==8)
{
$currentbit=0;
}
else
{
fseek($f,ftell($f)-1);
};
return retbits($byte,$lastcbit,$count);
};
function rgbtohex($red,$green,$blue)
{
$hred=dechex($red);if(strlen($hred)==1) $hred="0$hred";
$hgreen=dechex($green);if(strlen($hgreen)==1) $hgreen="0$hgreen";
$hblue=dechex($blue);if(strlen($hblue)==1) $hblue="0$hblue";
return($hred.$hgreen.$hblue);
};function int_to_dword($n)
{
return chr($n & 255).chr(($n >> 8) & 255).chr(($n >> 16) & 255).chr(($n >> 24) & 255);
}
function int_to_word($n)
{
return chr($n & 255).chr(($n >> 8) & 255);
}
function decbin8($d)
{
return decbinx($d,8);
};function decbinx($d,$n)
{
$bin=decbin($d);
$sbin=strlen($bin);
for($j=0;$j $bin="0$bin";
return $bin;
};function inttobyte($n)
{
return chr($n);
};
//实例方法
include_once('bmp.php');
$image=imagecreatefrombmp('a.bmp');
imagejpeg($image,'a.jpeg');
imagedestroy($image);

PHP仍然流行的原因是其易用性、灵活性和强大的生态系统。1)易用性和简单语法使其成为初学者的首选。2)与web开发紧密结合,处理HTTP请求和数据库交互出色。3)庞大的生态系统提供了丰富的工具和库。4)活跃的社区和开源性质使其适应新需求和技术趋势。

PHP和Python都是高层次的编程语言,广泛应用于Web开发、数据处理和自动化任务。1.PHP常用于构建动态网站和内容管理系统,而Python常用于构建Web框架和数据科学。2.PHP使用echo输出内容,Python使用print。3.两者都支持面向对象编程,但语法和关键字不同。4.PHP支持弱类型转换,Python则更严格。5.PHP性能优化包括使用OPcache和异步编程,Python则使用cProfile和异步编程。

PHP主要是过程式编程,但也支持面向对象编程(OOP);Python支持多种范式,包括OOP、函数式和过程式编程。PHP适合web开发,Python适用于多种应用,如数据分析和机器学习。

PHP起源于1994年,由RasmusLerdorf开发,最初用于跟踪网站访问者,逐渐演变为服务器端脚本语言,广泛应用于网页开发。Python由GuidovanRossum于1980年代末开发,1991年首次发布,强调代码可读性和简洁性,适用于科学计算、数据分析等领域。

PHP适合网页开发和快速原型开发,Python适用于数据科学和机器学习。1.PHP用于动态网页开发,语法简单,适合快速开发。2.Python语法简洁,适用于多领域,库生态系统强大。

PHP在现代化进程中仍然重要,因为它支持大量网站和应用,并通过框架适应开发需求。1.PHP7提升了性能并引入了新功能。2.现代框架如Laravel、Symfony和CodeIgniter简化开发,提高代码质量。3.性能优化和最佳实践进一步提升应用效率。

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

PHP类型提示提升代码质量和可读性。1)标量类型提示:自PHP7.0起,允许在函数参数中指定基本数据类型,如int、float等。2)返回类型提示:确保函数返回值类型的一致性。3)联合类型提示:自PHP8.0起,允许在函数参数或返回值中指定多个类型。4)可空类型提示:允许包含null值,处理可能返回空值的函数。


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

记事本++7.3.1
好用且免费的代码编辑器

SecLists
SecLists是最终安全测试人员的伙伴。它是一个包含各种类型列表的集合,这些列表在安全评估过程中经常使用,都在一个地方。SecLists通过方便地提供安全测试人员可能需要的所有列表,帮助提高安全测试的效率和生产力。列表类型包括用户名、密码、URL、模糊测试有效载荷、敏感数据模式、Web shell等等。测试人员只需将此存储库拉到新的测试机上,他就可以访问到所需的每种类型的列表。

PhpStorm Mac 版本
最新(2018.2.1 )专业的PHP集成开发工具

Atom编辑器mac版下载
最流行的的开源编辑器

ZendStudio 13.5.1 Mac
功能强大的PHP集成开发环境