• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: cutting an image into multiple images
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: cutting an image into multiple images


  • Subject: Re: cutting an image into multiple images
  • From: "douglas a. welton" <email@hidden>
  • Date: Sat, 21 Jun 2008 17:41:54 -0400

Depending on what you are going to do with the "sub-images" once you create them, you might want to consider using a CIImage with the CICrop core image filter.

On Jun 21, 2008, at 9:41 AM, Dharmendra wrote:

Hi,
I am trying to get a user-defined image in specific format (m x nm) and want
to generate an array with count n containing m x m sized images. I have
written the following code, but would like to know if there is better way to
do the same:


m=...;

NSImage *userImage=[[NSImage alloc] initWithContentsOfFile:@"xxx.gif"];

unsigned int n=[userImage size].width/m;

NSMutableArray *images = [NSMutableArray arrayWithCapacity:n];

for(i=0;i<n;i++) {

NSImage *testImage=[[NSImage alloc] initWithSize:NSMakeSize(m,m)];

[testImage lockFocus];

[userImage drawInRect:NSMakeRect(0,0,m,m) fromRect:NSMakeRect(m*i, 0,m,m)
operation:NSCompositeSourceOver fraction:1.0];


[testImage unlockFocus];

[images addObject:testImage];

}
_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden

_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden


References: 
 >cutting an image into multiple images (From: Dharmendra <email@hidden>)

  • Prev by Date: Core Data : BlogDemo tutorial : I must have missed something, but I don't know what...
  • Next by Date: Re: Save animation to QuickTime movie?
  • Previous by thread: cutting an image into multiple images
  • Next by thread: Re: cutting an image into multiple images
  • Index(es):
    • Date
    • Thread