如何对图像进行编码?

发布于 2024-11-08 17:18:23 字数 176 浏览 0 评论 0原文

我正在阅读这篇博客 http://alexrogan.com 作者谈论了将编码图像添加到网页。他的解释很容易理解,但是他没有首先解释如何对图像进行编码。

那么,我想知道如何对图像进行编码?

谢谢

I was reading this blog http://alexrogan.com the writer talks about adding an encoded image to a web page. His explanation was easy enough to understand, however he did not explain how to encode the image in the first place.

So, I would like to know how do I encoding an image?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

彡翼 2024-11-15 17:18:23

这是一个 php 示例:

<?php

$data = file_get_contents('somepic.jpg');
$base64 = base64_encode($data);

?>

<img src="data:image/jpeg;base64,<?php echo $base64 ?>" />

base64 就是 base64,无论您使用什么操作系统。

Here's a php sample:

<?php

$data = file_get_contents('somepic.jpg');
$base64 = base64_encode($data);

?>

<img src="data:image/jpeg;base64,<?php echo $base64 ?>" />

base64 is base64, no matter what OS you're on.

早乙女 2024-11-15 17:18:23

为此,您需要一个 Base64 编码器。尝试例如 http://www.motobit.com/util/base64-decoder-编码器.asp。将您的图像上传到网站,系统会生成一个 Base64 表示形式,供您剪切并粘贴到 HTML 中。

You need a base64 encoder for that. Try for example http://www.motobit.com/util/base64-decoder-encoder.asp. Upload your image to the site and a base64 representation will be generated for you to cut-and-paste into your HTML.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文