• 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: how to cache images
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: how to cache images


  • Subject: Re: how to cache images
  • From: "Gerriet M. Denkmann" <email@hidden>
  • Date: Sun, 09 Jun 2013 07:39:02 +0700

On 9 Jun 2013, at 06:23, Jens Alfke <email@hidden> wrote:

>
> On Jun 8, 2013, at 12:24 PM, Ken Thomases <email@hidden> wrote:
>
>> I haven't done the experiment, but I don't believe this is necessarily true.  NSBitmapImageRep is documented (in the Snow Leopard release notes) as keeping the original image data and not re-encoding or exploding file sizes on being saved.
>
> I did not know this — guess I haven’t been reading the release notes closely enough.

	url = some/picture.gif
	NSDataReadingOptions mask = 0;	//	NSDataReadingUncached
	NSData *data = [ NSData dataWithContentsOfURL: url options: mask error: &outError ];
got 19420 bytes

	NSImage *image = [ [ NSImage alloc ] initWithContentsOfURL: url ];
	BOOL ok = [ NSArchiver archiveRootObject: image toFile: @"/tmp/anImage" ];
got 307559 bytes (NSKeyedArchiver adds another half  kB)

This 16-fold increase of data is - regardless of image quality - not acceptable for my purposes.

So I will use dataWithContentsOfURL (and switch to NSURLConnection once the unresponsiveness of the app becomes annoying).

I still have no idea why my image delegate never gets messaged. But not important anymore.

Kind regards,

Gerriet.


_______________________________________________

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


  • Follow-Ups:
    • Re: how to cache images
      • From: Ken Thomases <email@hidden>
    • Re: how to cache images
      • From: Kyle Sluder <email@hidden>
References: 
 >how to cache images (From: "Gerriet M. Denkmann" <email@hidden>)
 >Re: how to cache images (From: Ken Thomases <email@hidden>)
 >Re: how to cache images (From: Jens Alfke <email@hidden>)
 >Re: how to cache images (From: Ken Thomases <email@hidden>)
 >Re: how to cache images (From: Jens Alfke <email@hidden>)

  • Prev by Date: Re: how to cache images
  • Next by Date: NSPopUpButtonCell - How To Get The Changed Value
  • Previous by thread: Re: how to cache images
  • Next by thread: Re: how to cache images
  • Index(es):
    • Date
    • Thread