Vector graphics is the use of geometrical primitives such as points, lines, curves, and shapes or polygon(s), which are all based on mathematical equations, to represent images in computer graphics. Images are drawn at run-time from the information stored, and so vector images do not get distorted ...
0
votes
0answers
14 views
what library that can be used to convert bitmap to vector?
My current project is related to bitmap to vector. so far i found these libraries:
potrace (http://potrace.sourceforge.net/)
(+) really good for line tracing
(+) documentation
(-) does not ...
0
votes
2answers
36 views
Producing vectorial graphics in Python [closed]
I need to produce high precision b&w vectorial graphics. The goal is to be able to print those graphics at scale, where lines can be as thin as 1 µm. Those graphics follow some geometric patterns, ...
0
votes
0answers
21 views
Trying to get 8-way closest angle between vectors
Basically, I'm trying to combine the answers from these two posts:
http://gamedev.stackexchange.com/questions/49290/whats-the-best-way-of-translating-a-2d-vector-into-the-closest-8-way-compass-di
...
0
votes
3answers
59 views
OpenGL vector graphics rendering performance on mobile devices
It is generally advised not to use vector graphics in mobile games, or pre-rasterize them - for performance. Why is that? I though that OpenGL is at least as good at drawing lines / triangles as ...
0
votes
2answers
24 views
SVG format converting or suggestion
Pictures I was trying to draw on a canvas have come up blank using the library SVG-android-1.1 and SVG images created in Inkscape. Is there some other SVG image editor I should be using?
Here I have ...
0
votes
2answers
36 views
Library for drawing resizable vectors with Canvas? [closed]
I'm wanting to make a simple HTML5 drawing application. However, there are plenty of tutorials out there for doing just that. I have one other requirement I wish to pursue
I want it so that for ...
0
votes
0answers
28 views
Algorithm to turn array of x,y+colour data into longest possible straight lines of single (or near single) colour
I'm coding something that requires the outside perimeter of an image as a vector composed of straight segments of a single (or close) colour.
So far I've coded a basic edge detection (if the pixel is ...
-1
votes
1answer
81 views
Adjusting glRotate, using dot product
Introducing:
I'm developing a little Tower defense game in opengl, currently I'm just despairing of a little problem....
I want the projectiles from the tower to aim with the head facing the unit. So ...
0
votes
1answer
34 views
Best way for embedding vector gfx in MS PowerPoint?
What is a good technique to export/import vector grafiks from Adobe Illustrator to MS PowerPoint?
0
votes
1answer
22 views
How to calculate a gradual rounded border on a path in SVG
I'm trying to create a path following linear curved border in SVG. A bit like this:
I was wondering how can this be calculated in SVG path syntax? I tried some options, but haven't got anywhere ...
-1
votes
0answers
18 views
SVG coding envornment [closed]
I'm starting to learn SVG graphics coding, but I need some I did with WYSIWYG kind of thing. Does such a thing exist?
And what would you advise me to make the learning process faster?
1
vote
1answer
120 views
Real time vector-based OSM renderer in iOS (maybe a RouteMe source)
I'm looking into a solution that will allow to basically use the raw OpenStreetMap data to render a 2D top-view vector-based map in iOS, instead of using pre-rendered tiles.
I've done extensive ...
0
votes
1answer
37 views
how to center print()'d raphael text in a space
i am curious as to the proper way to either figure required rendering space for print()'d text or how to have raphael render text from the center outward, as
var an = Raphael("about-navlink", 69, ...
0
votes
1answer
17 views
Secure html+php form to upload image and vector files?
I trying to do a form which accepts raster graphics and vector graphics files (it can be: jpg, gif, psd, png, svg, eps, ai, cdr, pdf and others) and I want to avoid malicious files.
The options I ...
1
vote
1answer
27 views
Why do 2D graphics systems use a move to, line to style interface?
I've noticed most primitive drawing libraries (GDI, HTML5 canvas) use a procedural from where sequence matters with operations like: move_to and line_to and set_stroke etc...
Why use sequence ...
1
vote
0answers
46 views
How to copy EMF images from .NET Windows.Forms into Visio?
I am working on a diagram editor written in .NET 2.0 using Windows.Forms.
Diagrams must be copied into Microsoft Word and Visio as vector graphics.
The editor has a Save as EMF function that works: ...
0
votes
0answers
37 views
Cropping SVG to Remove Surrounding Whitespace
I've got a collection of SVG's that were generated by taking a corresponding collection of PNG's, live-tracing them all in Adobe Bridge, saving them as AI, and converting those AI files to SVG's using ...
0
votes
0answers
131 views
Android convert from Corel Draw .cdr file to draw calls
Is it possible to convert .cdr files to simple android draw commands ? Let's say graphic designer make simple 2D vector graphic in corel. Now it could be perfect to convert dwg file directly to draw ...
0
votes
0answers
37 views
Does GWT Graphics support mobile devices?
I'm looking for a cross-browser vector graphics library for GWT and I came across GWT Graphics.
The library has been tested to work with the following browsers:
Internet Explorer 6 and newer (6,7 ...
0
votes
1answer
46 views
Getting cells in a 2D grid between two angles
I've implemented a basic raycasting algorithm successfully, but I want to expand it to work with "angle ranges".
Knowing grid cell size, number of columns and rows, starting ray position, angle a ...
0
votes
1answer
44 views
C# input vector3 for calculating barycentric coordinates
I'm learning in school something little about barycentric coordinates, I have found code below which calculates if the point is in the triangle. But I can't figure out how to change the code so I can ...
0
votes
0answers
40 views
Generate PDF with vector graphics
I have an idea where I need to be able to dynamically create a PDF-file thats supposed to contain a number of vector-graphical images.. I also need to be able to "absolute" position the vector images ...
0
votes
1answer
43 views
AS3: How to intersect vectors at runtime?
Let's say I use the Graphics class at runtime to draw some vector shapes dynamically. For example a square and a circle.
Is there a way to create a new shape at runtime where those 2 vectors shapes ...
0
votes
0answers
29 views
Do SVG files automatically compress to their smallest possible pixel size based on their attributes?
I'm working on a bit of code that generates graphs in SVG, and I want to know what the size of the generated SVG file will be. For, instance, for the following set of two lines:
<?xml ...
0
votes
0answers
97 views
Raster Bitmap to Vector
My Goal
Trace the Raster Image (png,jpeg,bmp) To Vector
what i have done so far
i use delineate code in my application which uses potrace to trace the vector paths.
i have successfully complete ...
0
votes
0answers
37 views
Resize SVG Path(s) with Physical Mesaurement Unit
My GOAL
convert a Paper Pattern of Shoe shape in to Digital Scalable format by preserving its physical measurement with target printer DPI taken into account
I have a paper Pattern of a Shoe Side ...
0
votes
3answers
108 views
How to implement both scalar and vector addition using the += operator?
I'm working on a Vector2D class, and I think both vector addition and scalar addition make sense to be implemented with the +=/+ operators.
Trouble is, I don't really know how to work around this ...
0
votes
1answer
47 views
How to trace a image to vector with pixel by pixel?
I wan to trace a button image to vector use in Flash.
but I use the trace bitmap tool,it will be wrong color when the pixel color with alpha.
I try to use Illustrator to do that,but Illustrator can ...
0
votes
1answer
117 views
Obtaining Least square adjusted single line by intersecting many 3D planes
I am working with many 3D planes and looking for a Least square solution for below case.
IF I am having many number of 3D planes knowing only one point and the
normal vector (for eg. O1 and N1), ...
1
vote
2answers
255 views
Painfully slow software vectors, particularly CoreGraphics vs. OpenGL
I'm working on an iOS app that requires drawing Bézier curves in real time in response to the user's input. At first, I decided to try using CoreGraphics, which has a fantastic vector drawing API. ...
0
votes
0answers
54 views
How do I fit a vector curve outline envelope to an offscreen bitmap?
I am writing a drawing program that is vector-based but should have drawing tools that behave more like raster-based tools. For example - when you draw with a graphics tablet pen, the resultant vector ...
0
votes
0answers
137 views
Vector graphics rendering with best performance/memory consumption: PDF vs SVG [closed]
I don't consider PNG images' tiles for every zoom level, because it might be less efficient.
Which format is better for iOS in case of performance/memory consumption? I have to develop indoor map of ...
0
votes
1answer
97 views
Multiply a vec3 by modelview matrix
I have a 3D coordinate I want to transform by the modelVeiw matrix to get into view space in a GLSL shader. The point is defined in the shader, and is not affected by OpenGL's transformations. Is ...
0
votes
3answers
91 views
Is the DWG graphics file format a bitmap or vector?
Is the DWG graphics file format a bitmap format or a vector format? Or can it be either?
DWG wikipedia article
0
votes
0answers
56 views
How to draw lines and dots on my own map?
I am developing a indoor navigation app using phonegap.
I have my own map, it is a jpg format. Now I want to draw dots on that map, but have no single idea how should I do it. Should I first draw ...
2
votes
2answers
146 views
PIL and vectorbased graphics
I run into several problems when I try to open EPS- or SVG-Images with PIL.
Opening EPS
from PIL import Image
test = Image.open('test.eps')
ends in:
Traceback (most recent call last):
File ...
0
votes
1answer
204 views
How can I convert several .ai files to various sized .png files automatically?
I am making a deck of cards in Adobe Illustrator. Each card is saved as it's own .ai file so I can change it later if I want to. When using these images in an iOS app, I must convert everything to ...
0
votes
1answer
164 views
How to convert Rasters images (.bmp, .png, .jpg ) into Vectors Images (.svg) in iPhone SDK
I want to convert Raster Images (.bmp, .jpg, .png) into Vector Images (.svg) in iOS SDK.
Is there any API or SDK to convert Raster images into Vector.
How can I achieve this.
Thanks
0
votes
2answers
132 views
Java - pong game graphics not appearing
I can't for the life of me figure out how to create a filled white rectangle on my pong game window. I followed a basic tutorial (https://www.youtube.com/watch?v=_MAi2H6lf0A) on using the ...
1
vote
1answer
272 views
JavaScript - Interactive diagrams in Backbone.js application
Background: I'm currently developing the client side for a web application, using JavaScript, with jQuery and Backbone.js (these are required by the proponent).
This is an application to visualize and ...
1
vote
3answers
231 views
Draw a vector graph in Java 7
I'm trying to create some code in Swing/JPanel that takes some (changable) variables and draws a graph like this:
I have no idea where to start. The idea is there would be key points on the ...
3
votes
1answer
72 views
Create graphics for electronic diagrams [closed]
Does anyone know a fast and clean way of creating graphics/diagrams for electronic circuits? I'm writing a summary in LaTeX and need it to explain basic concepts like voltage, current, Thévenin etc.
...
1
vote
1answer
164 views
How to resize/resample bitmap images within pdfs and maintain vector overlays
My workflow is usually as follows:
I annotate bitmap images using inkscape with vector elements (text, lines, etc.). I export a pdf from inkscape and include it in my pdflatex source ...
1
vote
1answer
164 views
How can I set the z-index of EaselJS Graphics and Shapes
I have EaselJS Shapes on the canvas and then I start drawing Graphics each tick. At the moment the graphics are being drawn over the Shapes. Is there a way to define the z-index so that the Shapes are ...
0
votes
1answer
100 views
location Points: distance to a specified route
First let me state the idea:
I want to check the distance of a user to a specified route. The route consists of multiple Location Points (In the picture, point a, b, c, d). Two adjacent points ...
0
votes
0answers
34 views
Sphinx: inline vector graphics?
At many places of my python code, I would like add a simple sketch explaining geometry and similar things. I find it tedious to have such things in external SVG files. I know I can include TikZ ...
-1
votes
1answer
83 views
how do I substitute one colour for another, in every object, of an eps file? [closed]
I have a vector image that I need to edit and I have inkscape.
What I want to do is to substitute one set of coulours of the palette by another. For example, my image has a palette with several tones ...
1
vote
0answers
72 views
How to scale vector graphics properly?
I am learning how to use the vector drawing API and I have the following problem.
I am drawing lines and arcs on a canvas, and the View containing this canvas can be pinched zoomed. When zoomed in, ...
3
votes
2answers
460 views
How to use xaml vector images as image source in window 8 app
I created some assets in inkscape and would like to use them as icons in a windows 8 application. I have done some reading and it seams that while .Net 4.5 supports SVG, the modern ui profile does ...
0
votes
1answer
322 views
Multi-color SVG polyline
I'm using Leaflet to draw map data in SVG format on top of a map with javascript. I have a set of thousands of coordinates, in which I'm drawing a Leaflet Path (extends L.Browser.svg).
I'd like to ...








