gpt4 book ai didi

php - 如何将图像作为流提供

转载 作者:太空宇宙 更新时间:2023-11-04 01:32:56 25 4
gpt4 key购买 nike

在多年使用网络(以及偶尔开发网站)的过程中,我注意到有些网站提供的图像与其他网站不同。

  1. 第一种首先提供低质量的图像,然后逐渐提供更多的数据,使图像变得更清晰。
  2. 第二种提供图像,就像从上到下垂直扫描一样。

这张图片说明了我想说的

据我所知,我设置的每一个 PHP、NodeJS 服务器都像第二种一样提供图像。

所以我的问题是如何在 PHP 或 NodeJS(使用 ExpressJS)中实现行为 1?

PS:

There is no javascript/ajax/(any 3rd party library being used)

The websites that i have noticed this thing on are not using JS/multiple request to achieve this. It's all purely server side.

最佳答案

对于第一点,您可以使用PHP的图像魔法,

$im = new imagick();
$im->setResolution(200,200);
$im->readImage('path to the image');
$im->writeImage('path to store the new image with name of image and extension');
$im->clear();
$im->destroy();

You need to set Resolution before read the image. and then repeat the script depend on your use cases .

希望对您有帮助。

关于php - 如何将图像作为流提供,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55484792/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com