有没有一种简单的方法来创建各种文档格式的缩略图,如iOS上的Word,Excel?

时间:2011-11-15 22:11:44

标签: ios

我是否可以使用iOS SDK中的内置机制来呈现任意文档类型的缩略图(UIImage),例如 Word,Excel,PDF,图像格式等等 - 无论iOS能够预览什么? 它只需要创建第一页的缩略图。

我有缩小PDF和图像的代码,但我想,因为iOS可以预览Word和其他内容,也许内置了一些内容?

1 个答案:

答案 0 :(得分:3)

使用该技巧打开office文档文件(docx,xl​​s,pptx),在缩略图栏中显示所有页面,让用户在点击任何缩略图时打开同一视图中的任何页面。

以下是步骤

  • 在UIWebView中打开文件
  • 截取每个页面的屏幕截图并添加可滚动的缩略图视图栏(递归)
  • 在每个缩略图上添加自定义按钮以启用用户互动

导入QuartzCore.framework

Confugure.h文件,如

#import <UIKit/UIKit.h>
#include <QuartzCore/QuartzCore.h>

@interface ViewController : UIViewController<UIWebViewDelegate>
{
    BOOL finished;
    float currentOffset;
    float pointToAddNextThumbnail;
    NSURLRequest *request;
    int totalFileHeight;
    int currentExecutingSnapshot;
}
@property(nonatomic,retain) UIWebView* webView;
@property(nonatomic,retain) UIScrollView* thumbnailScrollView;
@end

.m文件,如

#import "ViewController.h"

@interface ViewController ()

@end
#define pageHeight 360
#define pageWidth 320
#define thumbnailHeight 88
#define thumbnailWidht 70
@implementation ViewController
@synthesize webView,thumbnailScrollView;
#pragma mark
#pragma mark VC Delegates
- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    NSString *path = [[NSBundle mainBundle] pathForResource:@"Reader" ofType:@"doc"];
    NSURL *url = [NSURL fileURLWithPath:path];
    request = [NSURLRequest requestWithURL:url];

    self.webView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, pageWidth, pageHeight)];

    [self.webView  setScalesPageToFit:YES];
    self.webView.delegate = self;
    [self.webView  loadRequest:request];
    [self.view addSubview:self.webView ];

    self.thumbnailScrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, pageHeight+5, pageWidth, thumbnailHeight)];
    [self.thumbnailScrollView setBackgroundColor:[UIColor grayColor]];
    [self.view addSubview:self.thumbnailScrollView];
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

#pragma mark
#pragma mark webView Delegate Methods
- (void)webViewDidFinishLoad:(UIWebView *)webView {
   //  NSLog(@"webViewDidFinishLoad");
    CGSize z =  self.webView.scrollView.contentSize;
    totalFileHeight= z.height;
    NSLog(@"totalFileHeight in pxls %d",totalFileHeight);
    totalFileHeight=totalFileHeight/pageHeight;
    NSLog(@"totalFileHeight in pages %d",totalFileHeight);
    [self takeScreenShotAndReloadWebViewWithPage];
}

#pragma mark
#pragma mark utitlityMehtods
-(void)takeScreenShotAndReloadWebViewWithPage
{
    float widthOfThumbnailForScrollView = (thumbnailWidht+5);
    float widhtOfScrollViewContant = (currentExecutingSnapshot*widthOfThumbnailForScrollView)+widthOfThumbnailForScrollView;
    self.thumbnailScrollView.contentSize = CGSizeMake(widhtOfScrollViewContant,50);
    self.webView.scrollView.contentOffset = CGPointMake(0, currentOffset);
   // [self.webView stringByEvaluatingJavaScriptFromString:[NSString stringWithFormat:@"window.scrollTo(0,%f)",currentOffset]];

    //take Snapshot
    UIGraphicsBeginImageContext(CGSizeMake(320, pageHeight));
    [self.webView.layer renderInContext:UIGraphicsGetCurrentContext()];
    UIImage * img = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

    //set frames of thumbailButton and thumnailImage
    CGRect thumbnailFrame = CGRectMake(pointToAddNextThumbnail, 0, thumbnailWidht, thumbnailHeight);
    UIButton *thumbnailButton = [[UIButton alloc] initWithFrame:thumbnailFrame];
    UIImageView *thumbnailImage =[[UIImageView alloc] initWithFrame:thumbnailFrame];
    [thumbnailImage setImage:img];
    thumbnailButton.tag = currentOffset;
    [thumbnailButton setBackgroundColor:[UIColor clearColor]];
    [thumbnailButton addTarget:self action:@selector(thumnailButtonClicked:) forControlEvents:UIControlEventTouchUpInside];
    [self.thumbnailScrollView addSubview:thumbnailImage];
    [self.thumbnailScrollView addSubview:thumbnailButton];
    [thumbnailImage release];
    [thumbnailButton release];

    pointToAddNextThumbnail = pointToAddNextThumbnail+thumbnailWidht+5;
    currentOffset = currentOffset + pageHeight;

    if (currentExecutingSnapshot < totalFileHeight)
    {
        NSLog(@"currentExecutingSnapshot %d",currentExecutingSnapshot);
        currentExecutingSnapshot ++;
        //[self.webView  loadRequest:request];
        //make a recursive call and take snapshot of all pages
        [self takeScreenShotAndReloadWebViewWithPage];
    }
    else
    {
        [self finishedFethingThumbnails];
    }
}
-(void)finishedFethingThumbnails
{
     self.webView.scrollView.contentOffset = CGPointMake(0, 0);
}

#pragma mark
#pragma mark IBaction
-(IBAction)thumnailButtonClicked:(UIButton*)sender
{
    [[self.webView scrollView] setZoomScale:0 animated:YES];
    [[self.webView scrollView] setContentOffset:CGPointMake(0, sender.tag) animated:YES];
}

#pragma mark
#pragma mark dealloc
-(void)dealloc
{
    [webView release];
    [thumbnailScrollView release];
    [super dealloc];
}

@end

http://abdus.me/downloads/testThumbnail.zip下载示例项目