|
@@ -113,7 +113,7 @@
|
|
|
CGImageSourceRef imageSource = CGImageSourceCreateWithData((CFDataRef)data, NULL);
|
|
|
imageRef = CGImageSourceCreateImageAtIndex(imageSource, 0, NULL);
|
|
|
|
|
|
- CGContextDrawImage(context, CGRectMake(0, pageSize.height-20, 72, 20), imageRef);
|
|
|
+ CGContextDrawImage(context, CGRectMake(0, pageSize.height-32, 120, 32), imageRef);
|
|
|
}
|
|
|
[page transformContext:context forBox:kPDFDisplayBoxCropBox];
|
|
|
} else {
|
|
@@ -744,7 +744,7 @@ static KMPDFEditAppendWindow *windowController = nil;
|
|
|
// [self.PDFDocument insertPageObject:page atIndex:i];
|
|
|
|
|
|
PDFAnnotationLink *linkA = [[PDFAnnotationLink alloc] init];
|
|
|
- linkA.bounds = NSMakeRect(0, pageBounds.size.height-20, 72, 20);
|
|
|
+ linkA.bounds = NSMakeRect(0, pageBounds.size.height-32, 120, 32);
|
|
|
linkA.URL = [NSURL URLWithString:@"https://www.pdfreaderpro.com/store"];
|
|
|
[page addAnnotation:linkA];
|
|
|
|