I\'m trying to do a quite simple thing: write an URL inside a PDF file that can be actually clicked by the user.
I know for sure that using libharu it can be done. W
Here is converted code for Swift 5
let context = UIGraphicsGetCurrentContext()
let ctm = context?.ctm
// Translate the origin to the bottom left.
// Notice that 842 is the size of the PDF page.
ctm?.translatedBy(x: 0.0, y: 842)
// Flip the handedness of the coordinate system back to right handed.
ctm?.scaledBy(x: 1.0, y: -1.0)
var xformRect: CGRect? = nil
if let ctm = ctm {
xformRect = frameRect.applying(ctm)
}
let url = URL(string: text)
if let url = url {
UIGraphicsSetPDFContextURLForRect(url, xformRect ?? CGRect.zero)
}
context?.saveGState()
let attributesDict =[
.foregroundColor: UIColor.blue,
.underlineStyle: NSUnderlineStyle.single.rawValue
]
let attString = NSMutableAttributedString(string: url?.absoluteString ?? "", attributes: attributesDict as? [NSAttributedString.Key : Any])
attString?.draw(in: frameRect)
context?.restoreGState()
Ok I managed to figure out why it wasn't working.
Core Graphics context are "reversed" in the sense of having the origin at the bottom left of the page while UIKit has the origin in the top-left corner.
This is the method I came up with:
- (void) drawTextLink:(NSString *) text inFrame:(CGRect) frameRect {
CGContextRef context = UIGraphicsGetCurrentContext();
CGAffineTransform ctm = CGContextGetCTM(context);
// Translate the origin to the bottom left.
// Notice that 842 is the size of the PDF page.
CGAffineTransformTranslate(ctm, 0.0, 842);
// Flip the handedness of the coordinate system back to right handed.
CGAffineTransformScale(ctm, 1.0, -1.0);
// Convert the update rectangle to the new coordiante system.
CGRect xformRect = CGRectApplyAffineTransform(frameRect, ctm);
NSURL *url = [NSURL URLWithString:text];
UIGraphicsSetPDFContextURLForRect( url, xformRect );
CGContextSaveGState(context);
NSDictionary *attributesDict;
NSMutableAttributedString *attString;
NSNumber *underline = [NSNumber numberWithInt:NSUnderlineStyleSingle];
attributesDict = @{NSUnderlineStyleAttributeName : underline, NSForegroundColorAttributeName : [UIColor blueColor]};
attString = [[NSMutableAttributedString alloc] initWithString:url.absoluteString attributes:attributesDict];
[attString drawInRect:frameRect];
CGContextRestoreGState(context);
}
What this method does is:
UIGraphicsSetPDFContextURLForRect
will mark it as clickablexformRect
) as clickable using the aforementioned method