vote up 2 vote down star
1

I'd like to add a Web View to my app at 60% scale (like seen in Safari in the browse other windows view):

alt text

Notice how the content looks nice and Aliased!

If I try and add the same Web view to my app:

NSURL *url = [NSURL URLWithString:@"http://www.google.co.uk?q=hello"];
NSURLRequest *request = [NSURLRequest requestWithURL:url];

UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 320, 400)];
webView.delegate=self;
[webView loadRequest:request];	
[self.view addSubview:webView];

Using the following transformation:

[webView setTransform:CGAffineTransformMakeScale(0.6, 0.6)];

alt text

..the scale is really bad quality and there appears to be no anti-aliasing.

Does anyone know why this is happening or have a suggestion on how it could be fixed?

Thanks! Nick.

flag

2 Answers

vote up 1 vote down check

Hiya,

I figured out a solution!

Take a snapshot of the webview, add it to a UIImageView and resize that insted!

UIGraphicsBeginImageContext(webView.bounds.size);
[webView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

UIImageView * imageView = [[UIImageView alloc] initWithFrame:CGRectMake(webView.bounds.x, webView.bounds.y, webView.frame.size.width, webView.size.height)];
imageView.image = viewImage;
[self addSubview:imageView];
[imageView release];

webView.hidden = YES;

Seems to work fine!

One point to note.. if you want to do this as soon as the WebView has loaded, you need to defer the action by some period (I chose a 10th of a second!)

Like so:

-(void)deferLoading
{
    webViewHasActuallyLoaded = YES;
    [self setNeedsLayout];
}

- (void)webViewDidFinishLoad:(UIWebView *)webView {
    [NSTimer scheduledTimerWithTimeInterval: 1.0/10.0 target:self selector:@selector(deferLoading) userInfo:nil repeats:NO];
}

Cheers for suggestions abovee! Nick.

link|flag
vote up 0 vote down

Why not just make the web view smaller? It should render the content in high quality at the smaller size.

If you need to animate the change in size, you can set the minificationFilter on the web view's layer to get reasonable quality:

[[webView layer] setMinificationFilter:kCAFilterLinear];
link|flag
Changing the frame of the web view only makes the window into the content smaller, it does not automatically scale it. I also tried changing the minificationFilter (which defaults to linear), and applying a CATransform to the layer, but that produces the same jaggy results he sees. – Brad Larson Feb 23 at 22:28
Yes - I have the same result. Perhaps I can convert the webview to a bit-map and scale it that way?! Only one way to find out. Will post the code if this works. – nickcartwright Feb 25 at 18:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.