淺析iOS給圖片加浮水印的方法_IOS

來源:互聯網
上載者:User

話不多說,直接上代碼

建立了一個UIImage的類目,在.h中聲明

+ (UIImage *)imageWithimage:(UIImage *)image content:(NSString *)content frame:(CGRect)frame;

.m如下

+ (UIImage *)imageWithimage:(UIImage *)image content:(NSString *)content frame:(CGRect)frame { // 開啟圖形'上下文' UIGraphicsBeginImageContextWithOptions(image.size, NO, 0); // 繪製原生圖片 [image drawAtPoint:CGPointZero]; // 在原生圖上繪製文字 NSString *str = content; // 建立文字屬性字典 NSDictionary *dictionary = @{NSForegroundColorAttributeName: [UIColor blackColor], NSFontAttributeName: [UIFont systemFontOfSize:20]}; // 繪製文字屬性 [str drawInRect:frame withAttributes:dictionary]; // 從當前上下文擷取修改後的圖片 UIImage *imageNew = UIGraphicsGetImageFromCurrentImageContext(); // 結束圖形上下文 UIGraphicsEndImageContext(); return imageNew;}

但是需要注意的是 drawInRect: withAttributes:方法在iOS7.0以後才能使用, 使用該方法的時候需要先看系統是否合適,也可以在方法中加上判斷.

 double device = [[UIDevice currentDevice].systemVersion doubleValue]; if (device >= 7.0f) {  // do something }

之後在VC中匯入標頭檔, 建立一個imageView

 // 調用方法傳入一個image對象,想要添加的文字和文字所在位置 UIImage *image = [UIImage imageWithimage:[UIImage imageNamed:@"3"] content:@"伊利丹" frame:      CGRectMake(20, 500, 100, 100)]; UIImageView *imageView = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, kScreenWidth, kScreenHeight)]; imageView.image = image; [self.view addSubview:imageView];

效果如下圖,簡單的實現了在圖片上加浮水印的功能,如果想要改變文字的大小和顏色可以在方法中修改.或者給方法添加一個文字屬性的字典參數.

以上就是在iOS給圖片加浮水印的全部內容,本文給出了執行個體代碼,相信對大家理解更有協助,希望能對大家開發IOS有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.