on Mac OS X, an NSImage object is a high-level class for manipulating image data

learn more… | top users | synonyms

0
votes
1answer
13 views

How to save a image from web using its own filename

i'm having a array of web urls redirecting images. Is it possible to download images directly and save it using its default file name.
1
vote
2answers
36 views

Image download was not in proper order

NSOperationQueue *queue = [NSOperationQueue new]; NSInvocationOperation *operation; for(int k=0; k<[imageArray count]; k++) { operation = [[NSInvocationOperation alloc] initWithTarget:self ...
0
votes
1answer
30 views

Collection View not displaying properly

i'm having a collection view , segment control and a arraycontroller. i used setFilterPredicate: method to filter the data based on the segment pressed and displayed in collectionView. what my ...
0
votes
1answer
31 views

How update image from URL in OS X app?

i have some problem. So i have code which update song name and picture from php. Song name work and also updated but picture not work, in php file all work but in my project - no. How make update ...
1
vote
0answers
30 views

NSImage Image Size With Multiple Layers

I have a Mac (not iOS) application that allows the user to select one or more images with NSOpenPanel. What I have trouble with is how to get correct dimensions for multiple-layered images. If an ...
0
votes
1answer
34 views

How do I implement dragging of an NSImage inside of an NSView?

I've never dealt much with NSViews so I am at a loss on this. I have a custom class that contains an NSImage ivar. I also have a subclass of NSView that contains an array of instances of my custom ...
0
votes
0answers
55 views

Any hints or ideas on how to print multiple images in ViewController?

I want to ask if there is a way to print multiple images in a ViewController because I have tried several methods and it only seems to print once. I have created a for loop to loop 3 times in my ...
-3
votes
0answers
47 views

How to implement a map (matrix) in cocoa (Mac OSX) [closed]

How to implement a map (matrix) by NSImage in cocoa (Mac OSX) just like this O---O---O---O | | | | O---O---O---O | | | | O---O---O---O | | | | O---O---O---O
0
votes
0answers
31 views

“EXC_BAD_ACCESS” while trying to animate a image with an NSArray and NSTimer

I am back again with my pigs (means cochon in French)! :) I would like to created a at simple animated image with an NSTimer and I can't find example of it not with the iphone SDK. after 3 second, ...
1
vote
3answers
119 views

Rotate, Change Colors and Get RGB565 data from NSImage

I have found myself in a situation where I have several NSImage objects that I need to rotate by 90 degrees, change the colour of pixels that are one colour to another colour and then get the RGB565 ...
1
vote
2answers
47 views

Cocoa memory management when using initWithBitmapDataPlanes to create NSImage

I am creating an NSImage from an unsigned char * of 24bit RGB data like so: NSBitmapImageRep *bitmap = [[NSBitmapImageRep alloc] initWithBitmapDataPlanes:(unsigned char ...
1
vote
1answer
42 views

Trying to get color value of pixel

I'm trying to read the color value of a pixel in a tif image but I can't fihure out the correct way to do it. I'm using OSX and my approach is as follows: NSImage *picture = [[NSImage alloc] ...
0
votes
1answer
90 views

Scale Up NSImage and Save

I would like to scale up an image that's 64px to make it 512px (Even if it's blurry or pixelized) I'm using this to get the image from my NSImageView and save it: NSData *customimageData = ...
0
votes
0answers
26 views

NSTableView always has some intercell spacing when drawing

I have an NSTableView, but I am not displaying it directly in a window. I instead show an NSImageView in front of it, and draw all or part of the table view (actually, part of its containing scroll ...
0
votes
0answers
21 views

Correct size for desktop image using NSScreen size

I'm trying to make a simple app that covers the desktop icons with a subclassed NSWindow. The background of the window is set to the same image as the desktop image. This creates the allusion that the ...
2
votes
1answer
100 views

Retina display problems when working with images

I have met problems when working on retina display. NSImage size is correct, but if I create NSBitmapImageRep from it and write it to file I get image witch's size is twice as big as original image. ...
0
votes
1answer
64 views

How to compress and scale down an NSImage?

This is my compress code NSBitmapImageRep* tmpRep = [[_image representations] objectAtIndex:0]; [tmpRep setPixelsWide:512]; [tmpRep setPixelsHigh:512]; [tmpRep setSize:NSMakeSize(SmallThumbnailWidth, ...
0
votes
1answer
53 views

NSImage standard artwork & icon NSImageNameStatusAvailable

When I add an NSImageCell to a xib it has an image property where I can see some of the NSImage standard art work. From the doc it looks like quite a few, but in the drop down, I get less. ...
2
votes
2answers
126 views

NSImage + NSBitmapImageRep = Converting RAW image file from one format to another

I am trying to write a prototype to prove that RAW conversion from one format to another is possible. I have to convert a Nikon's raw file which is of .NEF format to Canon's .CR2 format. With help of ...
0
votes
0answers
74 views

Too many pixels in my NSBitmapImageRep when drawing into an NSImage

I am trying to create an NSImage that is exactly 200 x 300 pixels large from the contents of another NSImage. I'm not just scaling, but taking it from a chunk of a much larger image. The resulting ...
0
votes
1answer
47 views

Extract NSImage from PDFPage with varying resolution

What is the best way to get an NSImage from a PDFPage object, with variable resolution? I have a PDF file displayed in a PDFView and I need to capture the current page and store as an NSImage. ...
1
vote
1answer
93 views

I cannot create NSImage with imageNamed but initWithContentsOfFile

With the following code: NSString *imageString = [[NSBundle mainBundle] pathForResource:@"logo64x64" ofType:@"png"]; NSImage *testImage = [[NSImage imageNamed:@"logo64X64"] retain]; NSImage ...
0
votes
0answers
12 views

Get access from code to a “Content Filter” set in IB on a NSImage

I have used for the first time a "Content Filter" on a NSImage NSImage (in IB). I have set the "False Color" filter. My problem is now, I want to get access to this filter from the code (I want to ...
0
votes
2answers
29 views

Instance variable NSImage is not drawn

He, since I use my images as instance variables (cause I need to draw them all very often) in this way (in my NSView): @implementation BeatView - (id)initWithFrame:(NSRect)frame{ self = [super ...
1
vote
2answers
189 views

Cocoa : Image Well - Custom NSImageView class doesn't show image?

I added an imagewell via interface builder, set an image, then ran and all is well. (the image is displayed). However, if I change the custom class to one of my own (NSImageView subclass), the image ...
1
vote
2answers
97 views

Clear before drawInRect for Mac App

I want to animate the width of my button in my Mac App and at the same time have a background image and a foreground image. For that I'm using @kgn's awesome library BBlock ...
1
vote
1answer
107 views

Image resizing on retina device

I'm developing an app for Mac OS X. I'm trying to resize any NSImage into a specific size like 200x300. It is working fine for Non-retina Mac. But For Retina Mac, it is resizing the image as 400x600 ...
1
vote
0answers
85 views

CALayer NSImage contents not choosing correct representation

I am setting NSImages to the contents of several CALayers. All of these images have 4 reps, 1x, 2x, 5x and 10x. 3 of these images scale seemingly fine when I set the contentsScale when my view changes ...
0
votes
0answers
43 views

OS X equivalent to resizableImage

Is there an equivalent to the iOS methods -[UIImage resizableImageWithCapInsets:] and -[UIImage resizableImageWithCapInsets:resizingMode:] for NSImage on MacOS X? I've looked at NSImage docs and ...
0
votes
1answer
42 views

NSImage from Texture Atlas

I want to build a LevelEditor and would need the sprites (their images) stored in a Texture Atlas of cocos2d in a NSTableView. Any idea how one could approach that?
0
votes
2answers
156 views

How to Resize NSImage using stretching in cocoa

I am developing photography app. In that i need to create frame for NSImage i have done using drawing like this NSImage *fg_img = [[NSImage alloc]initWithData:[NSData ...
0
votes
2answers
124 views

check the same images after flip cards (objective-C)

I have 4 cards and I can flip my cards, I want to check if my images is the same show 2 images and if it's not back the flip, would you please give me some tutorial or sample code; Thanks in ...
2
votes
1answer
115 views

How to tell if NSData is actually an NSImage?

I'm sending data back and forth through the Bonjour protocol. All the packets are sent as NSData and usually converted to strings; but what if I need to receive an image? This is the process that will ...
1
vote
1answer
124 views

Convert NSImage from CMYK to RGB

After a full day of searching, I've found a few similar answers, but nothing that seems to work for me. I've built an app to be used in OSX which fetches a list of images from a user inputted ...
5
votes
1answer
401 views

How to get suitable CGImage from combined TIFF for display scale

I have two PNGs in a Mac project. Normal and @2x. Xcode combines these into a single TIFF with the @2x being at index 0 and the @1x at index 1. What is the suggested approach to get the appropriate ...
0
votes
2answers
62 views

Change NSImage Origin

Is it possible to change the origin of an NSImage? If so how would I go about doing this. I have coordinates in regular cartesian system some of them with negative values and I am trying to draw them ...
1
vote
2answers
200 views

Sublassing NSImageRep to support new file format (pgm)

Hi everyone! It is my first post here. I am quite new in objective-c so maybe my question is not so hard but It is a problem for me. I've searched the web and didn't find any useful hints for ...
2
votes
1answer
371 views

Cocoa, objective-c how to resize a png image?

I'm new to cocoa and what I'm trying to do is resize a NSImage, but it looks like I'm doing something wrong as my image's don't get resized. I had a look at the other questions and this approach ...
0
votes
2answers
65 views

cocoa nsimage does not get saved

I'm new to cocoa and programming, sorry if this is something basic. I'm using ARC. I have an NSImageView component, which is controlled by DropZone class. I drag & drop an image into it, but once ...
1
vote
1answer
53 views

Stream from BundleResource

I have a MonoMac project and I need a Stream reference to an item I have set as a BundleResource (an image). I have an image in my project whose build action I've set to BundleResource (I'm assuming ...
1
vote
1answer
200 views

Creating an ICNS Programmatically : “Unsupported Image Size”

I'm trying to create an ICNS (including a 1024x1024 image) programmatically. Currently I'm creating an NSImage, then I create CGImageRef objects with the appropriate resolution, finally I'm adding ...
0
votes
1answer
64 views

Image at URL failing to populate NSData

I have an image at a URL which is failing to load into an NSData. When I paste the image URL into a Chrome incognito window, it displays successfully. However, the following fails: photoData = ...
0
votes
1answer
80 views

Retrieving NSImage from CoreData - Mac OS X

I'm trying to add images into core data and load it when needed. I'm currently adding the NSImage to the core data as follows: Thumbnail *testEntity = (Thumbnail *)[NSEntityDescription ...
1
vote
0answers
193 views

Merging 2 images in Cocoa on Retina Macs

I'm trying to merge two images to a background image. This works fine on non-Retina Macs. The resulting image has the size of my original background image. But on a MacBook Pro Retina the resulting ...
0
votes
1answer
137 views

convert between NSImage and Leptonica Pix

I'm working on a Cocoa OS X program to clean up scanned pages and would like to use Leptonica's library to do the heavy lifting. I've found some info in this post, this one, and this one. I can ...
0
votes
1answer
49 views

Is this an appropriate way of implementing an array of NSImages?

I have a series of images that I want to make use of in an app. What I wanted to do is store them in an NSArray for easy identification within the drawRect: function. I have created a .plist file, ...
2
votes
2answers
221 views

Cocoa draw text on NSImage

I have an NSSegmentedControl(todayButton) that contains an image. I'm trying to draw some text onto the image using the following: NSImage *img = [todayButton imageForSegment:0] [img lockFocus] ...
0
votes
1answer
206 views

Blur Partial Part of Image

I am new for iOS Development . After googling I found that, it is easy to blur whole image but it is difficult to blur specific part of image such like rectangular or circular. So please help me how ...
3
votes
3answers
481 views

How to make a perfect crop (without changing the quality) in Objective-c/Cocoa (OSX)

Is there any way in Objective-c/cocoa (OSX) to crop an image without changing the quality of the image? I am very near to a solution, but there are still some differences that I can detect in the ...
1
vote
0answers
52 views

-[NSBitmapImageRep representationUsingType:properties:] export specific BMP configuration?

I'm trying to figure out how to export BMP data from an NSBitmapImageRep, but it doesn't appear there are any properties I can add to specify how the BMP should be created. Specifically, I wanted to ...

1 2 3 4 5 7