Tagged Questions
on Mac OS X, an NSImage object is a high-level class for manipulating image data
10
votes
3answers
4k views
How do I get the icon of the user's Mac?
Using Objective-C and Cocoa, does anyone know how to get the icon for a user's computer (the one that shows under "Devices" and "Network" in Finder)? Not the harddisk icon, the actual one for a user's ...
6
votes
2answers
3k views
How to save a NSImage as a new file
How can I save a NSImage as a new file (png, jpg, ...) in a certain directory?
Thank you for answering my "noobish" question.
6
votes
4answers
2k views
Storing an NSImage in a Core Data Model
What is the correct way to store an NSImage in a Core Data Model? I have assumed adding an Attribute to an Entity and giving it the Type "Binary" should work, but it is not working. I have a table ...
4
votes
2answers
141 views
Trying to turn [NSImage imageNamed:NSImageNameUser] into NSData
If I create an NSImage via something like:
NSImage *icon = [NSImage imageNamed:NSImageNameUser];
it only has one representation, a NSCoreUIImageRep which seems to be a private class.
I'd like to ...
4
votes
2answers
2k views
Repeating background image in an NSView
I am trying to draw a repeating background image in my NSView, I have this till now:
// INIT
- (id)initWithFrame:(NSRect)frame {
if (self = [super initWithFrame:frame]) {
self.backgroundImage = ...
4
votes
1answer
388 views
Creating an image badge with Cocoa/OSX
I need to create an image badge in Cocoa. Basically I need to take two images one smaller then the other and overlay the smaller image over the larger image with a certain offset. Does Cocoa provide ...
3
votes
1answer
68 views
Is it possible to check if an image stored in an NSimage object is grayscale?
Is there a simple method for checking if an NSImage Object contains a grayscale image?
What I am trying to do is count the number of colour and black and white pages within a pdf. As far as I can ...
3
votes
1answer
92 views
NSImage to cv::Mat and vice versa
while working with OpenCV I need to convert a NSImage to an OpenCV multi-channel 2D matrix (cvMat) and vice versa.
What's the best way to do it?
Greets,
Dom
3
votes
0answers
103 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) ...
3
votes
1answer
600 views
NSImage to blob and blob to NSImage (SQLite, NSData)
First of all, I know that I should not use an SQLite database to store image, but I only store favicon of website which are really small.
My problem is that I try to insert those favicon into the ...
3
votes
1answer
309 views
IKImageView choppy?
I have an IKImageView, and I'm putting CGImages (That I make out of NSImages) onto it. However, a normal 200DPI 8.5/11 page takes like 3 seconds to come up, appearing in rectangles about 2inches ...
3
votes
2answers
1k views
How to read PNG image to NSImage
Hi
how can i read PNG image to NSImage. I tried the following way,but when i get the width and size of the image i'm getting some weird value.. if any one can direct me in right path.. highly ...
3
votes
1answer
773 views
How to composite several NSImages into one big image?
I have a collection of objects which describe an image-name, its size and it's X/Y location. The collection is sorted by "layers", so I can composite the images in a sort of painter's algorithm.
...
3
votes
2answers
567 views
How to overlap (superimpose) an image over a file icon using Cocoa?
I have to make a prototype application where I superimpose a small image over the file icons of a given folder.
Let's say I have a folder /MyDocuments/
and there are three files /MyDocuments/Doc1.rtf ...
3
votes
1answer
1k views
How to get NSImage of generic folder icon on OS X 10.5 and 10.6
I'm writing a Cocoa application that displays the contents of an archive file in an NSOutlineView. I provide a custom icon for an NSBrowserCell in the outline column, and it works great, but I ran ...
3
votes
3answers
1k views
How can I load an NSImage representation of the icon for my application?
I have a custom icon file (MyApp.icns) set up for my Cocoa App. How can I access an NSImage representation of the icon from within my application?
Something like the following would be perfect:
...
2
votes
1answer
31 views
Use of AppKit image template constant yields null
The documentation for NSImage lists a lot of standard images that should be readily available using +[NSImage imageNamed:]. They are listed in the NSImage class reference.
I keep getting (null) when ...
2
votes
2answers
139 views
How do I map and store images using Core Data and RestKit?
Using images with Core Data isn't a problem. There are a lot of examples out there on how to do that like: How should I store UIImages within my Core Data database?
I want to know how to use RestKit ...
2
votes
1answer
48 views
NSView with NSImage inside of it — how come NSImage doesn't move with the view which is its parent?
I am writing a simple MacRuby app. I have an NSView that draws an image inside of itself when its drawRect() is called.
Inside that NSView subclass my drawRect() has (among some other lines of code)
...
2
votes
1answer
111 views
Resize CGImageRef without anti-liasing
Im trying to resize 10x10 pixel CGImageRef
with
CGImageRef imageRef = CGImageCreateWithImageInRect(screenShot, CGRectMake(mouseLoc.x-5, screen_height-mouseLoc.y-5, 10, 10));
CGContextRef ...
2
votes
1answer
369 views
How to draw a NSImage like images in NSButtons (with a deepness)?
Is there any way to draw an NSImage like images in NSButtons or other cocoa interface elements?
Here are examples:
Apple uses pdf's with black icons:
2
votes
2answers
131 views
How to stop NSImage lockfocus from Leaking Memory in an NSOperation?
I have a problem with NSImages leaking memory when I draw to them with lock/unlockfocus. The leak goes away when I comment out the LEAKS HERE code below. So I know that is where the leak is happening. ...
2
votes
2answers
107 views
How to write an OS X application that can effect changes (custom cursor, draw an image) even when it is not active?
I previously asked a question about changing the cursor system-wide on OSX. I used NSCursor to change the cursor, but the effects are only as long as the application is active. When another ...
2
votes
1answer
183 views
Getting the displayed image out of an NSImageCell
I have an NSImageCell table column whose valuePath is bound to a path supplied by my object through an NSArrayController.
My NSTableViewDelegate implements the -tableView:heightOfRow: method, in ...
2
votes
2answers
237 views
HUD Buttons using Template Images
I'm building a semi-transparent floating HUD window in my application, which is intended to look like the Quick Look HUD window, specifically using the Enter/Exit full screen image. Cocoa provides the ...
2
votes
1answer
355 views
Converting NSImage to IplImage
I have two problems converting my image (only jpeg-files) from NSImage to IplImage. My first problem is that the converted image has not the same colour intensity like the original one. The converted ...
2
votes
1answer
112 views
How to scale axes independently at runtime on an NSButton
In Interface Builder, you can select how you want a button's image to be scaled, choosing either Axes Independent, Proportionally Down, etc. for the "Scaling" drop-down. How can I access or change ...
2
votes
1answer
200 views
How does NSImage's data retaining behaviour work?
I have a method that constantly loads new image data from the web. Whenever all data for an image has arrived, it is forwarded to a delegate like this:
NSImage *img = [[NSImage alloc] ...
2
votes
2answers
546 views
NSTextView insert image in between text
Is it possible to insert an image (not a background image) into an NSTextView?
Something like:
Hi :) How are you?
and it should display a "smiley" image. I have an NSTextView and an NSImage.
2
votes
1answer
904 views
Display NSImage from NSData
My target is to display an image in a view.
Considering I've an:
IBOutlet NSImageView *image for display my image
NSData *imageData for readig the image file
NSImage *imageView
In imageData is ...
2
votes
1answer
602 views
NSImage Overlay/Mask Gradient like iOS
I'm looking to replicate with Cocoa/Core Graphics the process which seems to occur on iOS when setting an image for a UITabBarItem. When the tab bar item is selected, the image is overlayed with a ...
2
votes
4answers
885 views
Rendering NSView containing some CALayers to an NSImage
I have an NSView that contains an NSScrollView containing a CALayer-backed NSView. I've tried all the usual methods of capturing an NSView into an NSImage (using -dataWithPDFInsideRect, ...
2
votes
1answer
383 views
Methods to render a PDF into a very high resolution NSImage bitmap file
I have to render a PDF into a very high resolution image (say up to and even over 100,000 * 80,000 pixels).
I managed to do that without going out of ram by splitting the render into several slices ...
2
votes
1answer
363 views
How to convert data to JPEG format?
I have this code:
NSImage * strImage = [[NSImage alloc]initWithContentsOfFile:ImageFilePath] ;
NSData *imageData = [strImage TIFFRepresentation];
What I require is to convert imageData into JPEG ...
2
votes
1answer
197 views
NSImage -> PDFPage -> NSImage how do I mantain resolution?
I have a bunch of NSImages that I'm keeping in a PDFDocument, as PDFPages. When I insert the NSImage the first time, the size of the NSImage is in points (72 dpi), and the size of the (only) ...
2
votes
1answer
685 views
Draw shadow under NSImage
Currently I'm drawing an NSImage in a custom NSCell like so:
- (void)drawInteriorWithFrame:(NSRect)theCellFrame inView:(NSView *)theControlView {
// roundedCornerImage creates a new NSImage with ...
2
votes
2answers
370 views
NSImage Crop Crashing
When I try to crop an image using NSImage's imageFromRect, I get an EXEC_BAD_ACCESS crash about 50% of the time. This is something that runs on startup (triggered in an awakeFromNib), so the ...
2
votes
3answers
2k views
Get pixels and colours from NSImage
I have created an NSImage object, and ideally would like to determine how many of each pixels colour it contains. Is this possible?
2
votes
1answer
656 views
How to get image data from a WebView into an NSData object?
I have a Cocoa app that embeds a WebView. The WebView loads html elements including images. I have the textual links for the images (e.g. "http://www.domain.com/path/image.jpg"), but what I want is ...
2
votes
1answer
252 views
NSImage leaking?
So I'm trying to duplicate the SourceView example in my app. I can generate the source list perfectly, fine. I can also expand the containers, and everything is displayed fine. However, when I select ...
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 ...
2
votes
1answer
383 views
Create a padded, centered, scaled NSImage
I'm putting a fixed size icon based on an arbitrarily sized image into an NSOutlineView using an NSImageCell.
NSImageCell will scale the image down nicely, but I can't find a way to add padding ...
1
vote
0answers
20 views
Draw NSImage while space switching?
Currently in my project i've a simple nsimage which is updated via drawRect function.
I need to change the nsimage when the user switches between spaces... so i set my new image and called ...
1
vote
2answers
46 views
How can I store and retrieve NSImage data via a URL to my web service?
I have a simple web service (using a Cake PHP/MySQL back-end) that updates my text-based elements just fine. I'm looking to store an image (which the user would drop on top of an NSImageView) and am ...
1
vote
2answers
70 views
NSImage → NSURL → Custom Object
My application is trying to create custom objects from NSImage objects (coming from the pasteboard) but my current process only takes in image URLs.
I'd like to avoid major changes at this point so ...
1
vote
3answers
205 views
how to change image resolution in objective-c
I need to change the resolution of the existing image in objective-c just like Apple's Preview application Tools->Adjust Size...->Resolution.
Please let me know the possible solutions.
1
vote
1answer
30 views
Is there a counterpart to NSImageNameFolder for files?
NSImage comes with a number of system images. One of them being NSImageNameFolder for a generic folder icon.
What about a generic image for a single file or document? There does not seem to be such a ...
1
vote
1answer
104 views
NSImage mouse events
I have a number of NSImages that I'm rendering in a custom NSView subclass. I'm looking to enlarge theses images as and when the user places their mouse over them and am wondering about the best way ...
1
vote
1answer
116 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 ...