Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 302535
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T07:06:22+00:00 2026-05-12T07:06:22+00:00

I’m implementing a Photoshop plugin on the Mac, and I’m doing it using Cocoa.

  • 0

I’m implementing a Photoshop plugin on the Mac, and I’m doing it using Cocoa. Doing ok so far, but the next step is to provide a “preview” image, as a part of my plugin window, and I’m stuck. I’m a n00b Obj-C programmer, which isn’t really helping 🙂

So far I’ve got something like this:

int dataSize = gFilterRecord->bigDocumentData->wholeSize32.v *
               gFilterRecord->bigDocumentData->wholeSize32.h *
               gFilterRecord->planes; 

NSData *inData = [[NSData alloc] initWithBytesNoCopy:gFilterRecord->inData length:dataSize freeWhenDone:NO];
NSLog(@"LoadImageFromSDK : Data created");
NSImage *imageTmp = [[NSImage alloc] initWithData:inData];
NSLog(@"LoadImageFromSDK : Image created");

//Save to PNG file as a test of this image creation
[[imageTmp TIFFRepresentation] writeToFile:@"/tmp/imageTmp.tif" atomically:YES];
NSLog(@"LoadImageFromSDK : Wrote image to disk");

At the moment, it crashes horribly on:
09/07/22 10:23:32 AM Adobe Photoshop Elements[46628] *** NSCopyMemoryPages(0x0, 0x245f4000, 2265088) failed

I’m probably calculating the size of inData incorrectly. Help?

Also, is NSImage going to be able to interpret that image data blob correctly? Or should I give it up and just do a pixel-by-pixel mapping into the NSImage?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T07:06:22+00:00Added an answer on May 12, 2026 at 7:06 am

    Ok, that was way more painful to figure out than I had anticipated. Also, kudos to NVidia for posting this PDF which is a better explanation of the Photoshop SDK filter record than the actual SDK docs.

    This code actually reads the inData and produces a usable NSImage (lots of logging just to figure out what it is doing, feel free to remove) in addition to the sample tif file for debugging purposes.

    NSLog(@"Entering LoadImageFromSDK");
    
    unsigned char *bitmapPlanes[4];    
    bitmapPlanes[0] = (unsigned char *) (gFilterRecord->inData);
    
    NSLog(@"Params to create bitmap");
    NSLog(@"pixelsWide = %d", gFilterRecord->bigDocumentData->imageSize32.h );
    NSLog(@"pixelsHigh = %d", gFilterRecord->bigDocumentData->imageSize32.v );
    NSLog(@"bitsPerSample = %d", gFilterRecord->depth );
    NSLog(@"samplesPerPixel = %d", gFilterRecord->planes );
    NSLog(@"hasAlpha = %d", NO );
    NSLog(@"isPlanar = %d", NO );
    NSLog(@"colorSpaceName = %@", mapImageModeToColorSpace(gFilterRecord->imageMode) );
    NSLog(@"bytesPerRow = %d", gFilterRecord->inRowBytes );
    NSLog(@"bitsPerPixel = %d", gFilterRecord->depth*gFilterRecord->planes );    
    
    NSBitmapImageRep *bitmapTmp = [[NSBitmapImageRep alloc] initWithBitmapDataPlanes:bitmapPlanes
                                                                          pixelsWide:gFilterRecord->bigDocumentData->imageSize32.h
                                                                          pixelsHigh:gFilterRecord->bigDocumentData->imageSize32.v
                                                                       bitsPerSample:gFilterRecord->depth
                                                                     samplesPerPixel:gFilterRecord->planes
                                                                            hasAlpha:NO 
                                                                            isPlanar:NO 
                                                                      colorSpaceName:mapImageModeToColorSpace(gFilterRecord->imageMode) 
                                                                         bytesPerRow:gFilterRecord->inRowBytes
                                                                        bitsPerPixel:gFilterRecord->depth*gFilterRecord->planes];
    
    NSLog(@"LoadImageFromSDK : Bitmap created = %@", bitmapTmp);
    
    [[bitmapTmp TIFFRepresentation] writeToFile:@"/Users/someuser/temp/sample.tif" atomically:YES];
    
    
    NSImage *imageTmp = [[NSImage alloc] initWithSize:[bitmapTmp size]];
    [imageTmp addRepresentation:bitmapTmp];
    NSLog(@"LoadImageFromSDK : Image created = %@", imageTmp);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

link Im having trouble converting the html entites into html characters, (&# 8217;) i
Seemingly simple, but I cannot find anything relevant on the web. What is the
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I want to count how many characters a certain string has in PHP, but
I have a French site that I want to parse, but am running into
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
We're building an app, our first using Rails 3, and we're having to build
I'm making a simple page using Google Maps API 3. My first. One marker
I need to clean up various Word 'smart' characters in user input, including but
Does anyone know how can I replace this 2 symbol below from the string

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.