FROM : David Remahl
DATE : Sat Nov 23 04:06:11 2002
Here you need the full path to the image.
NSString *path = [[NSBundle mainBundle] pathForResource:@"Image"
ofType:@"tiff"];
imageRep = [[NSImageRep imageRepWithContentsOfFile:path] retain];
/ rgds David
On Saturday, November 23, 2002, at 03:58 AM, Seth Willits wrote:
> I must be missing something. I'm attempting to open an image from the
> resources directory in my bundle and then draw it:
>
> ImageRep is an instance variable.
>
> imageRep = [NSImageRep imageRepWithContentsOfFile:@"Image.tiff"];
> [imageRep retain]
>
> The file is there in the final product with no typos, but ImageRep is
> always
> nil.
>
> And then later:
>
> - (void)drawRect:(NSRect)rect
> {
> ...
> [imageRep drawAtPoint:point];
> }
>
> Seth Willits
_______________________________________________
cocoa-dev mailing list | <email_removed>
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.
DATE : Sat Nov 23 04:06:11 2002
Here you need the full path to the image.
NSString *path = [[NSBundle mainBundle] pathForResource:@"Image"
ofType:@"tiff"];
imageRep = [[NSImageRep imageRepWithContentsOfFile:path] retain];
/ rgds David
On Saturday, November 23, 2002, at 03:58 AM, Seth Willits wrote:
> I must be missing something. I'm attempting to open an image from the
> resources directory in my bundle and then draw it:
>
> ImageRep is an instance variable.
>
> imageRep = [NSImageRep imageRepWithContentsOfFile:@"Image.tiff"];
> [imageRep retain]
>
> The file is there in the final product with no typos, but ImageRep is
> always
> nil.
>
> And then later:
>
> - (void)drawRect:(NSRect)rect
> {
> ...
> [imageRep drawAtPoint:point];
> }
>
> Seth Willits
_______________________________________________
cocoa-dev mailing list | <email_removed>
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.
| Related mails | Author | Date |
|---|---|---|
| Seth Willits | Nov 23, 03:58 | |
| David Remahl | Nov 23, 04:06 | |
| Seth Willits | Nov 23, 16:37 | |
| Scott Anguish | Nov 24, 09:13 | |
| Seth Willits | Nov 24, 19:25 |






Cocoa mail archive

