在处理图形时,如何在智能移动工作室中创建屏幕外图像?我想要绘画来创建图像,绘画到画布上-然后将图形复制到游戏项目的显示器上。
发布于 2012-05-18 15:00:44
http://op4js.optimalesystemer.no/2012/01/10/how-do-i-move-graphics-from-the-canvas-to-an-image/
所以简而言之:
var image := TW3Image.Create(self);
//create temp graphic and canvas to draw on
var graph := TW3GraphicContext.Create(NIL);
graph.Allocate(image.Width, image.Height);
var canvas := TW3Canvas.Create(graph);
// Draw some text on the canvas
canvas.font:='10pt verdana';
canvas.FillStyle:='rgb(255,255,255)';
canvas.FillTextF('This was generated on a canvas!',10,20,MAXINT);
//You can load it in as a picture
image.LoadFromUrl(canvas.toDataUrl(''));
https://stackoverflow.com/questions/10630716
复制相似问题