圖片加水印的多種方式

1.加文字
- (UIImage *)imageWithLogoText:(UIImage *)img text:(NSString *)text1 
{      
    /////注:此為后來(lái)更改,用于顯示中文。zyq,2013-5-8 
    CGSize size = CGSizeMake(200, img.size.height);          //設(shè)置上下文(畫(huà)布)大小 
    UIGraphicsBeginImageContext(size);                       //創(chuàng)建一個(gè)基于位圖的上下文(context),并將其設(shè)置為當(dāng)前上下文 
    CGContextRef contextRef = UIGraphicsGetCurrentContext(); //獲取當(dāng)前上下文 
    CGContextTranslateCTM(contextRef, 0, img.size.height);   //畫(huà)布的高度 
    CGContextScaleCTM(contextRef, 1.0, -1.0);                //畫(huà)布翻轉(zhuǎn) 
    CGContextDrawImage(contextRef, CGRectMake(0, 0, img.size.width, img.size.height), [img CGImage]);  //在上下文種畫(huà)當(dāng)前圖片 
     
    [[UIColor redColor] set];                                //上下文種的文字屬性 
    CGContextTranslateCTM(contextRef, 0, img.size.height); 
    CGContextScaleCTM(contextRef, 1.0, -1.0); 
    UIFont *font = [UIFont boldSystemFontOfSize:16]; 
    [text1 drawInRect:CGRectMake(0, 0, 200, 80) withFont:font];       //此處設(shè)置文字顯示的位置 
    UIImage *targetimg =UIGraphicsGetImageFromCurrentImageContext();  //從當(dāng)前上下文種獲取圖片 
    UIGraphicsEndImageContext();                            //移除棧頂?shù)幕诋?dāng)前位圖的圖形上下文。 
    return targetimg; 
     
     
    //注:此為原來(lái),不能顯示中文。無(wú)用。 
    //get image width and height 
    int w = img.size.width; 
    int h = img.size.height; 
    CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB(); 
    //create a graphic context with CGBitmapContextCreate 
    CGContextRef context = CGBitmapContextCreate(NULL, w, h, 8, 4 * w, colorSpace, kCGImageAlphaPremultipliedFirst); 
    CGContextDrawImage(context, CGRectMake(0, 0, w, h), img.CGImage); 
    CGContextSetRGBFillColor(context, 0.0, 1.0, 1.0, 1); 
    char* text = (char *)[text1 cStringUsingEncoding:NSUnicodeStringEncoding]; 
    CGContextSelectFont(context, "Georgia", 30, kCGEncodingMacRoman); 
    CGContextSetTextDrawingMode(context, kCGTextFill); 
    CGContextSetRGBFillColor(context, 255, 0, 0, 1); 
    CGContextShowTextAtPoint(context, w/2-strlen(text)*5, h/2, text, strlen(text)); 
    //Create image ref from the context 
    CGImageRef imageMasked = CGBitmapContextCreateImage(context); 
    CGContextRelease(context); 
    CGColorSpaceRelease(colorSpace); 
    return [UIImage imageWithCGImage:imageMasked]; 
     
} 
2.新的添加文字水印的方法
#pragma mark -也是文字水印 
- (UIImage *) imageWithStringWaterMark:(NSString *)markString inRect:(CGRect)rect color:(UIColor *)color font:(UIFont *)font 
{ 
#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 40000 
    if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 4.0) 
    { 
        UIGraphicsBeginImageContextWithOptions([self size], NO, 0.0); // 0.0 for scale means "scale for device's main screen". 
    } 
#else 
    if ([[[UIDevice currentDevice] systemVersion] floatValue] < 4.0) 
    { 
        UIGraphicsBeginImageContext([self size]); 
    } 
#endif 
     
    //原圖 
    [self drawInRect:CGRectMake(0, 0, self.size.width, self.size.height)]; 
     
    //文字顏色 
    [color set]; 
     
    //水印文字 
    [markString drawInRect:rect withFont:font]; 
     
    UIImage *newPic = UIGraphicsGetImageFromCurrentImageContext(); 
    UIGraphicsEndImageContext(); 
     
    return newPic; 
} 
3.還是添加文字水印方法二
#pragma mark -還是文字水印 
- (UIImage *) imageWithStringWaterMark:(NSString *)markString atPoint:(CGPoint)point color:(UIColor *)color font:(UIFont *)font 
{ 
#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 40000 
    if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 4.0) 
    { 
        UIGraphicsBeginImageContextWithOptions([self size], NO, 0.0); // 0.0 for scale means "scale for device's main screen". 
    } 
#else 
    if ([[[UIDevice currentDevice] systemVersion] floatValue] < 4.0) 
    { 
        UIGraphicsBeginImageContext([self size]); 
    } 
#endif 
     
    //原圖 
    [self drawInRect:CGRectMake(0, 0, self.size.width, self.size.height)]; 
     
    //文字顏色 
    [color set]; 
     
    //水印文字 
    [markString drawAtPoint:point withFont:font]; 
     
    UIImage *newPic = UIGraphicsGetImageFromCurrentImageContext(); 
    UIGraphicsEndImageContext(); 
     
    return newPic; 
} 
4,加圖片
#pragma mark - 加圖片水印 
-(UIImage *)imageWithLogoImage:(UIImage *)img logo:(UIImage *)logo 
{ 
    //get image width and height 
    int w = img.size.width; 
    int h = img.size.height; 
    int logoWidth = logo.size.width; 
    int logoHeight = logo.size.height; 
    CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB(); 
    //create a graphic context with CGBitmapContextCreate 
    CGContextRef context = CGBitmapContextCreate(NULL, w, h, 8, 4 * w, colorSpace, kCGImageAlphaPremultipliedFirst); 
    CGContextDrawImage(context, CGRectMake(0, 0, w, h), img.CGImage); 
    CGContextDrawImage(context, CGRectMake(w-logoWidth, 0, logoWidth, logoHeight), [logo CGImage]); 
    CGImageRef imageMasked = CGBitmapContextCreateImage(context); 
    CGContextRelease(context); 
    CGColorSpaceRelease(colorSpace); 
    return [UIImage imageWithCGImage:imageMasked]; 
    //  CGContextDrawImage(contextRef, CGRectMake(100, 50, 200, 80), [smallImg CGImage]); 
} 

5.新的添加圖片水印的方法
#pragma mark -還是圖片水印 
- (UIImage *) imageWithWaterMask:(UIImage*)mask inRect:(CGRect)rect 
{ 
#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 40000 
    if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 4.0) 
    { 
        UIGraphicsBeginImageContextWithOptions([self size], NO, 0.0); // 0.0 for scale means "scale for device's main screen". 
    } 
#else 
    if ([[[UIDevice currentDevice] systemVersion] floatValue] < 4.0) 
    { 
        UIGraphicsBeginImageContext([self size]); 
    } 
#endif 
     
    //原圖 
    [self drawInRect:CGRectMake(0, 0, self.size.width, self.size.height)]; 
    //水印圖 
    [mask drawInRect:rect]; 
     
    UIImage *newPic = UIGraphicsGetImageFromCurrentImageContext(); 
    UIGraphicsEndImageContext(); 
     
    return newPic; 
} 
6。加半透明的水印
//加半透明的水印 
-(UIImage *)imageWithTransImage:(UIImage *)useImage addtransparentImage:(UIImage *)transparentimg 
{ 
    UIGraphicsBeginImageContext(useImage.size); 
    [useImage drawInRect:CGRectMake(0, 0, useImage.size.width, useImage.size.height)]; 
    [transparentimg drawInRect:CGRectMake(0, useImage.size.height-transparentimg.size.height, transparentimg.size.width, transparentimg.size.height) blendMode:kCGBlendModeOverlay alpha:0.4f]; 
     
    UIImage *resultingImage = UIGraphicsGetImageFromCurrentImageContext(); 
    UIGraphicsEndImageContext(); 
    return resultingImage; 
}

參考鏈接

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書(shū)系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖,帶你破解...
    沈念sama閱讀 229,517評(píng)論 6 539
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 99,087評(píng)論 3 423
  • 文/潘曉璐 我一進(jìn)店門(mén),熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人,你說(shuō)我怎么就攤上這事。” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 177,521評(píng)論 0 382
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我,道長(zhǎng),這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 63,493評(píng)論 1 316
  • 正文 為了忘掉前任,我火速辦了婚禮,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘。我一直安慰自己,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 72,207評(píng)論 6 410
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著,像睡著了一般。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書(shū)人閱讀 55,603評(píng)論 1 325
  • 那天,我揣著相機(jī)與錄音,去河邊找鬼。 笑死,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播,決...
    沈念sama閱讀 43,624評(píng)論 3 444
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書(shū)人閱讀 42,813評(píng)論 0 289
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 49,364評(píng)論 1 335
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 41,110評(píng)論 3 356
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 43,305評(píng)論 1 371
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情,我是刑警寧澤,帶...
    沈念sama閱讀 38,874評(píng)論 5 362
  • 正文 年R本政府宣布,位于F島的核電站,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 44,532評(píng)論 3 348
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧,春花似錦、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 34,953評(píng)論 0 28
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 36,209評(píng)論 1 291
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 52,033評(píng)論 3 396
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 48,268評(píng)論 2 375

推薦閱讀更多精彩內(nèi)容