Skip to main content

Self Portrait Poster



SELF PORTRAIT POSTER
ARTIST STATEMENT:
        The piece that I have created is a self portrait poster that represents myself in a propaganda type manner. I used a recent photo of myself to create a simple composition in every way possible except for my face. With my face, I aimed to use color to create the highlights and shadows from the original image through a variety of colorful shapes. In doing this, I aimed to create a visually appealing, colorful composition that still fit the criteria of the poster assignment. 
        My self portrait poster is based on the quote "always dream in color." I decided to create my piece to exemplify the idea of living life to it's greatest extents and to live your best life- in a propaganda style. I used a large amount of different lines and shapes to make my face look as realistic as possible and relate similarly to the original image. I chose to put the quote on one side of the image rather than both sides or centering it to draw more attention to that corner and follow the rule of thirds. I turned the opacity of the words down to ensure that it wasn't too bold, and so that the colored letters could stand out among the gray ones. 
        To conclude, with my overall composition I aim to spread the message of dreaming in color and living your life to the fullest while successfully creating a visually appealing image. My goal was for each color to complement the ones around it, to use lighter pastels for highlights, and darker colors and blacks for shadows. I also attempted to incorporate gradient mesh in my skin to show how my skin tone varies, along with the variation of blondes and gold in my hair. 
        


Comments

  1. When you showed this in class, I instantly thought of Ke$ha during her TikTok days. I wanted to blast her old music and just have fun after seeing this poster. It’s fun and was out of the box as far as ideas go. I love the how creative the mask is over your face, and it really shows off your talent and attention to detail!

    ReplyDelete

Post a Comment

Popular posts from this blog

Three Favorite Photoshop CC Tutorials

3 RELEVANT PHOTOSHOP TUTORIALS 1) Get to know photoshop: https://helpx.adobe.com/photoshop/how-to/ps-basics-fundamentals.html?playlist=/services/playlist.helpx/products:SG_PHOTOSHOP_1_1/learn-path:get-started/set-header:ccx-designer/playlist:ccl-get-started-1/en_us.json&ref=helpx.adobe.com 2) How to use the clone tool: https://helpx.adobe.com/photoshop/how-to/clone-stamp-remove-object.html?playlist=/services/playlist.helpx/products:SG_PHOTOSHOP_1_1/learn-path:key-techniques/playlist:topic/set-header:remove-objects-from-photos/en_us.json&ref=helpx.adobe.com 3) Use layer masks to combine images: https://helpx.adobe.com/photoshop/how-to/combine-image-layer-mask.html?playlist=/services/playlist.helpx/products:SG_PHOTOSHOP_1_1/learn-path:key-techniques/set-header:layer-masking-projects/playlist:topic/en_us.json&ref=helpx.adobe.com

FINAL PORTFOLIO

FMX210 FINAL PORTFOLIO ARTIST STATEMENT:         FMX210 has been a complex yet rewarding class over this past fall semester. This course has taught me the logistics of countless Adobe programs which have bettered my digital media skills. Attached is my portfolio which includes each final project from each program we worked with. My portfolio is themed as red and black with the font Mercurius MT std bold to better the overall composition. Each page is a different project and is done in chronological order from the first unit through the last. I aimed to use InDesign to successfully create a visually appealing portfolio while displaying each of my projects on the consecutive pages, along with a table of contents and an about me page.          My portfolio is crafted in such a way that is visually appealing through the use of color choices, creative fonts, and a simple approach to highlight each project. The theme I chose to create wa...

Second Homework Heart

MY CODE:  <!DOCTYPE HTML> <html> <head> <script> window.onload = function() { var canvas = document.getElementById("myCanvas"); var context = canvas.getContext("2d"); ////////////////////////////////////// start below this line ˇˇˇˇˇˇˇˇˇˇ //Heart //Bezier Curve Variables var Ax = 375; var Ay = 200; var Bx = 375; var By = 500; var control1x = 170; var control1y = -80; var control2x = 100; var control2y = 350; var control3x = 710; var control3y = 350; var control4x = 570; var control4y = -80;         context.beginPath();         context.moveTo(Ax, Ay);         context.bezierCurveTo(control1x, control1y, control2x, control2y, Bx, By);         context.bezierCurveTo(control3x, control3y, control4x, control4y, Ax, Ay);         context.lineWidth = 10;         // line color         contex...