The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
13 views

Converting a pixel data array to a bitmap and a iplimage?

I got a little issue, i got to do a compression/decompression system for videos, so each videos is split into frames I'm testing to compress and decompress only one frame, for compressing i'm doing ...
0
votes
1answer
18 views

Flash Mobile app: different RAM consumption on device and on profiler

I'm profiling my flash mobile app and I noticed that the RAM consumption is different when the app runs on device or on the Flash Builder profiler (I'm using Flash Builder 4.7 + Apache Flex 4.9.1 + ...
1
vote
1answer
45 views

Load an Image in Multiple movie clips using as3

I am really curious of asking a particular question to everyone of you. I am creating an Application in flash that is lot similar to this Application Zazzle Case Cover I am almost ready with what i ...
2
votes
2answers
37 views

Can't display a very big image after loaded

I have a big JPEG image file. It's dimension is 19000*14000 and the file size is about 41M. i'm using AIR 3.3 SDK, but after the load completes I can't see the image on stage. Does anyone know what ...
1
vote
2answers
71 views

Flex - Error #2015: Invalid BitmapData

I really need some help on this, as I have no idea how to fix it! :/ Got a problem here. My application is working fine on my computer, both offline and online (flash uploaded to our webservers). It ...
-1
votes
0answers
38 views

How do I make it (Kinect Your Shape Fitness) image in airKinect? [closed]

I saw that 'Kinect Your Shape Fitness'. http://www.youtube.com/watch?v=ifVqE3q_KNE and 'Kinect nike training'. http://www.youtube.com/watch?v=EOjRQ1Ytruc I want the image to look like it. ... ...
0
votes
0answers
11 views

BitmapData and AVM mechanism

I was wondering why there's the separation between Bitmapdata and bitmap object .it must be related to The performance or flash AVM ? Dose anybody could shed some light on the mechanism? Tanks a lot!
0
votes
1answer
27 views

Stop function creating bitmaps/reduce cpu overload/reduce lag

Hi I'm noticing that the following code is producing a noticeable chunk of lag when it is incorporated. public function impassable_collisions():void { //prevent player from moving through ...
1
vote
2answers
62 views

Retrieving RGBA values from an image [duplicate]

I am retrieving data from an Image using the CGDataProviderCopyData but the bytes returned by this function is very large when compared to the image file size. Here is my code. UIImage *image = ...
0
votes
1answer
70 views

How to create and retrieve new bitmap in iOS

I would like to convert an Image from one format(.png) to other image format (.img format). I was able to retrieve and modify the rgba values for the same image format.Is there any additional thing I ...
0
votes
2answers
101 views

Drawing a bitmap based on a transformed movieclip

I'm drawing bitmaps of movieclips which I then feed into my hittest function to test for collisions. However, I'm not quite sure how i would add to the code below to take into account and draw bitmaps ...
0
votes
0answers
62 views

Tiling an external bitmap in actionscript2, with beginBitmapFill?

I'm trying to get an external image tiled in actionscript 2 (there's a lot of existing as2 code this feature will be added to, so using as3 is not really a viable option). The best solution I've ...
0
votes
1answer
62 views

As3 optimizing bitmap data method

I am trying to optimize the following method public function update() : void { if (_player.playing && !_player.paused) { bitmapData.lock(); ...
1
vote
2answers
106 views

AS3 - looping through movieclips and rasterizing them to bitmapdatas - how to be sure frames are ready?

this is a newer version to a question i have asked before but have not received an answer to. I am developing a mobile AIR app with many animations and tests have shown that using bitmaps and GPU ...
1
vote
0answers
77 views

CopyPixels/MergeAlpha changes color AS3

I am making a smudge kind of tool. I use following method - 1) draw circle on a brushAlpha (bitmapData). 2)_orignalData.copyPixels(_orignalData, new ...
2
votes
3answers
155 views

How to detect if the area was 100% painted in as3

I´m making a game that simulates an industry of pan, and one of the process is Painting. What I want to do is to let the player paint the pan, but i don´t want it to be easy using FILL, i want that ...
1
vote
2answers
70 views

Can the Scan0 or Stride of a BitmapData change over a period of time?

I'm using a BitmapData object aquired using Bitmap.LockBits to read and write pixel data quickly. The functionality is encapsulated in a class. Can I store refs to the Scan0 and Stride of a BitmapData ...
0
votes
0answers
45 views

Plotting Map Coordinates

I have to be honest, this is the first I will be dealing with map data. I have info about matrices and how to plot coordinates. This data here is a bit difficult for me to understand. I have used it ...
0
votes
1answer
243 views

AS3 BitmapData fillRect with Transparency not working as expected

I'm trying to use some fillRects on a 32bit BitmapData (i.e. transparency = true and bg color set to FFFF00FF (opaque magenta). For instance I use: fillRect(rect, 0xFF0000FF); This will draw an ...
1
vote
1answer
50 views

Getting an unexpected trace for getpixel32. Can anybody see why?

When running the following code, "-2" is being traced and I am wrecking my head trying to understand why. var bmd:BitmapData = new BitmapData(1,1,true,0xFFFFFFFF); bmd.setPixel32(0,0, 0x32FF6B45); ...
0
votes
0answers
40 views

Accessing BitmapData erratically shows “cannot access protected memory”

I'm working with bitmaps in C#, and using the unsafe BitmapData class to access the pixel data directly. Erratically and for no apparent reason I get this error (rarely, probably every hour or so) ...
0
votes
0answers
65 views

Can i get the bitmapdata of an smooth streaming content?

I'm using the new Microsoft plugin to stream smooth streaming content to an OSMF player. I followed that example But i need to get the bitmapData of the video to split them into different "screens". ...
1
vote
0answers
397 views

AS3 BitmapData threshold(): replace color that has an alpha?

Hi I would like to replace a specific color in a bitmap with another one. The BitmapData.threshold() function works fine if the threshold color value has no alpha. var threshold:uint = 0xFF004d5e; // ...
0
votes
2answers
46 views

Duplicating bitmapData from a loader

I'm trying to develop an app for iOS using flash CS6. I have imported an image using a loader. I now want to be able to create a duplicate instance of the loaders bitmap data and have been trying: ...
0
votes
0answers
213 views

AS3 - BitmapData FloodFill smooth

I trying to do a floodfill with tolerance. So I trying a solution, maybe get the color of floodfill, make another bitmap and aply a blur and draw over the first bitmapdata. But I don't know how ...
2
votes
2answers
77 views

Strange behaviour with Bitmap.Clone()

var source = new Bitmap(2000,2000); var sw = Stopwatch.StartNew(); for (int i = 0; i < 10000; i++) { //var copy = new Bitmap(source); var copy = ...
2
votes
2answers
130 views

make visual clone of displayObject that's nested within other displayObjects, and add the clone to the stage layer in the same location, rotation, etc

I want to be able to grab a copy of a DisplayObject that is nested within other transformed DisplayObjects (rotated, scaled, stretched objects), and be able to stamp it back into the same visual ...
1
vote
1answer
124 views

JPGEncoder Freezing App

I'm creating a iOS and Android application in Flash Builder that uses the JPGEncoder function to convert the taken image from the device to a bytearray but in iOS my app freezes and in Android the ...
0
votes
2answers
285 views

AS3 - Find the most abundant pixel colour in BitmapData

Basically, I want to get the most common ARGB value that appears in a BitmapData. That is, I want to know which exact pixel colour is the most abundant in the image. I tried going through every pixel ...
0
votes
2answers
188 views

Bitmapdata.draw(MovieClip) Gives Blank BitmapData

I'm predrawing all vector element in my game to bitmaps to improve performance - the vector elements are exported as swf files from Illustrator (I suspect that is part of the problem). When embedding ...
0
votes
0answers
45 views

Removing/reducing noise from video feed BitmapData in Flash

I am processing a video feed in order to detect where objects are on the screen. I get the feed from a device and apply a filter that divides the colors of the feed into black and white. There are ...
2
votes
1answer
178 views

Bug while using bitmapdata.draw() AS3

I searched and tried many things to get this bug fixed. I have this following code for iOS. import flash.media.CameraRoll; //import flash.events.MediaEvent; import flash.events.Event; import ...
0
votes
2answers
303 views

Smooth scrolling on Flash AS3

Is it possible to do completely smooth scrolling in Flash (ActionScript 3)? In the following test I am creating a bitmap consisting of random noise, then moving it to the left periodically. I have no ...
0
votes
1answer
89 views

Images Sd card android

My question is there any android library which does the following features 1.Accessing images from sd card as thumbnails 2.Click on thumbnail shows the actual image.On the swipe of that image it ...
0
votes
0answers
133 views

AS3 Cropping specific sections from video

first user will see a video(mirror like) n then they will need to draw a rectangle by clicking n dragging(Mouse Down,Move,and Up) The mouse down and up position is stored in variables. So i want them ...
1
vote
0answers
38 views

Setting hires bitmapData gets delay on ipad

I have two images with two resolutions: HD(2500x1500px) & LD. I use LD in preview and HD in detailed view. When project loading, it stores loaded BitmapData into system memory as a bitmapData ...
1
vote
2answers
131 views

Access Violation Using BitmapData in Image Mask Function

I wrote a version of this function which takes a grayscale bitmap as a mask and a source bitmap and outputs a bitmap with the mask applied using SetPixel and GetPixel but it was very slow, so instead ...
0
votes
1answer
329 views

AS3 - Trying to resize a BitmapData but Matrix doesn't change anything

Here's the situation : on my stage, I have a Bitmap object that references a BitmapData object. My Bitmap object is fullscreen, so 1366x768. On the other hand, I have a function (from a library so I ...
2
votes
0answers
137 views

Game developing in flex: performance issue drawing many scaled bitmaps

I have developed an action game with Flex 4.6.0 and I am having an issue with the drawing part. Actually, during a few days, I thought the problem was the calculation on the physics part, but after a ...
5
votes
2answers
362 views

How many ways to convert bitmap to string and vice-versa?

In my application i want to send bitmap image to the server in the form of string, i want to know how many ways are available to convert a bitmap to string. now i am using Base64 format for encoding ...
0
votes
1answer
134 views

Strange Artifacts on Edge of Blended Gradient in AIR

UPDATE It appears this happens with any blendmode - not just erase I've been working on a crude lighting engine for a game of mine in Adobe AIR, written in pure AS3. How it works is there is a bitmap ...
0
votes
1answer
126 views

Loading retina/normal images using core graphics

+(UIImage*) createCGImageFromFile:(NSString*)inName { if(!inName || [inName length]==0) return NULL; // use the data provider to get a CGImage; release the data provider ...
2
votes
1answer
142 views

AS3 bitmapData on nextframe();

not a coder so struggling a little here: Trying to draw current frame in the next frame as a bitmap for cpu efficiency. In AS2 this code works like a charm: import flash.display.*; // # create the ...
1
vote
0answers
106 views

How to get one MovieClip from several external SWFs. AS2

That is my question. I have many swf files with AS2 inside and I know that all of them has MovieClip named "viewport". So, I need to print all frames from these MovieClips. I tried to do this with ...
1
vote
1answer
138 views

Is it possible to add a movieclip over a bitmap of StageWebView

I want to add a simple spinnerloader(movieclip) over a StageWebView html page for that i converted StageWebView page to bitmap but that didnt work please help me to solve this problem var ...
1
vote
1answer
102 views

Actionscript 3 bitmapdata.draw with a brush using matrix

I'm writing a paint program that uses shape brushes to draw by using the matrix function. Everything works well aside from the fact that it's not smooth at all. There will be gaps in the painting if ...
0
votes
3answers
117 views

removeChild is removing all my Movie clips

I am making a tool which obscures an image with squares. What I want to happen is to have a bouncing ball which hits the squares and makes them disappear. However, the removeChild command isn't ...
1
vote
1answer
118 views

AS3 Bitmapdata Canvas spritesheet loader help needed

I'm very new to AS3 and I don't really know all of the basic syntax yet, even though I read through some guides every day. I am using this bitmapdata canvas to load spritesheets onto a canvas, and ...
0
votes
1answer
87 views

BitmapData size in windows mobile

I am trying to read image using native functions. To that end, i tried using this code: var result = new Bitmap((int)info.width,(int)info.height,PixelFormat.Format24bppRgb); var data ...
0
votes
1answer
138 views

Drawing the exact region of the Bitmap in as3

I am working on a Action Script 3.0 application , in which i ill be allowed to load the image and make them draggable. Consider i am loading the deer image and making it as draggable. Problem with ...

1 2 3 4 5 6