Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
4k views

How to blit() in android?

I'm used to handle graphics with old-school libraries (allegro, GD, pygame), where if I want to copy a part of a bitmap into another... I just use blit. I'm trying to figure out how to do that in ...
4
votes
1answer
792 views

Cut out circular image in canvas

I am useing html5 canvas, and I am creating a game were it is going to be possible to upload your face into the game, and use it as the main charactar. Unfortunately, the charactars in the game are ...
4
votes
4answers
643 views

Fastest iPhone Blit Routine?

I have a UIView subclass onto which I need to blit a UIImage. There are several ways to skin this cat depending on which series of APIs you prefer to use, and I'm interested in the fastest. Would it ...
3
votes
1answer
62 views

pygame graphics grid

Hello, I am new to Python and graphics programming in general. At present I am messing around with creating grids as practice, and I am having problems with getting pygame to put objects on top of the ...
3
votes
1answer
192 views

OpenGL full screen texture brings framerate down to 12fps

I've been grinding on this one a couple nights now, any tips would be appreicated: I installed linux (Debian) on an old laptop and have been writing an OpenGL application with it. The framerate ...
2
votes
1answer
220 views

Mask out white color from PNG or GIF image, blit it to canvas using any color

Source is either PNG or GIF where the pixels that should be "colorized" are white. Background can be either black or transparent, whichever is easiest. Now I'd like to cut out a rectangular part of ...
1
vote
1answer
28 views

Undo steps in Pygame

I was wondering how I would undo drawing steps in Python/Pygame. Basically I have made the mouse draw lines, and when I click my undo Rect, I want the screen to revert back to its original state ...
1
vote
2answers
31 views

How to load and blit image python

I am trying to use the tkFileDialog.askopenfilename to load an image and then blit it on screen, but it isn't working out. I created a Rect button so that when I click it it would open the ...
1
vote
1answer
97 views

python pygame blit. Getting an image to display

I'm trying to get my webcam to show video through pygame. Here is the code: # import the relevant libraries import time import pygame import pygame.camera from pygame.locals import * # this is where ...
1
vote
1answer
115 views

ActionScript 3.0 - Blitting with repositioning sprite sheet vs. copyPixels?

which is more performant for blitting - repositioning a sprite sheet within a scrollRect or using copyPixels()?
1
vote
2answers
65 views

Python/Pygame transitioning from one file to another

Sorry if this question is incredibly easy to answer, or I sound like an idiot. I'm wondering how I would execute a script in one file, pygame event loop, blits, etc, then switch to another file, ...
1
vote
0answers
34 views

Blitting with a camera leads to seams (due to floating point errors?)

I'm working on a tilemap implementation with blitting (in Flash but I don't think it's language relevant). The problem I'm having is that as I pan my camera around, 1 pixel seams start to become ...
1
vote
4answers
163 views

BitmapData.rect creates a new rectangle?

I was working on some blitting code today and after profiling it found that I was creating 1000s of new rectangles. I was shocked because I only had 1 or 2 different new Rectangle() calls or I was ...
1
vote
2answers
3k views

Sprite-Sheet BLIT with HTML 5 Canvas?

Looking for an example of someone doing a a sprite sheet BLIT with javascript and the HTML 5 Canvas tag. I've been looking at Processing.js a bit, but I haven't found a clear cut example of how to ...
1
vote
2answers
817 views

Fast rgb565 to YUV (or even rgb565 to Y)

I'm working on a thing where I want to have the output option to go to a video overlay. Some support rgb565, If so sweet, just copy the data across. If not I have to copy data across with a ...
1
vote
2answers
935 views

How do I blit a PNG with some transparency onto a surface in Pygame?

I'm trying to blit a PNG image onto a surface, but the transparent part of the image turns black for some reason, here's the simple code: screen = pygame.display.set_mode((800, 600), ...
0
votes
0answers
91 views

SDL 1.3 issue with SDL_CreateTextureFromSurface and OpenGL renderer

I'm using SDL 1.3. I have an issue when trying to create a SDL_Texture from a SDL_Surface, itself from a 1024*640 PNG image. Here is the relevant code : SDL_Event event; SDL_Window *win = NULL; ...
0
votes
0answers
45 views

Inappropriate Rectangle Sizes in VideoProcessBlt function

Description I have a video with resolution 1280 X 720 pixels (with 16:9 aspect ratio). While processing each sample am setting rectangle sizes as following:- BLIT Process Pararmeter --> Target ...
0
votes
0answers
59 views

SDL : blitting time optimization

I'm using SDL in windowed mode. Given a large sprite, say 1024 x 640, is it faster to blit the entire image into severals small tiles, say 32 x 32 px, than to blit the whole image at once ? I have ...
0
votes
1answer
61 views

Jaggy paths when blitting an offscreen CGLayer to the current context

In my current project I need to draw a complex background as a background for a few UITableView cells. Since the code for drawing this background is pretty long and CPU heavy when executed in the ...
0
votes
0answers
29 views

Colourising Textures in pyglet

I have been working on a platformer for pyweek, where levels are made up of a large number of tiles. As part of some optimizations I have started blitting all tiles to a texture on level load, and ...
0
votes
1answer
123 views

SDL Render Text not showing up unless other surface cleared

Guys, I would like to ask this, I have a timer = TTF_RenderText_Solid( tfont, timeStr.str().c_str(), txtColor ); applySurface(500, 30, timer, screen); and on the 'screen' surface I have also ...
0
votes
1answer
201 views

Can I generate a continuous PNG spritesheet using Flash?

If I have acomplex timeline animation with a series of shape and motion tweens, is it possible to export all the separate frames as a sequence of sprites in one huge PNG sheet? There is a great ...
0
votes
1answer
174 views

How can I determine if I will draw offscreen when doing custom bitmap blitting in a view inside a scrollview in Android

I have subclassed View and do some bitmap drawing inside of the onDraw method. This view is then placed in a horizontal scrollview. Some of the time the bitmaps will not be visible since they are ...
0
votes
2answers
969 views

Flash: combine two BitmapData objects via max( channel )

I have two BitmapData objects with alpha channels. I'd like to combine them into a single one by using max(channel_image_one, channel_image_two) for each channel, including the alpha. Is there an easy ...
0
votes
2answers
1k views

Pygame: Blitting a moving background creates too much blur

What I am trying to do is create a viewport to view a small portion of a background. (And later put sprites in). However the problem I have noticed is there seems to be an issue of the background ...
0
votes
6answers
385 views

Is there any way to “clear” a surface?

Just wondering... Is there any way to clear a surface from anything that has been blitted to it?
0
votes
1answer
197 views

How do I use SDL to blit an image in multiply mode?

In Pygame, there is a special_flags argument to surface.blit. This let you combine pixels in ways different than simply copying them. For example, the multiply mode lets you multiply the pixels ...
0
votes
4answers
1k views

opengl slow on texture blit

I called this function once per frame and it took my FPS from >400 to 33. Why? sw blt(const PtRect *dstRect, Texture *src, const PtRect *srcRect, RenderDevice::bltFlags ...
-1
votes
1answer
533 views

OpenGL Textures wont work unless made between two pieces of code which isn't what I want

I'm making a game with python and OpenGL. I was making it with pygame but I realised quick enough that it was too slow. I've made a class which I want to reasonably act like the Surface class for ...