跳到主要內容

插畫家│GERMAN GONZALEZ

 
資料整理自Create網站

German早期原本想做攝影,特別喜歡人體肖像,但大學僅提供兩門攝影課程,於是轉向插畫,發現插畫領域讓他能挖掘更多肖像的可能性。

他的創作過程




"Gonzalez himself has no shortage of creative heroes. He’s inspired by movie directors Sofia Coppola, Christopher Nolan, and Wes Anderson—one of several subjects he captured in a series of filmmakers commissioned by Bacánika. Rather than rattle off a list of well-known painters and illustrators he admires, he cites contemporaries including James Jean, Sachin Teng, and David de las Heras, all of whom have a penchant for warm colors and a painterly approach that wanders the territory between anime and photorealism."

有趣單字



1. ......where his illustrations of Little Red Riding Hood and Edgar Allen Poe quickly garnered the attention of art directors.
garner n.穀倉  v.囊括 儲存

2. has no shortage of 不缺

3. rattle off 嘎嘎作響   rattle霸王鞭

4. have a penchant for  喜好 嗜好

5. wanders the territory between

6. anime 動漫

留言

這個網誌中的熱門文章

workshop list

  小孩最開始說的那幾句話 小孩商品的紙盒回收製作 小孩商品回收製作  奶瓶  各種紙箱與透明紙

項目2-2應用

使用條件判斷和迴圈的應用 結合條件判斷和迴圈,可以執行更複雜的邏輯。以下是一個示例: python Copy code # 找出列表中的偶數並列印 numbers = [ 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 10 ] for num in numbers: if num % 2 == 0 : print (num) 在這個例子中,我們使用 for 迴圈遍歷列表中的數字,並使用條件判斷找出偶數。 函數的進階應用 函數可以有預設參數值和返回多個值。以下是一個例子: python Copy code # 函數帶有預設參數值 def greet ( name, greeting= "Hello" ): print (greeting + ", " + name + "!" ) # 調用函數 greet( "Alice" ) greet( "Bob" , "Good morning" ) 在這個例子中, greet 函數有一個預設的問候語,當然你也可以提供自己的問候語。 列表生成式 使用列表生成式可以簡潔地創建列表。以下是一個例子: python Copy code # 使用列表生成式創建平方數列表 squares = [x** 2 for x in range ( 1 , 6 )] print (squares) 在這個例子中,我們使用列表生成式創建了包含1到5的數字平方的列表。 字典的進階應用 字典可以進行遍歷並取得鍵值對。以下是一個例子: python Copy code # 遍歷字典並列印鍵和值 person = { "名字" : "小明" , "年齡" : 25 , "城市" : "台北" } for key, value in person.items(): print (key + ": " + str (value)) 在這個例子中,我們使用 items 方法遍歷字典中的鍵值對並進行列印。 類別和物件 Pyt...

edm設計要點

*不使用div排版,請使用table來編排 *<img>要設定正確的width和height *「alt」屬性要設定 *不使用css seletor,使用inline-css *email的css要個別寫在tag行內 *圖片與文字重疊的兩個方法 1.方法一:把圖片設為background-image,有些閱讀器不能正常顯示<table>標簽的background-image 2.方法二:使用z-index與position: absolute,但是position可能會跑掉(因瀏覽器不同),不要用absolute,使用static或float較好。 ***圖片中間有空白(俗稱破圖)  使用display:block去除白線。  位在表格的兩張圖片中有空白:將表格歸零,  在<table>中使用 cellpadding="0" cellspacing="0" border=“0"來去除表格的「預設寬度」,  並使用float:left來去除位於不同表格「連續圖片」的空白。 可直接寫style style="display:block;             border:0;             outline:0;             float:left;             vertical-align:0" ***  版面寬度 一般網頁的寬度大約為960px,為方便手機平板閱讀,寬度以550px~600px為準。 *** 字體大小 17~22px *** 按鈕大小 apple說44*44px android說48*48px gmail中寄...