Tagged Questions
The nsimagerep tag has no wiki summary.
2
votes
1answer
91 views
32 bits big endian floating point data to CGImage
I am trying to write an application which read FITS image. FITS stand for Flexible Image Transport format and it is a format wish is primarily used to store scientific data related to astrophysics, ...
2
votes
2answers
580 views
NSImageRep confusion
I have an NSImage that came from a PDF, so it has one representation, of type NSPDFImageRep. I do an image setDataRetained:YES; to make sure that it remains a NSPDFImageRep. Later, I want to change ...
2
votes
2answers
99 views
How to avoid a NSCachedImageRep
I'm working with an NSImage which comes from a PDF. When I initially create the image, it has only one NSImageRep and that is NSPDFImageRep. This is good. I can work with it. I can find out how many ...
1
vote
2answers
842 views
NSImage size is wrong
I think i'm missing something really basic here. If I do this with a legal URL/path which I know exists:
NSImage* img = [[NSImage alloc] initWithContentsOfFile:[[selectedItem url] path]];
...
1
vote
2answers
319 views
Is there a best way to size an NSImage to a maximum filesize?
Here's what I've got so far:
NSBitmapImageRep *imageRep = [NSBitmapImageRep imageRepWithData:
[file.image TIFFRepresentation]];
// Resize image to 200x200
CGFloat maxSize = 200.0;
NSSize ...
0
votes
1answer
58 views
How to Implement Custom Image representation for NSImage
I am developing an application to draw and process specific image format not currently supported by the NSimage class. In this specific format, the images are in form of a 1D binary table preceded by ...
0
votes
0answers
98 views
NSImage flipped upside down
I'm trying to create function that returns me a raw data of the image in RGBA format (array of four byte groups, rgba). I'm having problems with flipped images. Some images are later rendered well, ...
0
votes
1answer
370 views
Create and write paletted RGBA PNG using NSImage
I'm trying to create paletted PNG image (8-bit per pixel) that uses RGBA palette (32-bit per palette entry) using Cocoa framework*.
I've tried few combinations for [NSBitmapImageRep ...
0
votes
1answer
182 views
NSImage and related APIs leaking memory
Following is the code snippet that I have:
// Make Auto release pool
NSAutoreleasePool * autoReleasePool = [[NSAutoreleasePool alloc] init];
try
{
if (mCapture)
{
// Get the image ...
0
votes
1answer
991 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 ...
0
votes
2answers
296 views
NSBitmapImageRep and multi-page TIFFs
I've got a program that can open TIFF documents and display them. I'm using setFlipped:YES.
If I'm just dealing with single page image files, I can do
[image setFlipped: YES];
and that, in ...