Tagged Questions
The nsbitmapimagerep tag has no wiki summary.
5
votes
5answers
740 views
How do I create an 8-bit PNG with transparency from an NSBitmapImageRep?
I have a 32-bit NSBitmapImageRep which has an alpha channel with essentially 1-bit values (the pixels are either on or off).
I want to save this bitmap to an 8-bit PNG file with transparency. If I ...
3
votes
0answers
102 views
How to convert 256 colors palettized RGBA image data to NSImage
I'm a newbie developer and I need your help with something that is probably trivial for you.
I have an image data in this pixel format: 256 colors palettized RGBA. It comes from FFmpeg (PIX_FMT_PAL8) ...
2
votes
1answer
349 views
Why is bitmapImageRepForCachingDisplayInRect: creating an empty image?
I have a very simple bit of code that is supposed to capture the bitmap of a view. This used to work in Leopard, but seems horribly broken in Snow Leopard.
Here is the code, responding to a button ...
1
vote
2answers
42 views
It's possible a NSBitmapImageRep with 24 bpp and no alpha channel?
I don't understand really well the premultiplied alpha.
I need a NSBitmapImageRep without alpha channel (I don't need a particular bpp).
My problem is that this code give me errors:
NSSize ...
1
vote
1answer
164 views
Using CALayer's renderInContext: method with geometryFlipped
I have a CALayer (containerLayer) that I'm looking to convert to a NSBitmapImageRep before saving the data out as a flat file. containerLayer has its geometryFlipped property set to YES, and this ...
1
vote
2answers
113 views
NSBitmapImageRep to RGB with high efficency
I am working on my first mac osx cocoa app for 10.5+ where I have a CVImageBufferRef (captured using QTKit), I need to transfer this image over TCP Socket to the client app. The client app needs RGB ...
1
vote
1answer
72 views
NSBitmapImageRep generated BMP can't be read on Windows
I have an NSBitmapImageRep that I am creating the following way:
+ (NSBitmapImageRep *)bitmapRepOfImage:(NSURL *)imageURL {
CIImage *anImage = [CIImage imageWithContentsOfURL:imageURL];
...
1
vote
1answer
114 views
Apply a Gamma of 1.8 to an NSImage
I'm trying to convert an NSImage to have a a gamma of 1.8 and I'm not having much luck. I've found some code but nothing that's working. I've got a method that returns an NSBitmapImageRep on an ...
1
vote
2answers
399 views
Translating clicked NSPoint in NSImageView to correct pixel coordinates in the underlying NSBitmapImageRep
Here is what I'm trying to accomplish: I'm working on an open source TI calculator emulator where I'm currently trying to add skin support. The skin image is just an NSImageView with its image set to ...
0
votes
0answers
55 views
CGImageCreateWithImageInRect delivering degraded quality
I am making a tool that will chop up an image into pieces and then convert the data into BGRA (endianized ARGB) raw pixel data. When I don't chop images up, quality is perfect and amazing. But when I ...
0
votes
1answer
94 views
Creating an OpenGL texture with alpha using NSBitmapImageRep
I am loading a PNG using:
theImage = [NSBitmapImageRep imageRepWithContentsOfFile:imagePath];
from which I can successfully create a gl texture and render correctly without any transparency. ...
0
votes
0answers
100 views
Half NSBitmapImageRep Pixel Size?
I have an NSBitmapImageRep. How can I half its pixel size? So when its saved its actual size has changed.
I have this which produces an image half the size in pixels which is just what I want, ...
0
votes
0answers
127 views
Setting a color in a NSBitmapImageRep to white or black
I've got this category method on NSColor:
+ (NSColor*) patternColorWithData:(unsigned char*)bits oneColor:(NSColor*)oneColor zeroColor:(NSColor*)zeroColor
{
NSBitmapImageRep* patternBitmap;
...
0
votes
0answers
203 views
Old Quickdraw Pattern to NSImage to Saved PNG Image
I've got an old Quickdraw Pattern which I need to convert to an NSImage and then save to a PNG Image.
Now, a QD Pattern is merely a 64x64 image made up of 8 bytes. Each pixel is 1 bit - either black ...
0
votes
1answer
332 views
Lossless compression of PNG in memory as NSData?
I currently have an NSData with valid PNG data:
NSData* imageData = [bitmapRep representationUsingType:NSPNGFileType properties:nil];
I've written this data out to a file:
[imageData ...
0
votes
0answers
574 views
Getting into pixel data of NSImage
I'm writing application that operates on black&white images. I'm doing it by passing a NSImage object into my method and then making NSBitmapImageRep from NSImage. All works but quite slow. Here's ...
0
votes
1answer
371 views
Saving NSBitmapImageRep as NSBMPFileType file. Wrong BMP headers and bitmap content
I save a NSBitmapImageRep to a BMP file (Snow Leopard). It seems ok when i open it on macos. But it makes an error on my multimedia device (which can show any BMP file from internet). I cannot figure ...
0
votes
1answer
990 views
How to compress jpeg image with Cocoa?
I have an jpeg image and I want to be able to incrementally compress it using Cocoa/Core Image/Core Graphics. For example, I have A.jpg (3MB), I compress A and get B.jpg (1MB), compress B and get ...
-2
votes
0answers
29 views
Getting raw RGB(A) data from file loaded into bitmap image rep?
I have a function that parses raw RGB(A) data for pixels that match whatever RGB(A) value you specify, and returns the number of them that are present in said data.
Do this:
unsigned char rgb[]
{ ...