Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
2k views

Android TextView setTextSize incorrectly increases text size

This is in an extension of TextView. getTextSize and setTextSize are not overridden, I do not extend those methods. Programming in 1.6, API level 4. The loop in this code causes size to be multiplied ...
3
votes
1answer
168 views

OpenGL pixels drawn with each horizontal pair swapped

I'm somewhat new to OpenGL though I'm fairly sure my problem lies in the pixel format being used, or how my texture is being generated... I'm drawing a texture onto a flat 2D quad using a 16bit ...
2
votes
1answer
80 views

Opening an image file to a Bitmap class as 32bppPArgb

Does .NET support PixelFormat conversions? I can't find any methods or constructors to do what I want. I am allowing the user to choose any image file and I am creating a new Bitmap class from the ...
2
votes
2answers
706 views

FormatConvertedBitmap - No imaging component suitable to complete this operation was found error

I'm using code below for converting an RGB tif file to CMYK format. It works great on my local development machine(Windows 7) but is throwing this error in our Windows 2003 production server. Error: ...
1
vote
0answers
39 views

IWICFormatConverter: Converting from a format that supports transparency

I'm looking for a way to specify a background (matte) color to use when converting from a pixel format with transparency support to one without transparency support using Windows Imaging Components. ...
1
vote
1answer
89 views

OpenGL texture upload: UNSIGNED_BYTE vs UNSIGNED_INT_8_8_8_8

I'm calling glTexSubImage2D. If my pixel format is GL_RGBA, then are the pixel types GL_UNSIGNED_BYTE and GL_UNSIGNED_INT_8_8_8_8 fully equivalent? Also, are these two pairs equivalent? Format = ...
1
vote
3answers
3k views

C# Why Bitmap.Save ignores PixelFormat of Bitmap?

I need to process and save images in their original bpp (1 - for BnW, 8 - for gray, 24 - color). After processing I always have 24bpp (due to processing with Aforge.Net). I pass original bpp to saving ...
1
vote
1answer
325 views

How to use PixelFormats.IndexedX with RenderTargetBitmap?

I am looking to render a DrawingVisual (visual in the example) to a bitmap using RenderTargetBitmap with the view to set this bitmap as the background to a Canvas as below: var bmp = new ...
1
vote
1answer
103 views

Enumerate all pixel formats with AGL - how? (Mac OS X)

I would like to create a list of all available pixel formats for OpenGL. On Windows, I can do this by calling DescribePixelFormat in a loop, increasing the pixel format id, until it returns false. ...
1
vote
1answer
833 views

C# Lockbits for more exotic PixelFormats

I'm writing a performance critical class in C# for image manipulation. I'm using LockBits to gain access to the actual data directly and all is working well but I'd like to get more info on the memory ...
0
votes
0answers
17 views

What are valid PixelFormats on different Android devices?

When setting the PixelFormat on an Android GLSurfaceView, such as: glSurfaceView.getHolder().setFormat(PixelFormat.RGBA_8888); Is there any limitation on particular PixelFormats for particular ...
0
votes
1answer
77 views

EAGLView transparency frames per second

I have a Cocos2d project and I want a constant background throughout the app. In the applicationDidFinishLaunching method of its delegate, I have replaced the line: [viewController setView:glView]; ...
0
votes
1answer
33 views

How to repair UnsupportedImageFormatException PixelFormat Format32bppArgb?

Accord.NET PointsMarker.cs seems to support PixelFormat Format32bppArgb. Why does this catch an UnsupportedImageFormatException? private void Harris() { try { img1 = new ...
0
votes
2answers
70 views

C# compare pixelformats

How can i compare pixel formats of 2 images? i have tried this: if (img1.PixelFormat > img2.PixelFormat) but "Format8bppIndexed" got rated as being bigger than "Format24bppRgb" what am i doing ...
0
votes
1answer
143 views

How can I get the PixelFormat of a BitmapSource

I am using the following to convert a BitmapSource to a Bitmap: internal static Bitmap ConvertBitmapSourceToBitmap(BitmapSource bitmapSrc) { int width = bitmapSrc.PixelWidth; int height = ...
0
votes
0answers
65 views

Is there a way to change .NET PixelFormats.Rgba128Float default gamma

MSDN says that format Rgba128Float has a gamma of 1.0. Is there a way to change this value?
0
votes
1answer
210 views

PixelFormat deprecated 1.6?

I am using Camera.Parameters.setPixelFormat(PixelFormat.JPEG) in my android 1.6 application. The documentation says this is deprecated, but the constant value is the same as the new ImageFormat... ...
0
votes
1answer
191 views

Cocos2D 0.99.5 CCDirector pixel format?

I'm trying to set the pixel format in my CCDirector but i can't find the method. It seems to me that my version of cocos2d doesn't have that method?? Strange
0
votes
1answer
571 views

OpenGL Pixel Format Attributes (NSOpenGLPixelFormatAttibutes) explanation?

I am not new to OpenGL, but not an expert. Many tutorials teach how to draw, 3D, 2D, projections, orthogonal, etc, but How about setting a the view? (NSOpenGLView in Cocoa, Macs). For example I have ...
0
votes
2answers
875 views

Android PixelFormat per device

analogous to this thread: http://stackoverflow.com/questions/2093594/opengl-extensions-available-on-different-android-devices I would like to collect the different PixelFormats the android devices ...