使用用户指定的坐标绘制 uiimage
我是这个核心显卡或简历的新手。 我这里需要一点帮助。 你能指导我如何使用 openGL ES 和我自己的坐标来绘制图像吗? 任何其他想法......
考虑我的观点是 左上角 (40,160) 右上角(80,160) 左下角(0,40) BottomRight(160,40)
我希望在这些点上绘制我的图像...... 请帮助我...我将非常感谢你们...
i am new to this core graphics or cv .
I need a little help here.
Can you plz guide me how to draw an image using openGL ES with my own cordinates or
any other idea...
consider my points are
topleft (40,160)
topRight(80,160)
bottomLeft(0,40)
bottomRight(160,40)
i want my image to be drawn with in these points.....
Plz help me... i will be really thankful to you guys....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将图像加载到 OpenGL 纹理中,然后在您指定的顶点处显示纹理。请注意,纹理宽度和高度需要为 2 的幂,因此如果图像不是 2 的幂,则必须填充边距并调整顶点以获得正确的位置。 Apple 在 GLSprite 示例代码中提供了一个很好的示例。
You need to load your image into an OpenGL texture and then display the texture at the vertices you specify. Note that the texture width and height needs to be a power-of-2, so you'll have to pad the margins and adjust your vertices to get the correct placement if the image is not power-of-2. Apple has a great example of this in the GLSprite sample code.