>  기사  >  백엔드 개발  >  PHP는 GD 라이브러리를 사용하여 bmp 형식(imagebmp)의 이미지를 생성합니다.

PHP는 GD 라이브러리를 사용하여 bmp 형식(imagebmp)의 이미지를 생성합니다.

WBOY
WBOY원래의
2016-07-25 09:07:182418검색
  1. /**

  2. * bmp 형식의 그림 생성
  3. *
  4. * @author: 범례
  5. * @description: GD 라이브러리를 사용하여 비트맵 파일 생성
  6. * @version: 0.1
  7. *
  8. * @param 리소스 $im 이미지 리소스
  9. * @param string $filename 파일로 저장하려는 경우 파일 이름을 지정해 주세요. 비어 있으면 브라우저에 직접 출력됩니다.
  10. * @param 정수 $bit 이미지 품질(1, 4 , 8, 16, 24, 32비트)
  11. * @param 정수 $compression 압축 방법, 0은 압축 없음을 의미, 1은 압축에 RLE8 압축 알고리즘 사용
  12. *
  13. * @return 정수
  14. */
  15. 함수 imagebmp(&$im, $filename = ”, $bit = 8, $compression = 0)
  16. {
  17. if (!in_array($bit, array(1, 4, 8, 16, 24, 32)))
  18. {
  19. $bit = 8;
  20. }
  21. else if ($bit == 32) // todo:32비트
  22. {
  23. $bit = 24;
  24. }

  25. $bits = pow(2, $bit);

  26. // 调整调color板

  27. imagetruecolortopalette($im, true, $bits);
  28. $width = 이미지x($im);
  29. $height = imagey($im);
  30. $colors_num = imagecolorstotal($im);

  31. if ($bit <= 8)

  32. {
  33. // 颜color索引
  34. $rgb_quad = ”;
  35. for ($i = 0; $i < $colors_num; $i )
  36. {
  37. $colors = imagecolorsforindex($im, $i);
  38. $rgb_quad .= chr($colors['blue']) . chr($colors['녹색']) . chr($colors['red']) . “ ″;
  39. }

  40. // 位图数据

  41. $bmp_data = ”;

  42. // 비压缩

  43. if ($compression == 0 || $bit < 8)
  44. {
  45. if (!in_array($bit, array(1, 4, 8)))
  46. {
  47. $bit = 8;
  48. }

  49. $compression = 0;

  50. // 每行字节数必须为4的倍数,补齐。

  51. $extra = ”;
  52. $padding = 4 – ceil($width / (8 / $bit)) % 4;
  53. if ($padding % 4 != 0)
  54. {
  55. $extra = str_repeat(“ ″, $padding);
  56. }

  57. for ($j = $height – 1; $j >= 0; $j –)

  58. {
  59. $i = 0;
  60. while ($i < $width)
  61. {
  62. $bin = 0;
  63. $limit = $width – $i < ; 8 / $비트 ? (8 / $bit - $width $i) * $bit : 0;

  64. for ($k = 8 – $bit; $k >= $limit; $k - = $bit)

  65. {
  66. $index = imagecolorat($im, $i, $j);
  67. $bin |= $index << $k;
  68. $i ;
  69. }

  70. $bmp_data .= chr($bin);

  71. }

  72. }
  73. }
  74. // RLE8 压缩
  75. else if ($compression == 1 && $bit == 8)
  76. {
  77. for ( $j = $height – 1; $j >= 0; $j –)
  78. {
  79. $last_index = “ ″;
  80. $same_num = 0;
  81. for ($i = 0; $i <= $width; $i )
  82. {
  83. $index = imagecolorat($im, $i, $j);
  84. if ($index !== $last_index || $same_num > ; 255)
  85. {
  86. if ($same_num != 0)
  87. {
  88. $bmp_data .= chr($same_num) . chr($last_index);
  89. }

  90. $last_index = $index;

  91. $same_num = 1;
  92. }
  93. else
  94. {
  95. $same_num ;
  96. }
  97. }

  98. $bmp_data .= “ ″;

  99. }

  100. $bmp_data . = “ 1″;

  101. }

  102. $size_quad = strlen($rgb_quad);

  103. $size_data = strlen($bmp_data);
  104. }
  105. else
  106. {
  107. // 每行字节数必须为4的倍数,补齐。
  108. $extra = ”;
  109. $padding = 4 – ($width * ($bit / 8)) % 4;
  110. if ($padding % 4 != 0)
  111. {
  112. $extra = str_repeat(“ ″, $padding);
  113. }

  114. // 位图数据

  115. $bmp_data = ”;

  116. < ;p>for ($j = $height – 1; $j >= 0; $j –)
  117. {
  118. for ($i = 0; $i < $width; $i )
  119. {
  120. $index = imagecolorat($im, $i, $j);
  121. $colors = imagecolorsforindex($im, $index);

  122. if ($ 비트 == 16)

  123. {
  124. $bin = 0 << $bit;

  125. $bin |= ($colors['red'] >> 3) << 10;

  126. $bin |= ($colors['green'] >> 3) << 5;
  127. $bin |= $colors['blue'] >> 3;

  128. $bmp_data .= pack(“v”, $bin);

  129. }
  130. else
  131. {
  132. $bmp_data .= pack(“ c*”, $colors['blue'], $colors['green'], $colors['red']);
  133. }

  134. // 할 일: 32비트 ;

  135. }

  136. $bmp_data .= $extra;

  137. }

  138. $size_quad = 0;

  139. $size_data = strlen($bmp_data);
  140. $colors_num = 0;
  141. }

  142. // 位图文件头

  143. $file_header = “BM” . pack(“V3″, 54 $size_quad $size_data, 0, 54 $size_quad);

  144. // 位图信息头

  145. $info_header = pack(“V3v2V*”, 0×28, $width, $height, 1, $bit, $compression, $size_data, 0, 0, $colors_num, 0);

  146. // 写入文件

  147. if ($filename != ”)
  148. {
  149. $fp = fopen(“test.bmp”, “wb”);

  150. fwrite($fp, $ file_header);

  151. fwrite($fp, $info_header);
  152. fwrite($fp, $rgb_quad);
  153. fwrite($fp, $bmp_data);
  154. fclose($fp);< /p>
  155. return 1;

  156. }

  157. // 浏览器输출

  158. header(“Content-Type: image/bmp”);
  159. 에코 $file_header . $info_header;
  160. echo $rgb_quad;
  161. echo $bmp_data;

  162. return 1;

  163. }
  164. ?>

제제대码


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.