Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
11k views

Set BufferedImage alpha mask in Java

I have two BufferedImages I loaded in from pngs. The first contains an image, the second an alpha mask for the image. I want to create a combined image from the two, by applying the alpha mask. My ...
3
votes
3answers
258 views

automatically composit sound - php or something like that - GD library for sound?

Ok does anybody have any idea for good ways to accomplish the following: A user programs some drum loops in flash and is somehow able to download or save an mp3 of the loop. I thought that the ...
2
votes
1answer
81 views

Stretching and overlaying bitmaps in C++

I'm working with Vis. Std 2010 Cpp and I've been trying to figure out how to create a bitmap from two existing bitmaps. I don't really want to use two gl_drawbitmap functions, one for each, but ...
2
votes
3answers
1k views

How does blending work with GLSL ES fragment shaders in WebGL?

I'm trying to get a simple effect to display using WebGL. Naturally, this means I'm using the fragment shader language defined in the GLSL ES 1.0 specification. The code I am working with is largely ...
2
votes
1answer
717 views

Cocoa: Using an NSGradient as a mask for drawing below it

I am trying to draw a shape's reflection using Cocoa. I have already applied an NSAffineTransform and redrawn the shape successfully, but now I can't figure out how to draw an alpha mask over it. I'm ...
1
vote
1answer
45 views

Don't erase background for visual trace in Quartz Composer

I it possible NOT to clear the background in Quartz Composer? I want to move an image across the screen and keep it visible at the old positions to have some sort of trace effect. Thanks and regards, ...
1
vote
2answers
135 views

Real-time video compositing using HD footage, controlled by script

I have been asked to construct a system for showing non-linear artworks on an HD screen, I need to be able to mix multiple streams of video together (ie using alpha maps) in real time and I also need ...
1
vote
2answers
445 views

X11 and ARGB visuals: does DefaultDepth() never return 32?

I'm establishing a connection to the X server like this: display = XOpenDisplay(NULL); screen = DefaultScreen(display); depth = DefaultDepth(display, screen); I'm wondering now why "depth" is ...
1
vote
2answers
2k views

Empty UIView with minimal drawRect: overhead

I have an application that has three nested views that are mechanically important, but have no visual elements: A vanila UIView that doesn't have any content of its own, and is simply used as a host ...
1
vote
4answers
1k views

Implementing Porter-Duff Rules in Direct3D

What Direct3D render states should be used to implement Java's Porter-Duff compositing rules (CLEAR, SRC, SRCOVER, etc.)?
0
votes
0answers
25 views

Java: EpsGraphics2D and Compositing (Transparency)

I want take my Java Canvas and export as EPS. The methods are all set up to do this, so the final step is to have it accept my Compositing. For drawing I do: Composite originalComposite = ...
0
votes
1answer
136 views

HTML5 Video Pixel Tracking

I know that generally, it's no problem to overlay HTML (and even do advanced compositing operations) to HTML5 native video. I've seen cool tricks with keying out green screens in realtime, in the ...
0
votes
1answer
543 views

Android view animation on top of GLSurfaceView is slow

We've noticed that when you put Android views with view animation (nothing complex, just AlphaAnimation and TranslateAnimation) on top of a GLSurfaceView, the animation runs slowly (i.e. you see a lot ...
0
votes
1answer
82 views

Queuing data into swapchain of IDirect3DDevice9

I am new to direct3D . I am trying to write an image on direct3ddevice and get the same image in xrgb from it. I create a texture and get the surface from GetSurfaceLevel(). I use a image file and ...
0
votes
0answers
158 views

How to patch xorg-server (about compositing problem of ATI)?

I'm sorry, the official driver of ATI is just woking!!! Here is a solution: http://blog.jasondonenfeld.com/190 I tried to make install xorg-server, but it seems not working. (Download ...
0
votes
1answer
431 views

iPhone Quartz. How do I create a matte using a path rather then a bitmap?

In the visualization app I'm writing I want to shape a graphic using a matte created with a path. The graphic is a horizontal rectangular strip with various shapes drawn within. Atop this rectangular ...