The raster-graphics tag has no wiki summary.
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 ...
0
votes
0answers
55 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 ...
4
votes
3answers
263 views
Producing a raster plot in R
I'm trying to produce a raster graph (like a hovmoller diagram) and was hoping someone might help. I've looked at the help with rasterVis and some others but can't seem to get their examples to suit ...
1
vote
1answer
119 views
Vector background images vs raster background images
I currently use a repeating pattern of raster images on one of my websites, which isn't so complex that it couldn't be converted to vector, but hasn't, as of yet, been scaled up to look decent on ...
8
votes
2answers
211 views
Dip when joining blended antialiased lines
I have a problem when joining two antialiased lines when using a blending mode, I get a dip at the point where they join. By blending mode I mean that I draw my antialiased line by calculating the ...
1
vote
0answers
248 views
Optimizing render of content in Html5 canvas
Im Developing a open-source library which uses the Html5 canvas's graphic context to render a hierarchy of views. However i would like to make some performance optimizing allowing faster rendering of ...
1
vote
2answers
500 views
What algorithm is behind the Gimp's “Color to Alpha” feature?
For those who aren't familiar with the Gimp's "Color to Alpha" feature yet, here is the page on it from the Gimp's documentation: Color to Alpha. It does a really good job, and I wonder much how ...
2
votes
1answer
273 views
General algorithm for rastering vector image
What is the general algorithm of rasterizing vector image? I've found a lot of algorithms of rasterizing primitives such as lines, circles, Bezier curves etc. But for general, what should I do? ...
2
votes
1answer
117 views
Can I use ROPs in Canvas? (I care for performance reasons only)
So... In the good old days of making games, when you were drawing sprites to the screen, you'd use ROPs to draw only the "non-transparent" part of your sprite. (Yes, I haven't done any game coding in ...
3
votes
1answer
232 views
ploting artefact with points over raster
I noticed some weird behavior when resizing the plot window. Consider
library(sp)
library(rgeos)
library(raster)
rst.test <- raster(nrows=300, ncols=300, xmn=-150, xmx=150, ymn=-150, ymx=150, ...
0
votes
4answers
164 views
Merging rasters
I am trying to implement a painting tool with layer support. For each layer I create a WritableRaster. To display the canvas, the layers have to be merged. What's the most efficient way to do this? I ...
6
votes
2answers
1k views
Creating raster images using R
I am trying to use R to create a raster image from a matrix of data. However, I am getting some weird artifacts on the edge of my image.
The code I am using is as follows:
# From the example for ...
0
votes
1answer
97 views
Convert CAD to raster
How do printers convert the vectorial CAD graphics to dots in paper? I have a 50mmx50mm with 4095x4095 points "printing" system and I'd like to print some CAD files to it? Should I use the existing ...
0
votes
1answer
179 views
Shapes-tool creating a vector mask every time, cannot seem to fix in CS3? [closed]
Every time I create a shape using the shape tool, it places a vector mask on top of this. I don't know how I enabled this but it does not do it on my laptop version, only my desktop.
I can seem to ...
0
votes
2answers
60 views
Checking if vector object will be visible on print with given dpi and print size
I have file (*.shp used in GIS) that contains collection of polygons and maybe other vector objects (but polygons are most important for me). I need to remove non printable objects it.
I don't know ...
2
votes
3answers
438 views
Antialiasing alternatives
I've seen antialiasing on Windows using GDI+, Java and also that provided by Photoshop and Gimp. Are there any other libraries out there which provide antialiasing facility without depending on ...
