
Base64 是一种流行的编码方案,将二进制数据转换为一串字母数字字符。它是处理图像的完美解决方案,提供了一个通用的数据交换格式,因为它可以将图像数据表示为字符串。以字符串形式处理图像数据有助于各种操作和处理任务,如调整大小、裁剪和应用滤镜。我们可以直接将 Base64 编码的图像嵌入到 HTML 代码中,这样可以提高页面加载速度。我们也可以将 Base64 编码的图像直接存储在数据库中。在本文中,我们将学习如何在 Python 中将图像转换为 Base64。
本文涵盖以下主题:
Python 图像到 Base64 转换器 API
要将 JPG 或 PNG 图像转换为 Base64,我们将使用 Aspose.SVG for Python。Aspose.SVG for Python 库简化了在 Python 中处理 可缩放矢量图形 (SVG) 的工作。它的一个关键特性是能够轻松将图像转换为 Base64 格式。
请 下载软件包 或使用以下 pip 命令从 PyPI 安装 API:
pip install aspose-svg-net
在 Python 中将 JPG 图像转换为 Base64
让我们分解在 Python 中将图像转换为 Base64 的过程:
- 开始时加载要转换的输入 JPG 图像。
- 初始化 SVGDocument 类的实例以表示您的 SVG 文件。
- 使用 create_element_ns() 方法创建一个图像元素。
- 使用适当的方法将图像数据转换为 Base64 格式。
- 使用 set_attribute() 方法将 Base64 字符串值设置为 href 属性。
- 将图像元素附加到 SVG 文档中。
- 最后,调用 save() 方法保存包含 Base64 编码图像的 SVG 文档。
以下代码示例展示了 如何在 Python 中将 JPG 图像转换为 Base64。
# This code smple shows how to convert JPG image to Base64 string using Python. | |
# Load an input JPG image | |
with open(r"Sample_JPG.jpg", "rb") as image_file: | |
image_bytes = image_file.read() | |
# Initialize an SVGDocument object | |
document = SVGDocument() | |
# Create an image element | |
img = document.create_element_ns("http://www.w3.org/2000/svg", "image") | |
# Convert image to Base64 and set it as the href attribute | |
img.set_attribute("href","data:image/png;charset=utf-8;base64," + base64.b64encode(image_bytes).decode('utf-8')) | |
# Add the image element into the SVG document | |
document.root_element.append_child(img) | |
# Save the SVG document | |
document.save("image-base64.svg") |

在 Python 中将 JPG 图像转换为 Base64
PNG 转换为 Base64 在 Python 中
将 PNG 图像转换为 Base64 的过程类似于将 JPG 图像转换为 Base64。只需按照之前概述的相同步骤,但将输入 JPG 图像替换为 PNG 图像即可。
# This code smple shows how to convert JPG image to Base64 string using Python. | |
# Load an input JPG image | |
with open(r"Sample_PNG.png", "rb") as image_file: | |
image_bytes = image_file.read() | |
# Initialize an SVGDocument object | |
document = SVGDocument() | |
# Create an image element | |
img = document.create_element_ns("http://www.w3.org/2000/svg", "image") | |
# Convert image to Base64 and set it as the href attribute | |
img.set_attribute("href","data:image/png;charset=utf-8;base64," + base64.b64encode(image_bytes).decode('utf-8')) | |
# Add the image element into the SVG document | |
document.root_element.append_child(img) | |
# Save the SVG document | |
document.save("image-base64.svg") |
获取免费许可证
想在没有任何限制的情况下试用 Aspose.SVG? 获取免费临时许可证 并开始探索其强大功能!
在线图像到 Base64 转换器
此外,您还可以在线将图像转换为 Base64,而无需安装任何软件。使用这个免费的 图像到 Base64 转换器 在线工具。它可以在任何设备和浏览器上运行,无需下载或订阅。

图像到 Base64 字符串:免费资源
除了将图像转换为 Base64,Aspose.SVG 还提供了许多其他功能。查看以下资源以了解更多信息:
结论
在本文中,我们学习了如何使用 Python 将 JPG 或 PNG 图像转换为 Base64 字符串。Base64 编码是处理图像的一种有价值的技术。它允许将图像直接嵌入到 HTML 中,安全地通过网络传输,存储在数据库中,并执行各种图像操作。
Aspose.SVG for Python 提供了一种强大而方便的方式来将图像转换为 Base64。凭借其用户友好的 API 和广泛的功能,它简化了这个过程,并允许您将图像处理无缝集成到 Python 项目中。
如有任何疑问,请通过我们的 免费支持论坛 联系我们。