zoukankan      html  css  js  c++  java
  • PHP中向浏览器输出图片

    从图片创建创建图片 imagecreatefromjpeg("a.jpg")

    自绘图片:

    Code

    输出图片:

    header('Content-Type: image/png');
    imagepng($im);

    最后撤销图片资源:

    ImageDestroy($im);

  • 相关阅读:
    Python Day14
    Python Day13
    Python Day12
    Python Day11
    Python Day10
    Python Day9
    Python Day8
    Python Day7
    Python Day6
    Python Day5
  • 原文地址:https://www.cnblogs.com/lfwolf/p/1355633.html
Copyright © 2011-2022 走看看