Re: Image from UIView - text jagged...

2016-01-20 Thread Eric E. Dolecki
Thanks so much - things look perfect specifying the scale like that!!! On Wed, Jan 20, 2016 at 2:31 PM Eric Dolecki wrote: > No but I'll look at that in a bit and report back. Thank you!!! > > Sent from Outlook Mobile > > > > > On Wed, Jan 20, 2016 at 11:23 AM -0800, "Rya

Re: Image from UIView - text jagged...

2016-01-20 Thread Eric Dolecki
No but I'll look at that in a bit and report back. Thank you!!! Sent from Outlook Mobile On Wed, Jan 20, 2016 at 11:23 AM -0800, "Ryan Dignard" wrote: Have you tried `UIGraphicsBeginImageContextWithOptions(item.bounds.size, NO, 0.0)` ?  I've never had problems with the implicit sc

Re: Image from UIView - text jagged...

2016-01-20 Thread Ryan Dignard
Have you tried `UIGraphicsBeginImageContextWithOptions(item.bounds.size, NO, 0.0)` ? I've never had problems with the implicit scale provided by the last parameter being `0.0` On Wed, Jan 20, 2016 at 11:17 AM, Eric E. Dolecki wrote: > I am creating images from what I'll call chart cells - so th

Image from UIView - text jagged...

2016-01-20 Thread Eric E. Dolecki
I am creating images from what I'll call chart cells - so that when in a scroll pane scrolling is smooth. Currently it's not. So I use the following method and load each into a UIImageView. Works great except the text in the screens looks jagged. NO scaling is happening. Is there anything beyond ma