本文介绍了简单的图形API与透明度,多边形,读取图像像素?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要一个支持以下功能的简单图形库:

I need a simple graphics library that supports the following functionality:


  1. 能够用RGBA颜色绘制多边形(即部分透明),

  2. 能够载入位图图片,

  3. 能够读取指定坐标中像素的当前颜色。

理想情况下使用JavaScript或Python。

Ideally using JavaScript or Python.

看起来像HTML 5 Canvas可以处理#2和#3但不是#1,而SVG可以处理#1和#2,但不能处理#3。我缺少一些东西(关于这两个)?还是有其他替代方案?

Seems like HTML 5 Canvas can handle #2 and #3 but not #1, whereas SVG can handle #1 and #2 but not #3. Am I missing something (about either of these two)? Or are there other alternatives?

推荐答案

PyGame可以做所有这些事情。 OTOH,我不认为它嵌入到GUI太好了。

PyGame can do all of those things. OTOH, I don't think it embeds into a GUI too well.

这篇关于简单的图形API与透明度,多边形,读取图像像素?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 15:51