1
vote
2answers
34 views
Bitmap Morph Tween in Actionscript?
How do you do a bitmap morph tween in Actionscript? I would like to morph a Panel into a Button, using BitmapData or something but I have no idea where to begin.
0
votes
3answers
143 views
can not draw on GDI+ bitmap object.
I am writing program in c++ gdi gdi+.
Drawing large image on gdi+ bitmap is slow is using gdi+ api.
So I used the following way to draw:
Bitmap img(xxx);
Graphics gr(&img);
HD …
0
votes
2answers
310 views
How to Convert GDI+’s Image* into Bitmap*
I am writting code in c++, gdi+.
I make use of Image's GetThumbnail() method to get thumbnail.
However, I need to convert it into HBITMAP.
I know the following code can get GetH …
0
votes
2answers
19 views
How do disable a SimpleButton including changing it’s appearance
Here is the premise:
I have 10 buttons each with on normal state image (buttonX.png) and a mouseover state (buttonXglow.png). The buttons are created manually in flash, but refere …
0
votes
1answer
27 views
C# - How to convert an Image into an 8-bit color Image?
I need to convert a PNG Image loaded from a file into an 8 bit-per-pixel byte array used by another device (embedded programming).
I'm copying over pixel by pixel into a new Image …
0
votes
2answers
20 views
C# - Copy an Image into an 8-bit Indexed Image
I want to create an 8-bit indexed image from a regular 32-bit Image object.
Bitmap img = new Bitmap(imgPath); // 32-bit
Bitmap img8bit = new Bitmap(imgW, imgH, Format8bppIndexed); …
0
votes
1answer
38 views
add file icon to datagrid in flex
Hello, I'm trying to put some File objects into a DataGrid, but I can't find a way to display the File.icon in there.
So far I have this: (ms[x] is a File)
listData.addItem({
fi …
0
votes
0answers
20 views
Convert bitmap to PNG or JPG using Objective C
Anyone knows how to convert a bitmap to PNG or JPG using Objective C assuming I have
CGImageRef imageRef;
1
vote
2answers
287 views
Finding specific pixel colors of a BitmapImage
I have a WPF BitmapImage which I loaded from a .JPG file, as follows:
this.m_image1.Source = new BitmapImage(new Uri(path));
I want to query as to what the colour is at specific …
1
vote
1answer
30 views
Working with bitmap in WPF
Is there any sane way to work with bitmaps in WPF? I'd like similar functionality as System.Drawing.Bitmap: be able to load image from file and get and set the color of particular …
0
votes
1answer
109 views
TBitmap drawing transparent image in Delphi 2009.
Hi,
Problem in drawing a semi transparent PNG image on TBitmap object.
If the TBitmap's ,HandleType is set to bmDDB, then the canvas is drawn transparent.
But the problem is it d …
2
votes
4answers
51 views
Copy bytes in memory to an Array in VB.NET
Hello,
unfortunately I cannot resort to C# in my current project, so I'll have to solve this without the unsafe keyword.
I've got a bitmap, and I need to access the pixels and ch …
0
votes
1answer
26 views
convert movie file to bitmap files with DirectShow
I want to convert movie files like AVI, MOV etc. to Bitmap-Files, like JPEG, JPEG2000, TIFF etc.
Is it possible to realize that with DirectX / DirectShow?
Is AVCodec from ffmpeg th …
3
votes
5answers
78 views
How to create a bitmap programmatically in C#
Hi, i need to create a 24 bits bitmap (resolution 100x100 pixels) using a unique RGB color and save the generated image to the disk.
currently i use the SetPixel function , but it …
0
votes
2answers
40 views
Why is loading FromFile and new Bitmap different? Its breaking my code :(
I am using tessnet2 to extract the sentence in this img file. When i call the tessnet2 func using bmp it fails (it returns "~" as my sentence) and when i use bmp2 instead it works. …
