微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

[Cocoa]_[初级]_[在一张图片上添加图片水印和文字水印]

  -(void) doLoadImageData
{
    float width = 400;
    float height = 400;
    NSImage *finalImage = [[NSImage alloc] initWithSize:NSMakeSize(width,height)];
    
    //  obtain images - your sources may vary
    
    NSImage *mainImage = [[NSImage alloc] initWithContentsOfFile:@".../sourceImage.jpg"];
    
    NSImage *overImage = [[NSImage alloc] initWithContentsOfFile: @".../overImage.jpg"];
      
    [finalImage lockFocus];
    CGContextRef myContext = [[NSGraphicsContext currentContext] graphicsPort];
    // draw the base image
    [mainImage drawInRect:NSMakeRect(0,width,height)  fromrect:NSZeroRect operation:NSCompositeSourceOver fraction:1.0 respectFlipped:YES hints:nil];
    
    // draw the overlay image at some offset point
    [overImage drawInRect:NSMakeRect(0,100,50,50)fromrect:NSZeroRect operation:NSCompositeSourceOver fraction:0.5 respectFlipped:YES hints:nil];
    
    [self MyDrawText:myContext];
    
    [finalImage unlockFocus];
   
    NSData *finalData = [finalImage TIFFRepresentation];
    NSBitmapImageRep *imageRep =[NSBitmapImageRep imageRepWithData:finalData];
    NSData *data =[imageRep representationUsingType:NSJPEGFileType properties:nil];
    [data writetoFile:@"/Users/mac-d1/work/waterMark.jpg" atomically:YES];
}

-(void) MyDrawText:(CGContextRef) myContext   // 1
{
    CGContextSelectFont (myContext,"Helvetica-Bold",10,kCGEncodingMacRoman);
    // CGContextSetCharacterSpacing (myContext,0.5); // 4
    CGContextSetTextDrawingMode (myContext,kCGTextFill); // 5
    
    CGContextSetRGBFillColor (myContext,1,0.5); // 6
    //CGContextSetRGBstrokeColor (myContext,0.2); // 7
    CGContextshowtextAtPoint (myContext,20,"www.Amacsoft.com",16); // 10
    
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐