Base64 Encoding Image(Base64 编码图像)
问题描述
我正在为 Firefox/IE 构建一个开放式搜索插件,图像需要进行 Base64 编码,那么我如何对我拥有的网站图标进行 Base64 编码?
I am building an open search add-on for Firefox/IE and the image needs to be Base64 Encoded so how can I base 64 encode the favicon I have?
我只熟悉 PHP
推荐答案
据我所知,图像数据有一个 xml 元素.您可以使用此网站对文件进行编码(使用上传字段).然后只需将数据复制并粘贴到 XML 元素即可.
As far as I remember there is an xml element for the image data. You can use this website to encode a file (use the upload field). Then just copy and paste the data to the XML element.
您也可以使用 PHP 来执行此操作:
You could also use PHP to do this like so:
<?php
$im = file_get_contents('filename.gif');
$imdata = base64_encode($im);
?>
使用 Mozilla 的指南 获取有关创建 OpenSearch 插件的帮助.比如图标元素是这样使用的:
Use Mozilla's guide for help on creating OpenSearch plugins. For example, the icon element is used like this:
<img width="16" height="16">data:image/x-icon;base64,imageData</>
其中 imageData
是您的 base64 数据.
Where imageData
is your base64 data.
这篇关于Base64 编码图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Base64 编码图像
基础教程推荐
- 使用 PDO 转义列名 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01