blob: fdec0df9fbee4d3bb1ed8bc2c601c1334ff4a22a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#include "common.h"
#include "mupdf/pdf.h"
#import "MuDocRef.h"
@implementation MuDocRef
-(id) initWithFilename:(char *)aFilename;
{
self = [super init];
if (self)
{
dispatch_sync(queue, ^{});
doc = fz_open_document(ctx, aFilename);
if (!doc)
{
self = nil;
}
else
{
pdf_document *idoc = pdf_specifics(doc);
if (idoc) pdf_enable_js(idoc);
interactive = (idoc != NULL);
}
}
return self;
}
-(void) dealloc
{
__block fz_document *block_doc = doc;
dispatch_async(queue, ^{
fz_close_document(block_doc);
});
[super dealloc];
}
@end
|