• 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: Core Graphics: Is it better to up-sample or down-sample images when drawing into a rect?
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Core Graphics: Is it better to up-sample or down-sample images when drawing into a rect?


  • Subject: Re: Core Graphics: Is it better to up-sample or down-sample images when drawing into a rect?
  • From: David Duncan <email@hidden>
  • Date: Wed, 24 Aug 2016 09:50:51 -0700

> On Aug 24, 2016, at 1:23 AM, Jeff Szuhay <email@hidden> wrote:
>
> I’m using a bunch of layers to draw images to, compose them, and then draw into a viewRect
> with
>
> 	CGContextDrawLayerInRect( viewContext, viewRect, myLayer);
>
> Of course, I’m trying to pick the most reasonable size for my layers. I currently use 1024x1024
> but could easily make them 512x512 or 768x768.
>
> So my question is, “Is is more efficient to draw the layer into a smaller viewRect (down-sample)
> or into a larger ViewRect (up-sample)?”
>
> Or does it even matter?

It depends on if quality or performance matters more.

Downsampling is generally more expensive because you have to deal with more data and so you become more easily bandwidth limited, but at the same time if you must resample an image, down sampling generally produces better quality. Upsampling is the opposite of all that.

So if performance matters more than quality, then you probably want to upsample.

>
> I have an internal goal of using less than 1% of the CPU for my 1 second image drawing so it is
> actually quite important for me to know.
>
> TIA
>
> Jeff Szuhay
> a.k.a email@hidden <mailto: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

--
David Duncan


_______________________________________________

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: Core Graphics: Is it better to up-sample or down-sample images when drawing into a rect?
      • From: Jean-Daniel Dupas <email@hidden>
References: 
 >Core Graphics: Is it better to up-sample or down-sample images when drawing into a rect? (From: Jeff Szuhay <email@hidden>)

  • Prev by Date: Core Graphics: Is it better to up-sample or down-sample images when drawing into a rect?
  • Next by Date: Re: Core Graphics: Is it better to up-sample or down-sample images when drawing into a rect?
  • Previous by thread: Core Graphics: Is it better to up-sample or down-sample images when drawing into a rect?
  • Next by thread: Re: Core Graphics: Is it better to up-sample or down-sample images when drawing into a rect?
  • Index(es):
    • Date
    • Thread