Tagged Questions
The argb tag has no wiki summary.
10
votes
3answers
369 views
What does the >> operator do in C#?
I'm quite new to C# and trying to do a basic image processing software. I understand this snippet extracts A,R,G,B from an ARGB int value of a WriteableBitmap pixel "current"
for(int i = 0; i < ...
8
votes
4answers
505 views
Color similarity/distance in RGBA color space
How to compute similarity between two colors in RGBA color space? (where background color is unknown of course)
I need to remap RGBA image to a palette of RGBA colors by finding best palette entry ...
5
votes
3answers
773 views
Format of TYPE_INT_RGB and TYPE_INT_ARGB
Could anyone explain for me how java stores color in TYPE_INT_RGB and TYPE_INT_ARGB ?
Do these lines of code work properly for calculating red, green and blue ?
int red= (RGB>>16)&255;
int ...
3
votes
1answer
3k views
Access to raw data in ARGB_8888 Android Bitmap
I am trying to access the raw data of a Bitmap in ARGB_8888 format on Android, using the copyPixelsToBuffer and copyPixelsFromBuffer methods. However, invocation of those calls seems to always apply ...
2
votes
2answers
194 views
How do I find the RGBA value of a color from two RGB values?
I have a hunch this has been done before but I am a total layman at this and don't know how to begin to ask the right question. So I will describe what I am trying to do...
I have an unknown ARGB ...
2
votes
1answer
479 views
java Graphics2D: filling with transparency
I created an ARGB BufferedImage. Now I'd like to reinitialize it with a transparent background. I tried the following code:
(...)
if( this.offscreen==null ||
this.offscreen.getWidth()!= ...
2
votes
1answer
2k views
Android - Read PNG image without alpha and decode as ARGB_8888
I try to read an image from sdcard (in emulator) and then create a Bitmap image with the
BitmapFactory.decodeByteArray
method. I set the options:
options.inPrefferedConfig = ...
2
votes
2answers
667 views
Implementing ToArgb()
System.Drawing.Color has a ToArgb() method to return the Int representation of the color.
In Silverlight, I think we have to use System.Windows.Media.Color. It has A, R, G, B members, but no method ...
2
votes
2answers
635 views
How do I Convert ARGB value from string to colour?
I am trying to use the MakeColor method in the GDIPAPI unit but the conversion from int to byte is not returning me the correct value.
Example
var
argbStr: string;
A, R, G, B: Byte;
begin
...
2
votes
1answer
861 views
Converting uint color to argb hexadecimal for kml color
Good day everyone,
I am stuck trying to convert a uint color value into its equivalent argb hexadecimal format. Basically, I am trying to convert a color from Flex(AS3) into its appropriate kml ...
1
vote
2answers
388 views
Converting ARBG to RGB with alpha blending with a White Background
I have a color hex string stored in the database like 0x78dce6b0; I can convert this to an ARGB color using:
string colorString=0x78dce6b0;
int hexColor = Convert.ToInt32(colorString ?? "0", 16);
...
1
vote
1answer
427 views
ARGB to YUV && Color Spaces in .NET
I noticed that Color struct from System.Drawing represents color in ARGB color space. So there are some questions:
How to convert image beetween ARGB and YUV in c#? I found formulas describing RGB ...
1
vote
4answers
1k views
IPhone RGBA to ARGB
Im using glReadPixels to grab screen shots of my opengl scene and then turning them into a video using AVAssetWriter on IOS 4. My problem is i need to pass the alpha channel to the video which only ...
1
vote
1answer
375 views
How to create a window with a bit depth of 32
I'm trying to create a X11 window with a bit depth of 32 so that I can use ARGB colors. Here's what I do:
XVisualInfo vinfo;
int depth = 32;
XMatchVisualInfo(dpy, XDefaultScreen(dpy), depth, ...
1
vote
1answer
249 views
Encode/Decode CMYK Images from Flash Player
I'm currently working on an image editor in Flash Player, and I need to be able to export CMYK images to my server. I'm completely new to color profiles and the like, and I was wondering how I could ...
1
vote
2answers
854 views
C++ Converting image to integer array
How would I go about converting the pixels in an image (.png file) to an integer array, where each pixel is converted to its ARGB integer equivalent? Not a 2D integer array by the way, a 1D one (where ...
0
votes
1answer
47 views
PorterDuff.Mode.MULTIPLY - the sence of this color transformation in Android
Under default Android theme I have three custom colored buttons by means of
button.getBackground().setColorFilter(customColor, PorterDuff.Mode.MULTIPLY);
When I switch to Theme.Holo by means of ...
0
votes
2answers
45 views
RGB to CMYK 0 0 0 100 help find color scheme [closed]
Hi please give me link ongood converter, or help which color in RGB equal to CMYK 0 0 0 100
0
votes
2answers
865 views
How to load OpenGL texture from ARGB NSImage without swizzling?
I'm writing an app for Mac OS >= 10.6 that creates OpenGL textures from images loaded from disk.
First, I load the image into an NSImage. Then I get the NSBitmapImageRep from the image and load the ...
0
votes
1answer
929 views
Apply ARGB color to a textview programmatically
I'm currently using something like: TextView.SetBackgroundColor(Color.WHITE); in my java code. I'd like to be able to add some transparancy to the textview through the java... This is easy to do in ...
0
votes
1answer
1k views
Actionscript 3.0 Translating HEX to ARGB
i'm studying getPixel32() and the Bitmap and Bitmap Data classes. Basically, i'd like to know how to output a simple trace of an ARGB from a hexadecimal value.
as an aside, i'm under the ...
0
votes
1answer
108 views
Geting a inverted result from using FromArgb R = B? where does this fail?
the R and B gets error when using this logic, i cant seem to find what im doing wrong, my workaround in the end were i flip the r and b is not good at all and im trying to find where the logic ...
0
votes
6answers
863 views
convert 24bit RGB to ARGB16
i am reading a 24bpp bitmap , and i need to convert each pixel from RGB24 to ARGB16.
i am using this :
#define ARGB16(a, r, g, b) ( ((a) << 15) | (r)|((g)<<5)|((b)<<10))
but the ...
0
votes
7answers
720 views
Regex for matching ARGB Color (-44830298)
i'm trying to get Color information that i've stored in a text file and then use that color as the forecolor for a label. BUT, at run time when i click the button to do it, it doesnt give me any ...