GLPaint - 将图像保存为矢量图像
我正在使用 CGColorSpaceCreateDeviceRGB() 返回 png 图像(像素格式)?有没有办法将此图像另存为矢量图像。基本上我需要将 GLPaint 应用程序绘制的图片保存为矢量图像。
I am using CGColorSpaceCreateDeviceRGB() which returns a png image(pixel format)? Is there a way to save this image as a vector image. Basically I need to save the pictures drawn by the GLPaint application as a vector image.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我对这个函数或 GLPaint 一无所知,但你不能将像素化图像转换为矢量图像。只有人类和高度聪明的算法才能做到这一点(请参阅 http://vectormagic.com/ )
如果您有权访问GLPaint 的输入(手势?),您应该将它们直接转换为 SVG,而不是通过 RGB 图像。
I don't know anything about this function or about GLPaint, but you can't take a pixellized image and turn it into a vector image. Only humans and highly clever algorithms can do that ( see http://vectormagic.com/ )
If you have access to the input (gestures?) of GLPaint, you should convert them to SVG directly instead of passing through an RGB image.