美圖秀秀美化圖片之【智能優化】模塊界面設計

来源:http://www.cnblogs.com/salam/archive/2016/01/02/5094819.html
-Advertisement-
Play Games

美圖秀秀的智能優化界面十分簡單明瞭,它只包含了一張要進行處理的圖片和一個bar,再就是取消操作和保存操作的2個按鈕,先附一張界面圖一、點擊美化圖片首頁【智能優化】,進入具體操作界面FWFunctionViewController *vc = [[FWFunctionViewController .....


  美圖秀秀的智能優化界面十分簡單明瞭,它只包含了一張要進行處理的圖片和一個bar,再就是取消操作和保存操作的2個按鈕,先附一張界面圖

 

一、點擊美化圖片首頁【智能優化】,進入具體操作界面

FWFunctionViewController *vc = [[FWFunctionViewController alloc] initWithImage:self.image type:FWBeautyProcessTypeAutoBeauty];

[self presentViewController:vc animated:YES completion:^{}];

[vc displayAutoBeautyPage];

displayAutoBeautyPage方法用來顯示頁面,它調用了setupImageView和setupBar方法,來裝配具體內容。

setupImageView調整需要處理圖片的顯示位置

    if (self.type == FWBeautyProcessTypeAutoBeauty || self.type == FWBeautyProcessTypeColorList || self.type == FWBeautyProcessTypeEdit)
    {
        //105 = 設備高 - 關閉按鈕高度 - 3段間距:30 - bar高度:55 - 的結果
        self.imageView.frame = CGRectMake(0, 0, WIDTH, HEIGHT - 115);
    }
    self.imageView.contentMode = UIViewContentModeScaleAspectFit;

    [self.view addSubview:self.imageView];

setupBar用來裝配bar的內容和位置

   self.styleBar = [[FWEffectBar alloc] init];
    NSDictionary *autoDict = nil;
    
    if (self.type == FWBeautyProcessTypeAutoBeauty || self.type == FWBeautyProcessTypeColorList)
    {
        self.styleBar.frame = CGRectMake(0,HEIGHT - 105, WIDTH, 55);
        
        if (self.type == FWBeautyProcessTypeAutoBeauty )
            autoDict = [[FWCommonTools getPlistDictionaryForButton] objectForKey:@"AutoBeauty"];
        else
            autoDict = [[FWCommonTools getPlistDictionaryForButton] objectForKey:@"ColorValue"];
        
    }
    else if (self.type == FWBeautyProcessTypeEdit)
    {
        self.styleBar.frame = CGRectMake(100, HEIGHT - 55, 160, 55);
        
        autoDict = [[FWCommonTools getPlistDictionaryForButton] objectForKey:@"Edit"];
        
    }
    
    NSArray *normalImageArr = [autoDict objectForKey:@"normalImages"];
    NSArray *hightlightedImageArr = [autoDict objectForKey:@"HighlightedImages"];
    NSArray *textArr = [autoDict objectForKey:@"Texts"];
    
    NSMutableArray *arr = [[NSMutableArray alloc] initWithCapacity:0];
    for (int i = 0; i < [textArr count]; i++)
    {
        FWEffectBarItem *item = [[FWEffectBarItem alloc] initWithFrame:CGRectZero];
        [item setFinishedSelectedImage:[UIImage imageNamed:[hightlightedImageArr objectAtIndex:i]] withFinishedUnselectedImage:[UIImage imageNamed:[normalImageArr objectAtIndex:i]] ];
        item.title = [textArr objectAtIndex:i];
        [arr addObject:item];
    }
    
    self.styleBar.items = arr;
    
    self.styleBar.effectBardelegate = self;
    [self.styleBar setSelectedItem:[self.styleBar.items objectAtIndex:0]];
    [self.view addSubview:self.styleBar];
    [self effectBar:self.styleBar didSelectItemAtIndex:0];
setupBar

getPlistDictionaryForButton方法用來讀取effectViewInfo.plist文件中內容。effectViewInfo.plist文件包含了一些項目中需要使用到的圖片資源

+ (NSDictionary *)getPlistDictionaryForButton
{
    NSString *plistPath = [[NSBundle mainBundle] pathForResource:@"effectViewInfo" ofType:@"plist"];
    
    return [[NSDictionary alloc] initWithContentsOfFile:plistPath];;
}

 

 關於bar中需要的文本和圖片資源信息都存放在plist文件中,這樣可以節省許多代碼。下麵展示一下plist文件內容

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>speciallyeffect</key>
    <dict>
        <key>Texts</key>
        <array>
            <string>LOMO</string>
            <string>美顏</string>
            <string>格調</string>
            <string>藝術</string>
        </array>
    </dict>
    <key>Edit</key>
    <dict>
        <key>normalImages</key>
        <array>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
        </array>
        <key>HighlightedImages</key>
        <array>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
        </array>
        <key>Texts</key>
        <array>
            <string>裁剪</string>
            <string>旋轉</string>
            <string>銳化</string>
        </array>
    </dict>
    <key>ColorValue</key>
    <dict>
        <key>normalImages</key>
        <array>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
        </array>
        <key>HighlightedImages</key>
        <array>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
        </array>
        <key>Texts</key>
        <array>
            <string>亮度</string>
            <string>對比度</string>
            <string>色溫</string>
            <string>飽和度</string>
            <string>高光</string>
            <string>暗部</string>
            <string>智能補光</string>
        </array>
    </dict>
    <key>MagicBrush</key>
    <dict>
        <key>normalImages</key>
        <array>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
        </array>
        <key>HighlightedImages</key>
        <array>
            <string></string>
        </array>
        <key>Texts</key>
        <array>
            <string>煙花棒</string>
            <string>炫光</string>
            <string>絲帶</string>
            <string>彩虹</string>
            <string>四葉草</string>
            <string>紫光</string>
            <string>綠寶石</string>
            <string>花瓣</string>
            <string>七彩光圈</string>
            <string>愛心</string>
            <string>光暈</string>
            <string>飄雪</string>
            <string>心動</string>
            <string>小星星</string>
            <string>夢幻</string>
            <string>螢火蟲</string>
            <string>熒光筆</string>
            <string>橡皮擦</string>
        </array>
    </dict>
    <key>AutoBeauty</key>
    <dict>
        <key>Texts</key>
        <array>
            <string>原圖</string>
            <string>自動</string>
            <string>美食</string>
            <string>靜物</string>
            <string>風景</string>
            <string>去霧</string>
            <string>人物</string>
        </array>
        <key>HighlightedImages</key>
        <array>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
        </array>
        <key>normalImages</key>
        <array>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
            <string>[email protected]</string>
        </array>
    </dict>
</dict>
</plist>
effectViewInfo.plist

 

 

目前只實現了界面,具體功能還沒有實現。

下載項目

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • .a文件是靜態文件,有多個.o文件組合而成的,在ios項目開發中,當引用第三方庫的時候,時不時的會碰到諸如庫衝突、庫包含了某些禁用的API等問題,而這些庫往往都被打包成了靜態庫文件(即.a文件)來使用。這時就需要我們能夠去對Objectfile進行一些必要的處理調整。如檢索信息,移除衝突的庫等。首先...
  • 首先是今天想測試下應用,沒有問題的話就進行下一步的操作來著,結果遇到這個問題,The connection to adb is down, and a severe error has occured.網上找的一些解決方法:1、在Eclipse中選擇菜單“help->Checkforupdate”,...
  • 問題如圖:一般都是系統未啟動或者未安裝該服務。1.使用sc命令查詢是否存在IpOverUsbSvc服務Cmd執行Sc queryIpOverUsbSvc結果如下,如果可以找到服務,state為closed,可以執行 Sc startIpOverUsbSvc2.若服務不存在,使用SC命令創建服務:sc...
  • <font color=" ff0000" <strong 以下內容為原創,歡迎轉載,轉載請註明來自天天博客:<http://www.cnblogs.com/tiantianbyconan/p/5095426.html </strong </font 使用Dagger 2依賴註入 自定義Scope....
  • Install Android Studiohttp://www.android-studio.org/index.php/download/androidstudio-download-baidudiskConfig Android Studio Proxyhttp://tools.android...
  • 發佈安卓桌面遠程顯示助手Remote Displayer for Android 5.0。
  • 計算級數∑最常用的方法是數學歸納法。例如,我們來證明等差級數命題n∑ k 的值等於1/2*n(n+1)k=1容易看出,當n=1時,這一結論是成立的,因此可以歸納假設對n成立,並證明對n+1成立。我們有n+1 n∑ k = ∑ k + (n+1) = 1/2*n(n+1) + (n+1) = 1/.....
  • iOS9 開始蘋果將HTTP全改為HTTPS了,所以出現網路請求失敗問題,解決辦法:1、改回HTTP: 在info.plist文件中添加一個Key:NSAppTransportSecurity(字典類型),然後給它添加一個Key:NSAllowsArbitraryLoads(Boolean...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...