Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm selecting a photo from the photo library which is 480* 320 and I want to keep at as back ground to my view which is of same size(480,320). But I'm getting image in 320,480 size . (what happening here is I'm getting one and half image as back ground). can anyone please help me. I'm attaching the screen shot with this post

enter image description here

I want to get 480,320 image directly from the gallery or by taking picture.

Thanks in advance.
Praveena!

-(void)reloadView {

[self.view bringSubviewToFront:myFirstView];
printf("\n this is in loadView method");
CartoonMakerAppDelegate *appDelegate=(CartoonMakerAppDelegate*)[ [UIApplication sharedApplication] delegate];

UIImage *img ;
if(appDelegate.isbgFromDevice == YES)
{
    img = [UIImage imageWithData:appDelegate.imageData];
    appDelegate.bgImage = img;
    appDelegate.isbgFromDevice = NO;
}
else if(appDelegate.isbgFromLibrary == YES)
{
    NSString *bgStr = appDelegate.backgroundImage;
    img = [UIImage imageNamed:bgStr];
    appDelegate.isbgFromLibrary = NO;
    appDelegate.bgImage = img;
}
NSData *bgImgdata = UIImagePNGRepresentation(appDelegate.bgImage);
if([bgImgdata length]!=0)
{

    myFirstView.backgroundColor = [UIColor colorWithPatternImage:appDelegate.bgImage];
    myFirstView.contentMode = UIViewContentModeScaleAspectFit;
}

}

share|improve this question
Have you set contentMode property of your view? – Zapko Jun 10 '11 at 11:01
I set it as default myFirstView.contentMode = UIViewContentModeScaleToFill; – praveena Jun 10 '11 at 11:53
Can you add code where you load image and display it? – Zapko Jun 10 '11 at 11:57

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.