<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>World of Komastar</title>
    <link>https://komastar-dev.tistory.com/</link>
    <description>R&amp;amp;D Center
Gallery</description>
    <language>ko</language>
    <pubDate>Thu, 7 May 2026 07:16:19 +0900</pubDate>
    <generator>TISTORY</generator>
    <ttl>100</ttl>
    <managingEditor>Komastar.Dev</managingEditor>
    <image>
      <title>World of Komastar</title>
      <url>https://tistory1.daumcdn.net/tistory/1652682/attach/9ca0a2f1a51b4e3b96ba9275d364e2bd</url>
      <link>https://komastar-dev.tistory.com</link>
    </image>
    <item>
      <title>[C언어 연습문제] 숫자 피라미드</title>
      <link>https://komastar-dev.tistory.com/42</link>
      <description>&lt;p&gt;Windows 7 64bit / Visual Studio 2013 Express&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre class=&quot;c++ cpp&quot; data-ke-language=&quot;c++&quot;&gt;&lt;code&gt;#include &quot;stdafx.h&quot;

int _tmain(int argc, _TCHAR* argv[])
{
    int height = -1;
    int lineNumber = 0;
    int numberPrint = 1;
    int variation = 1;
    int mid = 0;
    int numberCount = 0;

    printf_s(&quot;Input height : &quot;);
    scanf_s(&quot;%d&quot;, &amp;amp;height);

    for (int heightCount = 1; heightCount &amp;lt; height; heightCount++)
    {
        numberCount = 0;
        numberPrint = heightCount;

        

        for (int spaceCount = 0; spaceCount &amp;lt; height - heightCount; spaceCount++)
        {
            printf_s(&quot; &quot;);
            numberCount++;
        }

        for (int widthCount = 0; widthCount &amp;lt; (heightCount * 2) - 1; widthCount++)
        {
            if (numberPrint &amp;gt;= 10)
            {
                numberPrint = numberPrint % 10;
            }
            else if (numberPrint &amp;lt; 0)
            {
                numberPrint = 9;
            }

            mid = (heightCount * 2) - 1;
            printf_s(&quot;%d&quot;, numberPrint);
            numberCount++;

            if (numberCount &amp;gt;= height)
            {
                variation = -1;
            }
            
            numberPrint += variation;
        }
        printf_s(&quot;\n&quot;);
        variation = 1;
    }

    return 0;
}

&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Output&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;figure class=&quot;imageblock alignCenter&quot; width=&quot;317&quot; height=&quot;294&quot; data-origin-width=&quot;0&quot; data-origin-height=&quot;0&quot;&gt;&lt;span data-url=&quot;https://t1.daumcdn.net/cfile/tistory/25354C335390006F26?original&quot; data-phocus=&quot;https://t1.daumcdn.net/cfile/tistory/25354C335390006F26?original&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/25354C335390006F26&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F25354C335390006F26&quot; width=&quot;317&quot; height=&quot;294&quot; data-origin-width=&quot;0&quot; data-origin-height=&quot;0&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot;/&gt;&lt;/span&gt;&lt;/figure&gt;
&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
      <category>Development/C / C++</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/42</guid>
      <comments>https://komastar-dev.tistory.com/42#entry42comment</comments>
      <pubDate>Mon, 20 Jan 2020 12:22:01 +0900</pubDate>
    </item>
    <item>
      <title>STM32F103 - USART Interrupt 소스</title>
      <link>https://komastar-dev.tistory.com/12</link>
      <description>&lt;div&gt;
&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;stm32f103 / usart / usart interrupt&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;USART Polling 방식은 이전의 포스팅에서 구현을 했으니&lt;/p&gt;
&lt;p&gt;이번엔 Interrupt 방식을 구현 할 차례이다.&lt;/p&gt;
&lt;p&gt;쿼드콥터의 제어 코드가 돌아가는 중에 조종 데이터를 전송 받아야 하니&lt;/p&gt;
&lt;p&gt;Polling 방식은 부적절 하다고 볼 수 있다.&lt;/p&gt;
&lt;p&gt;그래서 Interrupt 방식의 USART 통신을 구현해야 한다.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre class=&quot;c++ cpp&quot; data-ke-language=&quot;c++&quot;&gt;&lt;code&gt;#include &quot;stm32f10x_conf.h&quot;
//stm32f10x_conf.h 파일에는 필요한 각종 헤더를 포함시키는 코드를 삽입
//stm32f10x_gpio.h    ~_usart.h       ~_rcc.h
//misc.h

void USART2_IRQHandler(void);

int putchar(int ch);
u16 tmp;
 
int main()
{   
    SystemInit();
    
    NVIC_InitTypeDef NVIC_InitStructure;
    USART_InitTypeDef USART_InitStructure;
    GPIO_InitTypeDef GPIO_InitStructure;
 
    RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART2, ENABLE);
    RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
 
    GPIO_InitStructure.GPIO_Pin   = GPIO_Pin_2;
    GPIO_InitStructure.GPIO_Speed = GPIO_Speed_10MHz;
    GPIO_InitStructure.GPIO_Mode  = GPIO_Mode_AF_PP;
    GPIO_Init(GPIOA, &amp;amp;GPIO_InitStructure);
 
    /* Configure USARTx_Rx as input floating */
    GPIO_InitStructure.GPIO_Pin  = GPIO_Pin_3;
    GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
    GPIO_Init(GPIOA, &amp;amp;GPIO_InitStructure);

    USART_InitStructure.USART_BaudRate  = 9600;
    USART_InitStructure.USART_WordLength = USART_WordLength_8b;
    USART_InitStructure.USART_StopBits  = USART_StopBits_1;
    USART_InitStructure.USART_Parity  = USART_Parity_No;
    USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
    USART_InitStructure.USART_Mode  = USART_Mode_Rx | USART_Mode_Tx;
    USART_Init(USART2, &amp;amp;USART_InitStructure);
    
    USART_Cmd(USART2, ENABLE);
    
    NVIC_InitStructure.NVIC_IRQChannel = USART2_IRQn;
    NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
    NVIC_Init(&amp;amp;NVIC_InitStructure);
    
    USART_ITConfig(USART2, USART_IT_RXNE, ENABLE);
    
    /* Main While Loop */
    while(1)
    {
        while(!USART_GetFlagStatus(USART2, USART_FLAG_TXE));
        USART_SendData(USART2, 'A');
    }
}
 
void USART2_IRQHandler(void)
{
    if(USART_GetITStatus(USART2, USART_IT_RXNE) != RESET)
    {
        USART_SendData(USART2, 'B');
        USART_ClearITPendingBit(USART2, USART_IT_RXNE);
    }
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;테스트 할 당시 USART2에 연결한 블루투스로 테스트하고 구현한 소스&lt;/p&gt;
&lt;p&gt;USART2 채널을 통해 A라는 글자가 무한히 출력되다가 USART2에 아무 input을 주게 되면 순간 B라는 글자가 출력됨&lt;/p&gt;
&lt;p&gt;USARTx_IRQHandler 안의 구현하는 내용에 따라 다양하게 응용이 가능&lt;/p&gt;
&lt;p&gt;다른 USART채널을 사용하려면 USART2라고 되어 있는 부분을 사용하고 싶은 USART 채널로 고치고 몇 부분만 더 고치면 사용 가능함&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;s&gt;첨부 파일 : 구현한 프로젝트와 개인적으로 사용하려고 편집한 USART 헤더 파일&lt;/s&gt;&lt;/p&gt;
&lt;p&gt;수정 및 배포 가능&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;2014 / 02 / 19 - 20:04 최초 작성&lt;/p&gt;
&lt;p&gt;2014 / 02 / 19 - 20:14 SyntaxHighlighter 적용&lt;/p&gt;
&lt;p&gt;2014 / 02 / 20 - 01:36 태그 정리&lt;/p&gt;</description>
      <category>Development/Embedded</category>
      <category>cortex m3</category>
      <category>Embedded System</category>
      <category>STM32f103</category>
      <category>소스 파일</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/12</guid>
      <comments>https://komastar-dev.tistory.com/12#entry12comment</comments>
      <pubDate>Mon, 20 Jan 2020 12:18:48 +0900</pubDate>
    </item>
    <item>
      <title>포드 v 페라리 후기</title>
      <link>https://komastar-dev.tistory.com/247</link>
      <description>&lt;p&gt;영화 선택 이유&lt;/p&gt;
&lt;p&gt;1. 크리스챤 베일 + 맷 데이먼&lt;/p&gt;
&lt;p&gt;2. 시리즈가 아닌 영화를 보고 싶었음&lt;/p&gt;
&lt;p&gt;3. KT 멤버십 포인트 처리&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;한줄평 - 오랜만에 긴장감 넘치는 &quot;영화&quot;를 봤다.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;영화 소재에 대한 배경지식이 전무한 상태로 영화를 관람했기 때문에&lt;/p&gt;
&lt;p&gt;처음에 살짝 걱정이 있었으나 다행히 기우로 끝났다.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;구성도 좋고 연출도 마음에 들었다.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;열정을 태워본게 언제인지 기억도 안나는 지금의 나에게&lt;/p&gt;
&lt;p&gt;불씨를 던져준 그런 영화&lt;/p&gt;
&lt;p&gt;하지만 이런 불씨는 쉽게 꺼진다는걸 모르는 사람은 없지&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;뭘 해도 의욕이 없고 재밌던게 재미없어졌다면&lt;/p&gt;
&lt;p&gt;당신에게 이 영화를 강력 추천합니다.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;위 사항에 해당되지 않더라도 추천합니다.&lt;/p&gt;</description>
      <category>Review/Movie</category>
      <category>영화후기</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/247</guid>
      <comments>https://komastar-dev.tistory.com/247#entry247comment</comments>
      <pubDate>Fri, 6 Dec 2019 14:59:14 +0900</pubDate>
    </item>
    <item>
      <title>181013 홍진영 직찍 @ 정왕 소나기 축제</title>
      <link>https://komastar-dev.tistory.com/245</link>
      <description>&lt;p&gt;오랜만에 올려보는 홍진영 직찍&lt;/p&gt;
&lt;p&gt;이번 7월은 공개 행사가 없다&lt;/p&gt;
&lt;p&gt;hongjinyoung&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;figure class=&quot;imageblock alignCenter&quot; data-filename=&quot;181013-홍진영-정왕소나기축제-0001-편집.jpg&quot;&gt;&lt;span data-url=&quot;https://blog.kakaocdn.net/dn/ctihxw/btqw0JtYRHs/ngWJGkKD0MCDetrfkHNoRK/img.jpg&quot; data-phocus=&quot;https://blog.kakaocdn.net/dn/ctihxw/btqw0JtYRHs/ngWJGkKD0MCDetrfkHNoRK/img.jpg&quot;&gt;&lt;img src=&quot;https://blog.kakaocdn.net/dn/ctihxw/btqw0JtYRHs/ngWJGkKD0MCDetrfkHNoRK/img.jpg&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;amp;fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2Fctihxw%2Fbtqw0JtYRHs%2FngWJGkKD0MCDetrfkHNoRK%2Fimg.jpg&quot; data-filename=&quot;181013-홍진영-정왕소나기축제-0001-편집.jpg&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot;/&gt;&lt;/span&gt;&lt;/figure&gt;
&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;figure class=&quot;imageblock alignCenter&quot; data-filename=&quot;181013-홍진영-정왕소나기축제-0019-편집.jpg&quot;&gt;&lt;span data-url=&quot;https://blog.kakaocdn.net/dn/c8PyCo/btqw1vPJHga/0TSNnamQwmHgiKrWsWLdF1/img.jpg&quot; data-phocus=&quot;https://blog.kakaocdn.net/dn/c8PyCo/btqw1vPJHga/0TSNnamQwmHgiKrWsWLdF1/img.jpg&quot;&gt;&lt;img src=&quot;https://blog.kakaocdn.net/dn/c8PyCo/btqw1vPJHga/0TSNnamQwmHgiKrWsWLdF1/img.jpg&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;amp;fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2Fc8PyCo%2Fbtqw1vPJHga%2F0TSNnamQwmHgiKrWsWLdF1%2Fimg.jpg&quot; data-filename=&quot;181013-홍진영-정왕소나기축제-0019-편집.jpg&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot;/&gt;&lt;/span&gt;&lt;/figure&gt;
&lt;figure class=&quot;imageblock alignCenter&quot; data-filename=&quot;181013-홍진영-정왕소나기축제-0042.jpg&quot;&gt;&lt;span data-url=&quot;https://blog.kakaocdn.net/dn/2QcvE/btqw3PGfKv4/slekKt4dJNqRxr8f4b1q6K/img.jpg&quot; data-phocus=&quot;https://blog.kakaocdn.net/dn/2QcvE/btqw3PGfKv4/slekKt4dJNqRxr8f4b1q6K/img.jpg&quot;&gt;&lt;img src=&quot;https://blog.kakaocdn.net/dn/2QcvE/btqw3PGfKv4/slekKt4dJNqRxr8f4b1q6K/img.jpg&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;amp;fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2F2QcvE%2Fbtqw3PGfKv4%2FslekKt4dJNqRxr8f4b1q6K%2Fimg.jpg&quot; data-filename=&quot;181013-홍진영-정왕소나기축제-0042.jpg&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot;/&gt;&lt;/span&gt;&lt;/figure&gt;
&lt;figure class=&quot;imageblock alignCenter&quot; data-filename=&quot;181013-홍진영-정왕소나기축제-0195.jpg&quot;&gt;&lt;span data-url=&quot;https://blog.kakaocdn.net/dn/cXa3Tw/btqw2Av4RqK/GPhAwlDiLgIZCOS1JElN4K/img.jpg&quot; data-phocus=&quot;https://blog.kakaocdn.net/dn/cXa3Tw/btqw2Av4RqK/GPhAwlDiLgIZCOS1JElN4K/img.jpg&quot;&gt;&lt;img src=&quot;https://blog.kakaocdn.net/dn/cXa3Tw/btqw2Av4RqK/GPhAwlDiLgIZCOS1JElN4K/img.jpg&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;amp;fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FcXa3Tw%2Fbtqw2Av4RqK%2FGPhAwlDiLgIZCOS1JElN4K%2Fimg.jpg&quot; data-filename=&quot;181013-홍진영-정왕소나기축제-0195.jpg&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot;/&gt;&lt;/span&gt;&lt;/figure&gt;
&lt;figure class=&quot;imageblock alignCenter&quot; data-filename=&quot;181013-홍진영-정왕소나기축제-0283-편집.jpg&quot;&gt;&lt;span data-url=&quot;https://blog.kakaocdn.net/dn/rr0QI/btqw0m6MHWC/w6qH9vJjl1nX2Un7EhAsE0/img.jpg&quot; data-phocus=&quot;https://blog.kakaocdn.net/dn/rr0QI/btqw0m6MHWC/w6qH9vJjl1nX2Un7EhAsE0/img.jpg&quot;&gt;&lt;img src=&quot;https://blog.kakaocdn.net/dn/rr0QI/btqw0m6MHWC/w6qH9vJjl1nX2Un7EhAsE0/img.jpg&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;amp;fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2Frr0QI%2Fbtqw0m6MHWC%2Fw6qH9vJjl1nX2Un7EhAsE0%2Fimg.jpg&quot; data-filename=&quot;181013-홍진영-정왕소나기축제-0283-편집.jpg&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot;/&gt;&lt;/span&gt;&lt;/figure&gt;
&lt;figure class=&quot;imageblock alignCenter&quot; data-filename=&quot;181013-홍진영-정왕소나기축제-0661-편집.jpg&quot;&gt;&lt;span data-url=&quot;https://blog.kakaocdn.net/dn/brzkMW/btqw0m6MH2s/quW1CZzMkYl8zk4dfyv7Ok/img.jpg&quot; data-phocus=&quot;https://blog.kakaocdn.net/dn/brzkMW/btqw0m6MH2s/quW1CZzMkYl8zk4dfyv7Ok/img.jpg&quot;&gt;&lt;img src=&quot;https://blog.kakaocdn.net/dn/brzkMW/btqw0m6MH2s/quW1CZzMkYl8zk4dfyv7Ok/img.jpg&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;amp;fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbrzkMW%2Fbtqw0m6MH2s%2FquW1CZzMkYl8zk4dfyv7Ok%2Fimg.jpg&quot; data-filename=&quot;181013-홍진영-정왕소나기축제-0661-편집.jpg&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot;/&gt;&lt;/span&gt;&lt;/figure&gt;
&lt;figure class=&quot;imageblock alignCenter&quot; data-filename=&quot;181013-홍진영-정왕소나기축제-0707-편집.jpg&quot;&gt;&lt;span data-url=&quot;https://blog.kakaocdn.net/dn/bOIoMJ/btqw4nQgJkD/UkQOzYBLOaChQCnCsSmHLk/img.jpg&quot; data-phocus=&quot;https://blog.kakaocdn.net/dn/bOIoMJ/btqw4nQgJkD/UkQOzYBLOaChQCnCsSmHLk/img.jpg&quot;&gt;&lt;img src=&quot;https://blog.kakaocdn.net/dn/bOIoMJ/btqw4nQgJkD/UkQOzYBLOaChQCnCsSmHLk/img.jpg&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;amp;fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbOIoMJ%2Fbtqw4nQgJkD%2FUkQOzYBLOaChQCnCsSmHLk%2Fimg.jpg&quot; data-filename=&quot;181013-홍진영-정왕소나기축제-0707-편집.jpg&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot;/&gt;&lt;/span&gt;&lt;/figure&gt;
&lt;/p&gt;
&lt;p&gt;Canon EOS 1D X Mark II / 왕덱스투 / 왕덱투 /1dx2&lt;/p&gt;
&lt;p&gt;Canon EF 300mm F/2.8L IS II USM / 300단 / 신형300단 / 300대포 / 신형대포&lt;/p&gt;
&lt;p&gt;Canon Extender 2X III&lt;/p&gt;</description>
      <category>STAR/홍진영</category>
      <category>연예인</category>
      <category>직찍</category>
      <category>홍진영</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/245</guid>
      <comments>https://komastar-dev.tistory.com/245#entry245comment</comments>
      <pubDate>Thu, 25 Jul 2019 21:20:03 +0900</pubDate>
    </item>
    <item>
      <title>RAW 후처리 - 화이트 밸런스</title>
      <link>https://komastar-dev.tistory.com/243</link>
      <description>&lt;p&gt;&lt;span&gt;RAW Image Post Process&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;White Balance&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;color: #000000;&quot;&gt;실험 방법은 다음과 같습니다&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;촬영은 Canon EOS 1D X Mark II + Canon EF 50mm F/1.8 STM으로 하고 3장을 촬영합니다&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;당연히 각 사진은 조리개/셔터속도/감도 동일합니다(1/200s, F/4.0, ISO 640)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;1번 사진은 AWB&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;2번 사진은 색온도 지정 - 9700K&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;3번 사진은 색온도 지정 - 2500K&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;(2500K와 9700K 가 사용된 것은 테스트이기 때문에 극단적인 설정값을 사용했습니다)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;위와 같은 설정으로 촬영하여 촬영시 설정한 화이트 밸런스가 raw 현상시 어떤 영향을 끼치는지 확인할 것입니다&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;삼각대를 가지고 나가지 않아서 완벽히 똑같은 구도가 아니지만 핸드헬드로 최대한 구도를 맞춰 촬영했습니다&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;figure class=&quot;imageblock alignCenter&quot;&gt;&lt;span data-url=&quot;https://blog.kakaocdn.net/dn/lOj7a/btqwGjPeXBS/kPi0XFKJpeG5R86yPxsA6k/img.png&quot; data-phocus=&quot;https://blog.kakaocdn.net/dn/lOj7a/btqwGjPeXBS/kPi0XFKJpeG5R86yPxsA6k/img.png&quot;&gt;&lt;img src=&quot;https://blog.kakaocdn.net/dn/lOj7a/btqwGjPeXBS/kPi0XFKJpeG5R86yPxsA6k/img.png&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;amp;fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FlOj7a%2FbtqwGjPeXBS%2FkPi0XFKJpeG5R86yPxsA6k%2Fimg.png&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot;/&gt;&lt;/span&gt;&lt;/figure&gt;
&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;준비된 사진을 라이트룸에서 불러온 모습입니다&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;좌측부터 AWB / 9700K / 2500K 입니다&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;라이트룸에서 불러왔을때 색온도가 어떻게 잡혀있는지 보여드리기 위해 스크린샷을 사용한 점 양해바랍니다&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;figure class=&quot;imageblock alignCenter&quot;&gt;&lt;span data-url=&quot;https://blog.kakaocdn.net/dn/bgbzCW/btqwGNP6RwC/bUmRqhrj4GE4MBfRYJrIHK/img.png&quot; data-phocus=&quot;https://blog.kakaocdn.net/dn/bgbzCW/btqwGNP6RwC/bUmRqhrj4GE4MBfRYJrIHK/img.png&quot;&gt;&lt;img src=&quot;https://blog.kakaocdn.net/dn/bgbzCW/btqwGNP6RwC/bUmRqhrj4GE4MBfRYJrIHK/img.png&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;amp;fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbgbzCW%2FbtqwGNP6RwC%2FbUmRqhrj4GE4MBfRYJrIHK%2Fimg.png&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot;/&gt;&lt;/span&gt;&lt;/figure&gt;
&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;AWB 화이트 우선으로 촬영한 사진입니다&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;figure class=&quot;imageblock alignCenter&quot;&gt;&lt;span data-url=&quot;https://blog.kakaocdn.net/dn/caLPjK/btqwGOapKDj/oGBZPiV7SRvTUpzmS7qHG1/img.png&quot; data-phocus=&quot;https://blog.kakaocdn.net/dn/caLPjK/btqwGOapKDj/oGBZPiV7SRvTUpzmS7qHG1/img.png&quot;&gt;&lt;img src=&quot;https://blog.kakaocdn.net/dn/caLPjK/btqwGOapKDj/oGBZPiV7SRvTUpzmS7qHG1/img.png&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;amp;fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FcaLPjK%2FbtqwGOapKDj%2FoGBZPiV7SRvTUpzmS7qHG1%2Fimg.png&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot;/&gt;&lt;/span&gt;&lt;/figure&gt;
&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;9700K 사진&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;figure class=&quot;imageblock alignCenter&quot;&gt;&lt;span data-url=&quot;https://blog.kakaocdn.net/dn/DdAHO/btqwD28QWZF/daWR3GfsPcwWfwEltQqiRk/img.png&quot; data-phocus=&quot;https://blog.kakaocdn.net/dn/DdAHO/btqwD28QWZF/daWR3GfsPcwWfwEltQqiRk/img.png&quot;&gt;&lt;img src=&quot;https://blog.kakaocdn.net/dn/DdAHO/btqwD28QWZF/daWR3GfsPcwWfwEltQqiRk/img.png&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;amp;fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FDdAHO%2FbtqwD28QWZF%2FdaWR3GfsPcwWfwEltQqiRk%2Fimg.png&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot;/&gt;&lt;/span&gt;&lt;/figure&gt;
&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;2500K 사진&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;-------------------------------------------------------------&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;샘플은 위에서 확인을 했고 화이트밸런스 보정을 해보도록 하겠습니다&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;각 사진의 화밸을 &quot;일광(5500K)&quot;으로 설정해보겠습니다&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;figure class=&quot;imageblock alignCenter&quot;&gt;&lt;span data-url=&quot;https://blog.kakaocdn.net/dn/bG24PO/btqwGNiiIni/E2RoKiJrU2VL7hbKjlK6Sk/img.png&quot; data-phocus=&quot;https://blog.kakaocdn.net/dn/bG24PO/btqwGNiiIni/E2RoKiJrU2VL7hbKjlK6Sk/img.png&quot;&gt;&lt;img src=&quot;https://blog.kakaocdn.net/dn/bG24PO/btqwGNiiIni/E2RoKiJrU2VL7hbKjlK6Sk/img.png&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;amp;fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbG24PO%2FbtqwGNiiIni%2FE2RoKiJrU2VL7hbKjlK6Sk%2Fimg.png&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot;/&gt;&lt;/span&gt;&lt;/figure&gt;
&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;좌 : 9700K -&amp;gt; 5500K / 우 : AWB -&amp;gt; 5500K&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;figure class=&quot;imageblock alignCenter&quot;&gt;&lt;span data-url=&quot;https://blog.kakaocdn.net/dn/bIb7vQ/btqwFQNlNko/fwyHZkhIWqMJCcAlqKHiFK/img.png&quot; data-phocus=&quot;https://blog.kakaocdn.net/dn/bIb7vQ/btqwFQNlNko/fwyHZkhIWqMJCcAlqKHiFK/img.png&quot;&gt;&lt;img src=&quot;https://blog.kakaocdn.net/dn/bIb7vQ/btqwFQNlNko/fwyHZkhIWqMJCcAlqKHiFK/img.png&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;amp;fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbIb7vQ%2FbtqwFQNlNko%2FfwyHZkhIWqMJCcAlqKHiFK%2Fimg.png&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot;/&gt;&lt;/span&gt;&lt;/figure&gt;
&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;좌 : 2500K -&amp;gt; 5500K / 우 : AWB -&amp;gt; 5500K&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;이번엔 반대로 AWB로 촬영한 사진을 2500K와 9700K로 보정해보겠습니다&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;figure class=&quot;imageblock alignCenter&quot;&gt;&lt;span data-url=&quot;https://blog.kakaocdn.net/dn/bSQKTq/btqwD30UQk4/L8QfGu02cy4gVPxBGmQ0d1/img.png&quot; data-phocus=&quot;https://blog.kakaocdn.net/dn/bSQKTq/btqwD30UQk4/L8QfGu02cy4gVPxBGmQ0d1/img.png&quot;&gt;&lt;img src=&quot;https://blog.kakaocdn.net/dn/bSQKTq/btqwD30UQk4/L8QfGu02cy4gVPxBGmQ0d1/img.png&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;amp;fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbSQKTq%2FbtqwD30UQk4%2FL8QfGu02cy4gVPxBGmQ0d1%2Fimg.png&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot;/&gt;&lt;/span&gt;&lt;/figure&gt;
&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;좌 : 9700K / 우 : AWB -&amp;gt; 9700K&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;figure class=&quot;imageblock alignCenter&quot;&gt;&lt;span data-url=&quot;https://blog.kakaocdn.net/dn/sKDwq/btqwExAGW9o/UNTnGvgbXMAM4sPxgubx8K/img.png&quot; data-phocus=&quot;https://blog.kakaocdn.net/dn/sKDwq/btqwExAGW9o/UNTnGvgbXMAM4sPxgubx8K/img.png&quot;&gt;&lt;img src=&quot;https://blog.kakaocdn.net/dn/sKDwq/btqwExAGW9o/UNTnGvgbXMAM4sPxgubx8K/img.png&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;amp;fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FsKDwq%2FbtqwExAGW9o%2FUNTnGvgbXMAM4sPxgubx8K%2Fimg.png&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot;/&gt;&lt;/span&gt;&lt;/figure&gt;
&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;좌 : 2500K / 우 : AWB -&amp;gt; 2500K&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;마지막으로 2500K로 찍은 사진과 9700K로 찍은 사진을 비교해보겠습니다&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;figure class=&quot;imageblock alignCenter&quot;&gt;&lt;span data-url=&quot;https://blog.kakaocdn.net/dn/1v7qx/btqwHdgIj3p/udk8fy4tyy0o7kVnx0T3E0/img.png&quot; data-phocus=&quot;https://blog.kakaocdn.net/dn/1v7qx/btqwHdgIj3p/udk8fy4tyy0o7kVnx0T3E0/img.png&quot;&gt;&lt;img src=&quot;https://blog.kakaocdn.net/dn/1v7qx/btqwHdgIj3p/udk8fy4tyy0o7kVnx0T3E0/img.png&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;amp;fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2F1v7qx%2FbtqwHdgIj3p%2Fudk8fy4tyy0o7kVnx0T3E0%2Fimg.png&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot;/&gt;&lt;/span&gt;&lt;/figure&gt;
&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;좌 : 2500K / 우 : 9700K -&amp;gt; 2500K&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;figure class=&quot;imageblock alignCenter&quot;&gt;&lt;span data-url=&quot;https://blog.kakaocdn.net/dn/kSjIg/btqwEysRku2/umocdoLGk4DQZBHGQB7WAK/img.png&quot; data-phocus=&quot;https://blog.kakaocdn.net/dn/kSjIg/btqwEysRku2/umocdoLGk4DQZBHGQB7WAK/img.png&quot;&gt;&lt;img src=&quot;https://blog.kakaocdn.net/dn/kSjIg/btqwEysRku2/umocdoLGk4DQZBHGQB7WAK/img.png&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;amp;fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FkSjIg%2FbtqwEysRku2%2FumocdoLGk4DQZBHGQB7WAK%2Fimg.png&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot;/&gt;&lt;/span&gt;&lt;/figure&gt;
&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;좌 : 9700K / 우 : 2500K -&amp;gt; 9700K&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;전 raw 촬영에서 화이트밸런스가 일종의 후처리에 들어간다고 알고있습니다&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;센서가 색 정보를 기록을 하고 기록된 색 정보를 사용자에게 이미지로 표시해줄때&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;화이트밸런스에 따라서 색을 보정하여 보여주는 것이죠&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;그렇다면 촬영 당시 설정된 화이트밸런스는 raw로 촬영된 이미지에 영향을 못 준다는 뜻입니다&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;색정보를 가진 데이터 원본과 화이트밸런스 정보는 별개로 관리가 되니까요&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;사실 별것 아닌 실험입니다 설정값 몇개 바꿔서 찍고 비교하고 보정해서 비교하고 끝이죠&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;이런걸 하게 된 계기는 포럼 활동을 하다가 화이트밸런스가 raw 이미지에 영향을 준다는 댓글을 보고&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;&quot;내가 알고 있는게 잘못된 지식인가?&quot;하는 생각에 직접 테스트를 해본 것입니다&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;결론 : &quot;raw 촬영을 할 경우 화이트밸런스는 이미지에 영향을 주지 못한다.&quot;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;결론 때문에 논란의 소지가 있을까봐 미리 말씀드립니다.&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;&quot;raw 촬영을 할 경우 화이트밸런스를 안맞춰도 된다&quot; 이런 뜻이 아닙니다&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;후보정에서 할 일을 줄이기 위해 노출은 기본이고 화밸도 맞춰놓고 하는게 좋습니다&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000;&quot;&gt;위 내용이 잘못되었거나 수정해야 할 부분이 있다면 댓글로 알려주시면 감사하겠습니다&lt;/span&gt;&lt;/p&gt;</description>
      <category>Development/Photography</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/243</guid>
      <comments>https://komastar-dev.tistory.com/243#entry243comment</comments>
      <pubDate>Wed, 10 Jul 2019 09:06:08 +0900</pubDate>
    </item>
    <item>
      <title>190427 홍진영 @ 관악구민체육대회</title>
      <link>https://komastar-dev.tistory.com/239</link>
      <description>&lt;div style=&quot;text-align:left&quot;&gt;&lt;p&gt;​&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99F7A3425CC53A3C21&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99F7A3425CC53A3C21&quot; width=&quot;900&quot; height=&quot;599&quot; filename=&quot;190428142920.537.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;190427&lt;br&gt;홍진영 직찍&lt;br&gt;@관악구민체육대회&lt;br&gt;Canon EOS 1D X Mark II 1dx2 왕덱스투 왕덱투&lt;br&gt;Canon EF 300mm f/2.8L IS II USM&lt;/div&gt;</description>
      <category>STAR/홍진영</category>
      <category>홍진영</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/239</guid>
      <comments>https://komastar-dev.tistory.com/239#entry239comment</comments>
      <pubDate>Sun, 28 Apr 2019 14:31:36 +0900</pubDate>
    </item>
    <item>
      <title>180908 홍진영 직찍 @ 스타필드 하남 도드람 팬싸인회 #4</title>
      <link>https://komastar-dev.tistory.com/238</link>
      <description>&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241); text-align: center; clear: none; float: none;&quot;&gt;홍진영 직찍&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241); text-align: center; clear: none; float: none;&quot;&gt;@ 스타필드 하남&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241); text-align: center; clear: none; float: none;&quot;&gt;도드람 팬싸인회 팬사인회 #4&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99FDD8355BB0DCD511&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99FDD8355BB0DCD511&quot; width=&quot;900&quot; height=&quot;600&quot; filename=&quot;180908 도드람 팬사인회-1645.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;background-color: rgb(241, 241, 241); font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px;&quot;&gt;Canon EOS 1D X Mark II / 1dx2 / 왕덱스투 / 왕덱투&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;Canon EF 300mm F/2.8L IS II USM / 300대포 / 300신형대포 / 300단 / 신형300대포 / 300f2.8&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>STAR/홍진영</category>
      <category>홍진영</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/238</guid>
      <comments>https://komastar-dev.tistory.com/238#entry238comment</comments>
      <pubDate>Sun, 30 Sep 2018 23:25:49 +0900</pubDate>
    </item>
    <item>
      <title>180916 홍진영 직찍 @ 안양 시민축제 #2</title>
      <link>https://komastar-dev.tistory.com/237</link>
      <description>&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;홍진영 직찍 #2&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;@ 안양 시민축제 평촌 중앙공원&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;Photo by Komastar&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/992C24505BA1B0382F&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F992C24505BA1B0382F&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;DX2_1665.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99450B505BA1B0392E&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99450B505BA1B0392E&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;DX2_1811.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99EAEC505BA1B03923&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99EAEC505BA1B03923&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;DX2_1829-편집.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/9930A0505BA1B03A1F&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F9930A0505BA1B03A1F&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;DX2_2068.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99EA1A505BA1B03B33&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99EA1A505BA1B03B33&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;DX2_2107.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/993521505BA1B03C2F&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F993521505BA1B03C2F&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;DX2_2181.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99EAC3505BA1B03C33&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99EAC3505BA1B03C33&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;DX2_2541.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;&lt;span style=&quot;box-sizing: border-box;&quot;&gt;Canon EOS 1D X Mark II / 1dx2 / 왕덱스투 / 왕덱투&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;Canon EF 300mm F/2.8L IS II USM / 300대포 / 300신형대포 / 300단 / 신형300대포 / 300f2.8&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;Canon Extender EF 2x III&lt;/p&gt;</description>
      <category>STAR/홍진영</category>
      <category>홍진영</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/237</guid>
      <comments>https://komastar-dev.tistory.com/237#entry237comment</comments>
      <pubDate>Wed, 19 Sep 2018 11:12:20 +0900</pubDate>
    </item>
    <item>
      <title>180916 홍진영 직찍 @ 안양 시민축제 #1</title>
      <link>https://komastar-dev.tistory.com/236</link>
      <description>&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;홍진영 직찍&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;@ 안양 시민축제 평촌 중앙공원&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;Photo by Komastar&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/990315485BA0C8F334&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F990315485BA0C8F334&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;DX2_0923.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99F3A2485BA0C8F336&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99F3A2485BA0C8F336&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;DX2_1095.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99F926485BA0C8F41A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99F926485BA0C8F41A&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;DX2_1147.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99D7DB485BA0C8F403&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99D7DB485BA0C8F403&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;DX2_1195.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/991B19485BA0C8F517&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F991B19485BA0C8F517&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;DX2_1364.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/9980EC485BA0C8F60D&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F9980EC485BA0C8F60D&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;DX2_1472.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99984F485BA0C8F60B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99984F485BA0C8F60B&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;DX2_1598.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;&lt;span style=&quot;box-sizing: border-box;&quot;&gt;Canon EOS 1D X Mark II / 1dx2 / 왕덱스투 / 왕덱투&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;Canon EF 300mm F/2.8L IS II USM / 300대포 / 300신형대포 / 300단 / 신형300대포 / 300f2.8&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>STAR/홍진영</category>
      <category>홍진영</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/236</guid>
      <comments>https://komastar-dev.tistory.com/236#entry236comment</comments>
      <pubDate>Tue, 18 Sep 2018 18:45:57 +0900</pubDate>
    </item>
    <item>
      <title>180908 홍진영 직찍 @ 스타필드 하남 도드람 팬싸인회 #3</title>
      <link>https://komastar-dev.tistory.com/235</link>
      <description>&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241); text-align: center; clear: none; float: none;&quot;&gt;홍진영 직찍&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241); text-align: center; clear: none; float: none;&quot;&gt;@ 스타필드 하남&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241); text-align: center; clear: none; float: none;&quot;&gt;도드람 팬싸인회 팬사인회&lt;/p&gt;&lt;p&gt;&lt;br style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99E80A3C5B99D00E2C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99E80A3C5B99D00E2C&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;180908 도드람 팬사인회-1326.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;background-color: rgb(241, 241, 241); font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px;&quot;&gt;Canon EOS 1D X Mark II / 1dx2 / 왕덱스투 / 왕덱투&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;Canon EF 300mm F/2.8L IS II USM / 300대포 / 300신형대포 / 300단 / 신형300대포 / 300f2.8&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>STAR/홍진영</category>
      <category>홍진영</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/235</guid>
      <comments>https://komastar-dev.tistory.com/235#entry235comment</comments>
      <pubDate>Thu, 13 Sep 2018 11:49:06 +0900</pubDate>
    </item>
    <item>
      <title>180908 홍진영 직찍 @ 스타필드 하남 도드람 팬싸인회 #2</title>
      <link>https://komastar-dev.tistory.com/234</link>
      <description>&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241); text-align: center; clear: none; float: none;&quot;&gt;홍진영 직찍&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241); text-align: center; clear: none; float: none;&quot;&gt;@ 스타필드 하남&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241); text-align: center; clear: none; float: none;&quot;&gt;도드람 팬싸인회 팬사인회&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/993319425B97D0D21F&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F993319425B97D0D21F&quot; width=&quot;900&quot; height=&quot;600&quot; filename=&quot;180908 도드람 팬사인회-0667.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Canon EOS 1D X Mark II / 1dx2 / 왕덱스투 / 왕덱투&lt;/p&gt;&lt;p&gt;Canon EF 300mm F/2.8L IS II USM / 300대포 / 300신형대포 / 300단 / 신형300대포 / 300f2.8&lt;/p&gt;</description>
      <category>STAR/홍진영</category>
      <category>홍진영</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/234</guid>
      <comments>https://komastar-dev.tistory.com/234#entry234comment</comments>
      <pubDate>Tue, 11 Sep 2018 23:28:27 +0900</pubDate>
    </item>
    <item>
      <title>180908 홍진영 직찍 @ 스타필드 하남 도드람 팬싸인회</title>
      <link>https://komastar-dev.tistory.com/233</link>
      <description>&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;홍진영 직찍&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;@ 스타필드 하남&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;도드람 팬싸인회 팬사인회&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/996C24475B95361C12&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F996C24475B95361C12&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;180908 도드람 팬사인회-0352.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>STAR/홍진영</category>
      <category>홍진영</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/233</guid>
      <comments>https://komastar-dev.tistory.com/233#entry233comment</comments>
      <pubDate>Mon, 10 Sep 2018 00:03:47 +0900</pubDate>
    </item>
    <item>
      <title>Unity에서 JSON 사용하기 ( unity for json )</title>
      <link>https://komastar-dev.tistory.com/232</link>
      <description>&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;span style=&quot;font-size: 14pt;&quot;&gt;유니티 엔진에서 json 사용하기.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99A1F14C5B46D6630A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99A1F14C5B46D6630A&quot; width=&quot;900&quot; height=&quot;506&quot; filename=&quot;1.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;우선 유니티를 실행.&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/9959654C5B46D66325&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F9959654C5B46D66325&quot; width=&quot;900&quot; height=&quot;506&quot; filename=&quot;2.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;Asset Store를 열고&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/993E8B4C5B46D66429&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F993E8B4C5B46D66429&quot; width=&quot;900&quot; height=&quot;506&quot; filename=&quot;3.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;검색어로 json을 입력하여 검색&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99151A4E5B46D6EF31&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99151A4E5B46D6EF31&quot; width=&quot;900&quot; height=&quot;506&quot; filename=&quot;4.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;JSON .NET for Unity 를 찾아서 클릭&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/9927A64C5B46D66616&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F9927A64C5B46D66616&quot; width=&quot;900&quot; height=&quot;506&quot; filename=&quot;5.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;에셋을 다운로드 하고&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/993DAF4C5B46D66628&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F993DAF4C5B46D66628&quot; width=&quot;900&quot; height=&quot;506&quot; filename=&quot;6.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;불러오기를 눌러서 프로젝트에 추가&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 251px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/9959634C5B46D66727&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F9959634C5B46D66727&quot; width=&quot;251&quot; height=&quot;511&quot; filename=&quot;7.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;프로젝트에 추가가 완료되면&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;JsonDotNet이라는 폴더가 생성되어 있을 것이다.&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 251px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/993CB14C5B46D66729&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F993CB14C5B46D66729&quot; width=&quot;251&quot; height=&quot;511&quot; filename=&quot;8.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify;&quot;&gt;간단한 스크립트를 만들어서 테스트 해보면 된다.&lt;/p&gt;
&lt;p style=&quot;text-align: justify;&quot;&gt;스크린샷은 여기까지만 사용하고 아래에 나올 코드를 참고하도록 하자.&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify;&quot;&gt;해당 json 라이브러리에 대한 자세한 설명은 newtonsoft 공식 홈페이지를 참조 할 것.&lt;/p&gt;
&lt;p style=&quot;text-align: justify;&quot;&gt;간단한 설명은 에셋을 받으면서 생긴 &quot;JsonDotNet&quot; 폴더 안에 Documentation 폴더에 pdf 파일 참조.&lt;/p&gt;
&lt;p style=&quot;text-align: justify;&quot;&gt;주로 사용할 법한 내용만 요약하는게 이 글의 목적이다.&lt;/p&gt;
&lt;p style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;
using System.IO;
using System.Collections.Generic;

using UnityEngine;

using Newtonsoft.Json;
using Newtonsoft.Json.Linq;

public class JsonSaveLoad : MonoBehaviour
{
    public void Save()
    {
        //  key-value 사용
        JObject savedata = new JObject();       //  JObject 인스턴스 생성
        savedata[&quot;key-name&quot;] = &quot;value-data&quot;;    //  key-value 삽입
        savedata[&quot;anyname&quot;] = 1f;               //  int, float, string
        savedata[&quot;is-save&quot;] = true;             //  bool 등 다양한 자료형 사용 가능

        //  json에서 배열 사용하기
        JArray arraydata = new JArray();        //  JArray 인스턴스 생성
        for (int i = 0; i &amp;lt; 5; i++)
        {
            //  랜덤한 값을 추가한다.
            //  C++에서 사용하는 vector의 push_back과 같다고 보면 된다.
            arraydata.Add(Random.Range(0.0f, 10.0f));
        }
        savedata[&quot;arraydata&quot;] = arraydata;      //  위에서 만든 JArray를 대입.

        //  다른 방법으로 JArray 사용하기
        savedata[&quot;newarr&quot;] = new JArray();      //  새로운 key에 value로 JArray 할당.
        for (int i = 0; i &amp;lt; 5; i++)
        {
            ((JArray)savedata[&quot;newarr&quot;]).Add(Random.Range(0, 50));  //  JArray 변수를 만들어서 축약 가능
        }

        //  json 형식을 value로 사용하기
        savedata[&quot;parent&quot;] = new JObject();     //  key를 지정하고 value에 new JObject()를 대입.
        savedata[&quot;parent&quot;][&quot;child1&quot;] = 123;
        savedata[&quot;parent&quot;][&quot;child2&quot;] = 456;
        
        //  class를 json으로 변환하기
        SaveData s = new SaveData();    //  인스턴스화 시키고 적당히 데이터를 입력.
        s.id = 0;
        s.namelist.Add(&quot;komastar&quot;);
        s.namelist.Add(&quot;kintaro&quot;);
        savedata[&quot;class-savedata&quot;] = JToken.FromObject(s);  //  파싱.
        
        //  파일로 저장
        string savestring = JsonConvert.SerializeObject(savedata, Formatting.Indented);     //  JObject를 Serialize하여 json string 생성
        File.WriteAllText(Application.persistentDataPath + &quot;/savedata.json&quot;, savestring);   //  생성된 string을 파일에 쓴다
    }

    public void Load()
    {
        //  불러오기는 저장의 역순
        string loadstring = File.ReadAllText(Application.persistentDataPath + &quot;/savedata.json&quot;);    //  string을 읽음
        JObject loaddata = JObject.Parse(loadstring);   //  JObject 파싱

        //  key 값으로 데이터 접근하여 적절히 사용
        Debug.Log(&quot;key-value 개수 : &quot; + loaddata.Count);

        Debug.Log(&quot;----------------------------&quot;);
        
        Debug.Log(loaddata[&quot;class-savedata&quot;]);

        Debug.Log(&quot;----------------------------&quot;);

        JArray loadarray = (JArray)loaddata[&quot;arraydata&quot;];
        for (int i = 0; i &amp;lt; loadarray.Count; i++)
        {
            Debug.Log(loadarray[i]);
        }

        Debug.Log(&quot;----------------------------&quot;);

        foreach (var item in loaddata[&quot;newarr&quot;])
        {
            Debug.Log(item);
        }

        Debug.Log(&quot;----------------------------&quot;);

        Debug.Log(loaddata[&quot;newarr&quot;]);
    }
}

public class SaveData
{
    //  변수 이름이 key값으로 사용된다.
    public int id;

    [JsonProperty(&quot;name-list&quot;)]     //  프로퍼티 이름을 지정하면 변수 이름 대신 key값으로 사용된다.
    public List&lt;string&gt; namelist;   //  &quot;namelist&quot; : {} 대신 &quot;name-list&quot; : {} 으로 사용됨.

    public SaveData()
    {
        id = 0;
        namelist = new List&lt;string&gt;();
    }
}

/*
{
    &quot;key-name&quot;: &quot;value-data&quot;,
    &quot;anyname&quot;: 1.0,
    &quot;is-save&quot;: true,
    &quot;arraydata&quot;: [
        3.138103,
        6.43384361,
        0.0607228279,
        5.9034543,
        6.343808,
        0.208146572,
        6.17789,
        8.661151,
        9.782631,
        4.389159
    ],
    &quot;newarr&quot;: [
        0,
        29,
        0,
        34,
        26
    ],
    &quot;parent&quot;: {
        &quot;child1&quot;: 123,
        &quot;child2&quot;: 456
    },
    &quot;class-savedata&quot;: {
        &quot;id&quot;: 0,
        &quot;name-list&quot;: [
            &quot;komastar&quot;,
            &quot;kintaro&quot;
        ]
    }
}
*/
&lt;/string&gt;&lt;/string&gt;&lt;/code&gt;
&lt;/pre&gt;</description>
      <category>Development/Unity3D</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/232</guid>
      <comments>https://komastar-dev.tistory.com/232#entry232comment</comments>
      <pubDate>Thu, 12 Jul 2018 14:15:23 +0900</pubDate>
    </item>
    <item>
      <title>앤트맨과 와스프 2018 후기 (쿠키는 2개)</title>
      <link>https://komastar-dev.tistory.com/231</link>
      <description>&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99EA193C5B3C47501A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99EA193C5B3C47501A&quot; width=&quot;900&quot; height=&quot;1272&quot; filename=&quot;앤크맨과와스프2018.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;처음 써보는 영화 후기&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;2018. 7. 4. 앤트맨과 와스프 2018 영화 관람.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;글쓴이는 마블 영화와 에이전트 오브 실드 정도를 보는 덕찌끄래기임을 먼저 밝힙니다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;영화가 시작되고 초반 10분 이상을 자막만 보면서 귀를 기울였다. 밝은 분위기의 도입부라서 긴장감과 몰입도가 부족해서 그런지&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;번역을 안한 부분 혹은 잘 번역한 것 같은데 더 좋은 번역은 없었나? 하는 생각이 머리를 가득 메웠다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;조금씩 내용이 진행되면서 자연스럽게 몰입을 하게 되었고 어느 순간 자막에 신경 쓰던 나의&amp;nbsp;긴장감은 해소&amp;nbsp;되었다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&quot;어벤져스 : 인피니티 워 2018&quot;의 &quot;어머니&quot; 때문에 영화 초반을 즐기지 못한게 아쉽지만 떨쳐내고 즐겼으면 되는 것이기에 난 내 성격을 탓한다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;일단 내용 자체만 봤을때 매우 앤트맨 그 자체에 치중했다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;스크린X를 염두한 영화라는게&amp;nbsp;확실하게 느껴지는 장면이 많다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;2D로 봐도 문제 없겠지 하는 생각에 2D로 봤지만 보고나서 스크린X로 볼걸 하고 조금 아쉽게 느껴진다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;마블 영화만 본 내 입장에선 &quot;어벤져스&quot;와 연결 고리는 눈에 띄지 않았다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;그리고 솔직히 매우 재밌어서 강력 추천! 할 영화는 아니다. &quot;앤트맨 2015&quot;를 봤다면 배경 설명을 해주고 약간의 메시업을 해주는 영화 같다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;두번째 시리즈가 이정도로 나왔고 차기작이 나와서 깔끔하게 3부작 마무리를 했으면 한다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;쿠키 영상은 총 2개.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;개인적으로 쿠키2개 보는데 7천원 정도 써도 전혀 아깝지 않다고 생각한다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;적당히 쓰고 보니 너무 횡설수설.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;일단 여기서 마무리.&lt;/p&gt;</description>
      <category>Review/Movie</category>
      <category>마블</category>
      <category>앤트맨</category>
      <category>앤트맨과와스프</category>
      <category>영화</category>
      <category>후기</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/231</guid>
      <comments>https://komastar-dev.tistory.com/231#entry231comment</comments>
      <pubDate>Wed, 4 Jul 2018 14:33:45 +0900</pubDate>
    </item>
    <item>
      <title>161004 홍진영 직찍 @ 광운대 축제 #5</title>
      <link>https://komastar-dev.tistory.com/230</link>
      <description>&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;Photo by Komastar&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;2016. 10. 04&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;광운대 축제 #5&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;홍진영 갓데리 밧데리 홍블리 hongjinyoung hongvely&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;고화질 hq hd 직찍&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99B01F395B39D79833&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99B01F395B39D79833&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;5D4_1053.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/998996395B39D79A35&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F998996395B39D79A35&quot; width=&quot;900&quot; height=&quot;1349&quot; filename=&quot;5D4_1055.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99DA7B395B39D79C17&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99DA7B395B39D79C17&quot; width=&quot;900&quot; height=&quot;1349&quot; filename=&quot;5D4_1151.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99E41D395B39D79D2D&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99E41D395B39D79D2D&quot; width=&quot;900&quot; height=&quot;1349&quot; filename=&quot;5D4_1152.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/9968E9395B39D79E0C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F9968E9395B39D79E0C&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;5D4_1153.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/991F5E395B39D79F27&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F991F5E395B39D79F27&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;5D4_1154.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99B512395B39D7A004&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99B512395B39D7A004&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;5D4_1159.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>STAR/홍진영</category>
      <category>홍진영</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/230</guid>
      <comments>https://komastar-dev.tistory.com/230#entry230comment</comments>
      <pubDate>Mon, 2 Jul 2018 16:44:03 +0900</pubDate>
    </item>
    <item>
      <title>161004 홍진영 직찍 @ 광운대 축제 #4</title>
      <link>https://komastar-dev.tistory.com/229</link>
      <description>&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;Photo by Komastar&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;2016. 10. 04&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;광운대 축제 #4&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;홍진영 갓데리 밧데리 홍블리 hongjinyoung hongvely&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;고화질 hq hd 직찍&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/994673395B39D74E3B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F994673395B39D74E3B&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;5D4_0614.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/995099395B39D75037&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F995099395B39D75037&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;5D4_0709.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/9970EC395B39D7511F&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F9970EC395B39D7511F&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;5D4_0789.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/996903395B39D75220&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F996903395B39D75220&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;5D4_0948.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/995CA4395B39D75237&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F995CA4395B39D75237&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;5D4_1026.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99E1A8395B39D7532C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99E1A8395B39D7532C&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;5D4_1034.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99BB9B395B39D75530&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99BB9B395B39D75530&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;5D4_1043.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>STAR/홍진영</category>
      <category>홍진영</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/229</guid>
      <comments>https://komastar-dev.tistory.com/229#entry229comment</comments>
      <pubDate>Mon, 2 Jul 2018 16:42:53 +0900</pubDate>
    </item>
    <item>
      <title>161004 홍진영 직찍 @ 광운대 축제 #3</title>
      <link>https://komastar-dev.tistory.com/228</link>
      <description>&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;div style=&quot;box-sizing: border-box; font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241); text-align: center; margin: 0px 0px 10px;&quot;&gt;&lt;ins class=&quot;adsbygoogle&quot; data-ad-client=&quot;ca-pub-3876602293020676&quot; data-ad-slot=&quot;1784942943&quot; data-adsbygoogle-status=&quot;done&quot; style=&quot;display: inline-block; width: 728px; height: 90px;&quot;&gt;&lt;ins id=&quot;aswift_0_expand&quot; style=&quot;display: inline-table; border: none; height: 90px; margin: 0px; padding: 0px; position: relative; visibility: visible; width: 728px; background-color: transparent;&quot;&gt;&lt;ins id=&quot;aswift_0_anchor&quot; style=&quot;display: block; border: none; height: 90px; margin: 0px; padding: 0px; position: relative; visibility: visible; width: 728px; background-color: transparent;&quot;&gt;&lt;iframe width=&quot;728&quot; height=&quot;90&quot; frameborder=&quot;0&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot; vspace=&quot;0&quot; hspace=&quot;0&quot; allowtransparency=&quot;true&quot; scrolling=&quot;no&quot; allowfullscreen=&quot;true&quot; id=&quot;aswift_0&quot; name=&quot;aswift_0&quot; style=&quot;max-width: 100%; left: 0px; position: absolute; top: 0px; width: 728px; height: 90px;&quot;&gt;&lt;/iframe&gt;&lt;/ins&gt;&lt;/ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;Photo by Komastar&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;2016. 10. 04&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;광운대 축제 #3&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;홍진영 갓데리 밧데리 홍블리 hongjinyoung hongvely&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;고화질 hq hd 직찍&lt;/p&gt;&lt;p&gt;&lt;br style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/991D47415B39D6BD2E&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F991D47415B39D6BD2E&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;5D4_0354.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99C9F9415B39D6BF0A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99C9F9415B39D6BF0A&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;5D4_0470.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99CA1B415B39D6C00A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99CA1B415B39D6C00A&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;5D4_0552.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99512D415B39D6C12A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99512D415B39D6C12A&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;5D4_0560.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99B444415B39D6C338&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99B444415B39D6C338&quot; width=&quot;900&quot; height=&quot;1349&quot; filename=&quot;5D4_0571.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99861D415B39D6C326&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99861D415B39D6C326&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;5D4_0585.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99D509415B39D6C409&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99D509415B39D6C409&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;5D4_0586.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>STAR/홍진영</category>
      <category>홍진영</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/228</guid>
      <comments>https://komastar-dev.tistory.com/228#entry228comment</comments>
      <pubDate>Mon, 2 Jul 2018 16:40:08 +0900</pubDate>
    </item>
    <item>
      <title>161004 홍진영 직찍 @ 광운대 축제 #2</title>
      <link>https://komastar-dev.tistory.com/227</link>
      <description>&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;Photo by Komastar&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;2016. 10. 04&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;광운대 축제 #2&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;홍진영 갓데리 밧데리 홍블리 hongjinyoung hongvely&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;고화질 hq hd 직찍&lt;/p&gt;&lt;p&gt;&lt;br style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99CC3E3D5B39D65F03&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99CC3E3D5B39D65F03&quot; width=&quot;900&quot; height=&quot;900&quot; filename=&quot;5D4_0133.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99E2323D5B39D66002&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99E2323D5B39D66002&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;5D4_0162.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99C8873D5B39D66106&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99C8873D5B39D66106&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;5D4_0207.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/999EB83D5B39D6620B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F999EB83D5B39D6620B&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;5D4_0230.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99A5803D5B39D66305&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99A5803D5B39D66305&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;5D4_0280.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99E9DC3D5B39D66401&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99E9DC3D5B39D66401&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;5D4_0307.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/999EF13D5B39D6660D&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F999EF13D5B39D6660D&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;5D4_0311.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>STAR/홍진영</category>
      <category>홍진영</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/227</guid>
      <comments>https://komastar-dev.tistory.com/227#entry227comment</comments>
      <pubDate>Mon, 2 Jul 2018 16:39:14 +0900</pubDate>
    </item>
    <item>
      <title>161004 홍진영 직찍 @ 광운대 축제 #1</title>
      <link>https://komastar-dev.tistory.com/226</link>
      <description>&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;Photo by Komastar&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;2016. 10. 04&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;광운대 축제&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;홍진영 갓데리 밧데리 홍블리 hongjinyoung hongvely&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;고화질 hq hd 직찍&lt;/p&gt;&lt;p&gt;&lt;br style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/992C4A3F5B39D62B2A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F992C4A3F5B39D62B2A&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;5D4_0005.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99AEE43F5B39D62C1D&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99AEE43F5B39D62C1D&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;5D4_0008.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99928E3F5B39D62D37&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99928E3F5B39D62D37&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;5D4_0067.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/9921FC3F5B39D62E2B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F9921FC3F5B39D62E2B&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;5D4_0069.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/9963353F5B39D62E25&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F9963353F5B39D62E25&quot; width=&quot;900&quot; height=&quot;600&quot; filename=&quot;5D4_0079.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99C1D93F5B39D62F33&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99C1D93F5B39D62F33&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;5D4_0125.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99B9A13F5B39D63109&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99B9A13F5B39D63109&quot; width=&quot;900&quot; height=&quot;1349&quot; filename=&quot;5D4_0128.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>STAR/홍진영</category>
      <category>홍진영</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/226</guid>
      <comments>https://komastar-dev.tistory.com/226#entry226comment</comments>
      <pubDate>Mon, 2 Jul 2018 16:37:37 +0900</pubDate>
    </item>
    <item>
      <title>160927 홍진영 직찍 @ 평창 싱글벙글쇼</title>
      <link>https://komastar-dev.tistory.com/225</link>
      <description>&lt;p style=&quot;font-family: 'Ubuntu Condensed', 'Noto Sans Korean'; font-size: 14px; background-color: #f1f1f1;&quot; data-ke-size=&quot;size16&quot;&gt;Photo by Komastar&lt;/p&gt;
&lt;p style=&quot;font-family: 'Ubuntu Condensed', 'Noto Sans Korean'; font-size: 14px; background-color: #f1f1f1;&quot; data-ke-size=&quot;size16&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;font-family: 'Ubuntu Condensed', 'Noto Sans Korean'; font-size: 14px; background-color: #f1f1f1;&quot; data-ke-size=&quot;size16&quot;&gt;2016. 09. 27&lt;/p&gt;
&lt;p style=&quot;font-family: 'Ubuntu Condensed', 'Noto Sans Korean'; font-size: 14px; background-color: #f1f1f1;&quot; data-ke-size=&quot;size16&quot;&gt;평창 싱글벙글쇼&lt;/p&gt;
&lt;p style=&quot;font-family: 'Ubuntu Condensed', 'Noto Sans Korean'; font-size: 14px; background-color: #f1f1f1;&quot; data-ke-size=&quot;size16&quot;&gt;홍진영 갓데리 밧데리 홍블리 hongjinyoung hongvely&lt;/p&gt;
&lt;p style=&quot;font-family: 'Ubuntu Condensed', 'Noto Sans Korean'; font-size: 14px; background-color: #f1f1f1;&quot; data-ke-size=&quot;size16&quot;&gt;고화질 hq hd 직찍&lt;/p&gt;
&lt;p&gt;&lt;figure class=&quot;imageblock alignCenter&quot; data-ke-mobileStyle=&quot;widthOrigin&quot; data-origin-width=&quot;0&quot; data-origin-height=&quot;0&quot;&gt;&lt;span data-url=&quot;https://t1.daumcdn.net/cfile/tistory/99AD1F365B3844E309?original&quot; data-phocus=&quot;https://t1.daumcdn.net/cfile/tistory/99AD1F365B3844E309?original&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99AD1F365B3844E309&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99AD1F365B3844E309&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot; loading=&quot;lazy&quot; width=&quot;900&quot; height=&quot;1350&quot; data-origin-width=&quot;0&quot; data-origin-height=&quot;0&quot;/&gt;&lt;/span&gt;&lt;/figure&gt;
&lt;figure class=&quot;imageblock alignCenter&quot; data-ke-mobileStyle=&quot;widthOrigin&quot; data-origin-width=&quot;0&quot; data-origin-height=&quot;0&quot;&gt;&lt;span data-url=&quot;https://t1.daumcdn.net/cfile/tistory/996F77365B3844E40D?original&quot; data-phocus=&quot;https://t1.daumcdn.net/cfile/tistory/996F77365B3844E40D?original&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/996F77365B3844E40D&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F996F77365B3844E40D&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot; loading=&quot;lazy&quot; width=&quot;900&quot; height=&quot;1350&quot; data-origin-width=&quot;0&quot; data-origin-height=&quot;0&quot;/&gt;&lt;/span&gt;&lt;/figure&gt;
&lt;figure class=&quot;imageblock alignCenter&quot; data-ke-mobileStyle=&quot;widthOrigin&quot; data-origin-width=&quot;0&quot; data-origin-height=&quot;0&quot;&gt;&lt;span data-url=&quot;https://t1.daumcdn.net/cfile/tistory/9942C5365B3844E510?original&quot; data-phocus=&quot;https://t1.daumcdn.net/cfile/tistory/9942C5365B3844E510?original&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/9942C5365B3844E510&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F9942C5365B3844E510&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot; loading=&quot;lazy&quot; width=&quot;900&quot; height=&quot;1350&quot; data-origin-width=&quot;0&quot; data-origin-height=&quot;0&quot;/&gt;&lt;/span&gt;&lt;/figure&gt;
&lt;figure class=&quot;imageblock alignCenter&quot; data-ke-mobileStyle=&quot;widthOrigin&quot; data-origin-width=&quot;0&quot; data-origin-height=&quot;0&quot;&gt;&lt;span data-url=&quot;https://t1.daumcdn.net/cfile/tistory/99C8CD365B3844E607?original&quot; data-phocus=&quot;https://t1.daumcdn.net/cfile/tistory/99C8CD365B3844E607?original&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99C8CD365B3844E607&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99C8CD365B3844E607&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot; loading=&quot;lazy&quot; width=&quot;900&quot; height=&quot;1350&quot; data-origin-width=&quot;0&quot; data-origin-height=&quot;0&quot;/&gt;&lt;/span&gt;&lt;/figure&gt;
&lt;figure class=&quot;imageblock alignCenter&quot; data-ke-mobileStyle=&quot;widthOrigin&quot; data-origin-width=&quot;0&quot; data-origin-height=&quot;0&quot;&gt;&lt;span data-url=&quot;https://t1.daumcdn.net/cfile/tistory/99FBF0365B3844E733?original&quot; data-phocus=&quot;https://t1.daumcdn.net/cfile/tistory/99FBF0365B3844E733?original&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99FBF0365B3844E733&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99FBF0365B3844E733&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot; loading=&quot;lazy&quot; width=&quot;900&quot; height=&quot;1350&quot; data-origin-width=&quot;0&quot; data-origin-height=&quot;0&quot;/&gt;&lt;/span&gt;&lt;/figure&gt;
&lt;figure class=&quot;imageblock alignCenter&quot; data-ke-mobileStyle=&quot;widthOrigin&quot; data-origin-width=&quot;0&quot; data-origin-height=&quot;0&quot;&gt;&lt;span data-url=&quot;https://t1.daumcdn.net/cfile/tistory/997CF9365B3844E80C?original&quot; data-phocus=&quot;https://t1.daumcdn.net/cfile/tistory/997CF9365B3844E80C?original&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/997CF9365B3844E80C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F997CF9365B3844E80C&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot; loading=&quot;lazy&quot; width=&quot;900&quot; height=&quot;1350&quot; data-origin-width=&quot;0&quot; data-origin-height=&quot;0&quot;/&gt;&lt;/span&gt;&lt;/figure&gt;
&lt;figure class=&quot;imageblock alignCenter&quot; data-ke-mobileStyle=&quot;widthOrigin&quot; data-origin-width=&quot;0&quot; data-origin-height=&quot;0&quot;&gt;&lt;span data-url=&quot;https://t1.daumcdn.net/cfile/tistory/99550E365B3844E90F?original&quot; data-phocus=&quot;https://t1.daumcdn.net/cfile/tistory/99550E365B3844E90F?original&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99550E365B3844E90F&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99550E365B3844E90F&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot; loading=&quot;lazy&quot; width=&quot;900&quot; height=&quot;1350&quot; data-origin-width=&quot;0&quot; data-origin-height=&quot;0&quot;/&gt;&lt;/span&gt;&lt;/figure&gt;
&lt;figure class=&quot;imageblock alignCenter&quot; data-ke-mobileStyle=&quot;widthOrigin&quot; data-origin-width=&quot;0&quot; data-origin-height=&quot;0&quot;&gt;&lt;span data-url=&quot;https://t1.daumcdn.net/cfile/tistory/99D79C395B3844E910?original&quot; data-phocus=&quot;https://t1.daumcdn.net/cfile/tistory/99D79C395B3844E910?original&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99D79C395B3844E910&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99D79C395B3844E910&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot; loading=&quot;lazy&quot; width=&quot;900&quot; height=&quot;1350&quot; data-origin-width=&quot;0&quot; data-origin-height=&quot;0&quot;/&gt;&lt;/span&gt;&lt;/figure&gt;
&lt;figure class=&quot;imageblock alignCenter&quot; data-ke-mobileStyle=&quot;widthOrigin&quot; data-origin-width=&quot;0&quot; data-origin-height=&quot;0&quot;&gt;&lt;span data-url=&quot;https://t1.daumcdn.net/cfile/tistory/99BD2E395B3844EA12?original&quot; data-phocus=&quot;https://t1.daumcdn.net/cfile/tistory/99BD2E395B3844EA12?original&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99BD2E395B3844EA12&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99BD2E395B3844EA12&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot; loading=&quot;lazy&quot; width=&quot;900&quot; height=&quot;1350&quot; data-origin-width=&quot;0&quot; data-origin-height=&quot;0&quot;/&gt;&lt;/span&gt;&lt;/figure&gt;
&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&amp;nbsp;&lt;/p&gt;</description>
      <category>STAR/홍진영</category>
      <category>홍진영</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/225</guid>
      <comments>https://komastar-dev.tistory.com/225#entry225comment</comments>
      <pubDate>Sun, 1 Jul 2018 12:11:17 +0900</pubDate>
    </item>
    <item>
      <title>160922 홍진영 직찍 @ 과천 누리마 축제 #3</title>
      <link>https://komastar-dev.tistory.com/224</link>
      <description>&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;Photo by Komastar&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;2016. 09. 22&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;과천 누리마 축제&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;홍진영 갓데리 밧데리 홍블리 hongjinyoung hongvely&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;고화질 hq hd 직찍&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/993E564E5B36FE032F&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F993E564E5B36FE032F&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;160922-홍진영-과천누리마페-021.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99E07F4E5B36FE0425&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99E07F4E5B36FE0425&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;160922-홍진영-과천누리마페-035.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99D6284E5B36FE0527&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99D6284E5B36FE0527&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;160922-홍진영-과천누리마페-037.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/991F704E5B36FE0623&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F991F704E5B36FE0623&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;160922-홍진영-과천누리마페-040.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/999CF94E5B36FE072A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F999CF94E5B36FE072A&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;160922-홍진영-과천누리마페-042.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99D5D64E5B36FE0827&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99D5D64E5B36FE0827&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;160922-홍진영-과천누리마페-046.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/9970174E5B36FE092B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F9970174E5B36FE092B&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;160922-홍진영-과천누리마페-050.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99C9844E5B36FE0A28&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99C9844E5B36FE0A28&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;160922-홍진영-과천누리마페-051.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;</description>
      <category>STAR/홍진영</category>
      <category>홍진영</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/224</guid>
      <comments>https://komastar-dev.tistory.com/224#entry224comment</comments>
      <pubDate>Sat, 30 Jun 2018 12:51:12 +0900</pubDate>
    </item>
    <item>
      <title>160922 홍진영 직찍 @ 과천 누리마 축제 #2</title>
      <link>https://komastar-dev.tistory.com/223</link>
      <description>&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;Photo by Komastar&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;2016. 09. 22&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;과천 누리마 축제&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;홍진영 갓데리 밧데리 홍블리 hongjinyoung hongvely&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;고화질 hq hd 직찍&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241); text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99FD23495B36FDCC02&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99FD23495B36FDCC02&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;160922-홍진영-과천누리마페-017.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241); text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/995876495B36FDC81B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F995876495B36FDC81B&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;160922-홍진영-과천누리마페-014.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241); text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99FA14495B36FDC931&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99FA14495B36FDC931&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;160922-홍진영-과천누리마페-015.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241); text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99F422495B36FDCB03&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99F422495B36FDCB03&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;160922-홍진영-과천누리마페-016.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241); text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99FA16495B36FDC231&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99FA16495B36FDC231&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;160922-홍진영-과천누리마페-011.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99C7A8495B36FDC425&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99C7A8495B36FDC425&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;160922-홍진영-과천누리마페-012.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>STAR/홍진영</category>
      <category>홍진영</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/223</guid>
      <comments>https://komastar-dev.tistory.com/223#entry223comment</comments>
      <pubDate>Sat, 30 Jun 2018 12:49:57 +0900</pubDate>
    </item>
    <item>
      <title>160922 홍진영 직찍 @ 과천 누리마 축제 #1</title>
      <link>https://komastar-dev.tistory.com/222</link>
      <description>&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;Photo by Komastar&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;2016. 09. 22&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;과천 누리마 축제&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 14px; background-color: rgb(241, 241, 241);&quot;&gt;홍진영 갓데리 밧데리 홍블리 hongjinyoung hongvely&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99A9DF4B5B36FD2C28&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99A9DF4B5B36FD2C28&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;160922-홍진영-과천누리마페-001.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99CDAB4B5B36FD2E18&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99CDAB4B5B36FD2E18&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;160922-홍진영-과천누리마페-002.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/9991E04B5B36FD2F1C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F9991E04B5B36FD2F1C&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;160922-홍진영-과천누리마페-003-편집.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/996CFD4B5B36FD302B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F996CFD4B5B36FD302B&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;160922-홍진영-과천누리마페-004.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/9997C24B5B36FD312A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F9997C24B5B36FD312A&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;160922-홍진영-과천누리마페-006.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99DBF04B5B36FD3225&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99DBF04B5B36FD3225&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;160922-홍진영-과천누리마페-009.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99A8304B5B36FD3529&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99A8304B5B36FD3529&quot; width=&quot;900&quot; height=&quot;600&quot; filename=&quot;160922-홍진영-과천누리마페-010.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>STAR/홍진영</category>
      <category>홍진영</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/222</guid>
      <comments>https://komastar-dev.tistory.com/222#entry222comment</comments>
      <pubDate>Sat, 30 Jun 2018 12:48:36 +0900</pubDate>
    </item>
    <item>
      <title>160529 홍진영 직찍 @ 안양 스마일맘 페스티벌</title>
      <link>https://komastar-dev.tistory.com/221</link>
      <description>&lt;p&gt;Photo by Komastar&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;2016. 05. 29&lt;/p&gt;&lt;p&gt;안양 스마일맘 페스티벌&lt;/p&gt;&lt;p&gt;평촌 중앙 공원&lt;/p&gt;&lt;p&gt;홍진영 갓데리 밧데리 홍블리&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99BF9A385B338E1508&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99BF9A385B338E1508&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;160529-홍진영-안양스마페-001.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/9923A2385B338E1615&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F9923A2385B338E1615&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;160529-홍진영-안양스마페-002.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/998383385B338E1720&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F998383385B338E1720&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;160529-홍진영-안양스마페-003.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/996976385B338E1824&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F996976385B338E1824&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;160529-홍진영-안양스마페-004.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99681C385B338E1924&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99681C385B338E1924&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;160529-홍진영-안양스마페-005.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99AA19385B338E1A0A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99AA19385B338E1A0A&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;160529-홍진영-안양스마페-006.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/993118385B338E1B14&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F993118385B338E1B14&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;160529-홍진영-안양스마페-007.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99E9313D5B338E1C04&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99E9313D5B338E1C04&quot; width=&quot;900&quot; height=&quot;1350&quot; filename=&quot;160529-홍진영-안양스마페-008.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>STAR/홍진영</category>
      <category>스마일맘페스티벌</category>
      <category>직찍</category>
      <category>홍진영</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/221</guid>
      <comments>https://komastar-dev.tistory.com/221#entry221comment</comments>
      <pubDate>Wed, 27 Jun 2018 22:49:21 +0900</pubDate>
    </item>
    <item>
      <title>무지개산방 - 모과나무</title>
      <link>https://komastar-dev.tistory.com/220</link>
      <description>&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;거제도 무지개산방&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;거제시 연초면 연초면거제북로 304 무지개산방&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;연락처 : 010-3599-5545&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br style=&quot;color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: start;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;img id=&quot;emap_582256&quot; src=&quot;http://i1.daumcdn.net/icon/editor/img_map_490360.gif&quot; type=&quot;map&quot; class=&quot;tx-entry-attach txc-map tx-unresizable&quot;&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;모과나무&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99EE39465B1DEB5D09&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99EE39465B1DEB5D09&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;KakaoTalk_20180611_122046181.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99A9CA465B1DEB5D23&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99A9CA465B1DEB5D23&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;KakaoTalk_20180611_122046502.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 810px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/999D17465B1DEB5E24&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F999D17465B1DEB5E24&quot; width=&quot;810&quot; height=&quot;1440&quot; filename=&quot;KakaoTalk_20180611_122047233.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 810px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99A9B2465B1DEB5E23&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99A9B2465B1DEB5E23&quot; width=&quot;810&quot; height=&quot;1440&quot; filename=&quot;KakaoTalk_20180611_122047868.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 810px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99DD3D465B1DEB5F1E&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99DD3D465B1DEB5F1E&quot; width=&quot;810&quot; height=&quot;1440&quot; filename=&quot;KakaoTalk_20180611_122048552.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 810px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99559C465B1DEB602B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99559C465B1DEB602B&quot; width=&quot;810&quot; height=&quot;1440&quot; filename=&quot;KakaoTalk_20180611_122049168.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>무지개산방</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/220</guid>
      <comments>https://komastar-dev.tistory.com/220#entry220comment</comments>
      <pubDate>Mon, 11 Jun 2018 12:24:23 +0900</pubDate>
    </item>
    <item>
      <title>무지개산방 - 소사나무</title>
      <link>https://komastar-dev.tistory.com/219</link>
      <description>&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;거제도 무지개산방&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;거제시 연초면 연초면거제북로 304 &lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;무지개산방&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;연락처 : 010-3599-5545&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;&lt;iframe id=&quot;emap_052357&quot; src=&quot;/proxy/plusmapViewer.php?id=emap_052357&amp;amp;mapGb=V&quot; width=&quot;521&quot; height=&quot;451&quot; frameborder=&quot;0&quot; scrolling=&quot;no&quot; mapdata=&quot;map_type=TYPE_MAP&amp;map_hybrid=false&amp;idx=1&amp;title=%EA%B2%BD%EB%82%A8%20%EA%B1%B0%EC%A0%9C%EC%8B%9C%20%EC%97%B0%EC%B4%88%EB%A9%B4%20%EA%B1%B0%EC%A0%9C%EB%B6%81%EB%A1%9C%20304&amp;addr=%EA%B2%BD%EB%82%A8%20%EA%B1%B0%EC%A0%9C%EC%8B%9C%20%EC%97%B0%EC%B4%88%EB%A9%B4%20%EA%B1%B0%EC%A0%9C%EB%B6%81%EB%A1%9C%20304&amp;tel=&amp;mapX=878405&amp;mapY=403263&amp;ifrW=490px&amp;ifrH=362px&amp;addtype=1&amp;map_level=4&amp;rcode=4831037000&amp;docid=&amp;confirmid=&amp;mapWidth=490&amp;mapHeight=362&amp;mapInfo=%7B%22version%22%3A2%2C%22mapWidth%22%3A490%2C%22mapHeight%22%3A362%2C%22mapCenterX%22%3A878405%2C%22mapCenterY%22%3A403263%2C%22mapLevel%22%3A4%2C%22coordinate%22%3A%22wcongnamul%22%2C%22markInfo%22%3A%5B%7B%22markerType%22%3A%22standPlace%22%2C%22coordinate%22%3A%22wcongnamul%22%2C%22x%22%3A878407%2C%22y%22%3A403265%2C%22clickable%22%3Atrue%2C%22draggable%22%3Atrue%2C%22icon%22%3A%7B%22width%22%3A35%2C%22height%22%3A56%2C%22offsetX%22%3A17%2C%22offsetY%22%3A56%2C%22src%22%3A%22%2F%2Ft1.daumcdn.net%2Flocalimg%2Flocalimages%2F07%2F2012%2Fattach%2Fpc_img%2Fico_marker2_150331.png%22%7D%2C%22content%22%3A%22%EA%B2%BD%EB%82%A8%20%EA%B1%B0%EC%A0%9C%EC%8B%9C%20%EC%97%B0%EC%B4%88%EB%A9%B4%20%EA%B1%B0%EC%A0%9C%EB%B6%81%EB%A1%9C%20304%22%2C%22confirmid%22%3A%22%22%7D%5D%2C%22graphicInfo%22%3A%5B%5D%2C%22roadviewInfo%22%3A%5B%5D%7D&amp;toJSONString=&quot;&gt;&lt;/iframe&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;소사나무&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 810px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/9992ED3F5B1DEB322F&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F9992ED3F5B1DEB322F&quot; width=&quot;810&quot; height=&quot;1440&quot; filename=&quot;KakaoTalk_20180611_121626136.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/993D1E3F5B1DEB3323&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F993D1E3F5B1DEB3323&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;KakaoTalk_20180611_121627343.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/9907273F5B1DEB3313&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F9907273F5B1DEB3313&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;KakaoTalk_20180611_121627744.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/991E313F5B1DEB3426&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F991E313F5B1DEB3426&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;KakaoTalk_20180611_121628337.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99D7D23F5B1DEB342B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99D7D23F5B1DEB342B&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;KakaoTalk_20180611_121629064.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99859C3F5B1DEB351E&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99859C3F5B1DEB351E&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;KakaoTalk_20180611_121629747.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 810px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99E40D3F5B1DEB352A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99E40D3F5B1DEB352A&quot; width=&quot;810&quot; height=&quot;1440&quot; filename=&quot;KakaoTalk_20180611_121630336.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/9967963F5B1DEB3620&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F9967963F5B1DEB3620&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;KakaoTalk_20180611_121631205.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/991BB7375B1DEB3634&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F991BB7375B1DEB3634&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;KakaoTalk_20180611_121631731.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/993B7B375B1DEB371E&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F993B7B375B1DEB371E&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;KakaoTalk_20180611_121632358.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>무지개산방</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/219</guid>
      <comments>https://komastar-dev.tistory.com/219#entry219comment</comments>
      <pubDate>Mon, 11 Jun 2018 12:23:41 +0900</pubDate>
    </item>
    <item>
      <title>무지개산방 - 향나무</title>
      <link>https://komastar-dev.tistory.com/218</link>
      <description>&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;거제도 무지개산방&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;거제시 연초면 연초면거제북로 304 무지개산방&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;연락처 : 010-3599-5545&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br style=&quot;color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: start;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;iframe id=&quot;emap_582256&quot; src=&quot;/proxy/plusmapViewer.php?id=emap_582256&amp;amp;mapGb=V&quot; width=&quot;521&quot; height=&quot;451&quot; frameborder=&quot;0&quot; scrolling=&quot;no&quot; mapdata=&quot;map_type=TYPE_MAP&amp;map_hybrid=false&amp;idx=1&amp;title=%EA%B2%BD%EB%82%A8%20%EA%B1%B0%EC%A0%9C%EC%8B%9C%20%EC%97%B0%EC%B4%88%EB%A9%B4%20%EA%B1%B0%EC%A0%9C%EB%B6%81%EB%A1%9C%20304&amp;addr=%EA%B2%BD%EB%82%A8%20%EA%B1%B0%EC%A0%9C%EC%8B%9C%20%EC%97%B0%EC%B4%88%EB%A9%B4%20%EA%B1%B0%EC%A0%9C%EB%B6%81%EB%A1%9C%20304&amp;tel=&amp;mapX=878405&amp;mapY=403263&amp;ifrW=490px&amp;ifrH=362px&amp;addtype=1&amp;map_level=4&amp;rcode=4831037000&amp;docid=&amp;confirmid=&amp;mapWidth=490&amp;mapHeight=362&amp;mapInfo=%7B%22version%22%3A2%2C%22mapWidth%22%3A490%2C%22mapHeight%22%3A362%2C%22mapCenterX%22%3A878405%2C%22mapCenterY%22%3A403263%2C%22mapLevel%22%3A4%2C%22coordinate%22%3A%22wcongnamul%22%2C%22markInfo%22%3A%5B%7B%22markerType%22%3A%22standPlace%22%2C%22coordinate%22%3A%22wcongnamul%22%2C%22x%22%3A878407%2C%22y%22%3A403265%2C%22clickable%22%3Atrue%2C%22draggable%22%3Atrue%2C%22icon%22%3A%7B%22width%22%3A35%2C%22height%22%3A56%2C%22offsetX%22%3A17%2C%22offsetY%22%3A56%2C%22src%22%3A%22%2F%2Ft1.daumcdn.net%2Flocalimg%2Flocalimages%2F07%2F2012%2Fattach%2Fpc_img%2Fico_marker2_150331.png%22%7D%2C%22content%22%3A%22%EA%B2%BD%EB%82%A8%20%EA%B1%B0%EC%A0%9C%EC%8B%9C%20%EC%97%B0%EC%B4%88%EB%A9%B4%20%EA%B1%B0%EC%A0%9C%EB%B6%81%EB%A1%9C%20304%22%2C%22confirmid%22%3A%22%22%7D%5D%2C%22graphicInfo%22%3A%5B%5D%2C%22roadviewInfo%22%3A%5B%5D%7D&amp;toJSONString=&quot;&gt;&lt;/iframe&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;향나무&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 810px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/9956E3465B193E5C08&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F9956E3465B193E5C08&quot; width=&quot;810&quot; height=&quot;1440&quot; filename=&quot;180607-향나무-001.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 810px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99B557465B193E5C17&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99B557465B193E5C17&quot; width=&quot;810&quot; height=&quot;1440&quot; filename=&quot;180607-향나무-002.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 810px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99D1F5465B193E5D14&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99D1F5465B193E5D14&quot; width=&quot;810&quot; height=&quot;1440&quot; filename=&quot;180607-향나무-003.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 810px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99758F465B193E5E33&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99758F465B193E5E33&quot; width=&quot;810&quot; height=&quot;1440&quot; filename=&quot;180607-향나무-004.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 810px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/999AD1465B193E5E03&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F999AD1465B193E5E03&quot; width=&quot;810&quot; height=&quot;1440&quot; filename=&quot;180607-향나무-005.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 810px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99FD89465B193E5E10&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99FD89465B193E5E10&quot; width=&quot;810&quot; height=&quot;1440&quot; filename=&quot;180607-향나무-006.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>무지개산방</category>
      <category>거제도</category>
      <category>무지개산방</category>
      <category>향나무</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/218</guid>
      <comments>https://komastar-dev.tistory.com/218#entry218comment</comments>
      <pubDate>Thu, 7 Jun 2018 23:18:15 +0900</pubDate>
    </item>
    <item>
      <title>무지개산방 - 지리산 철쭉</title>
      <link>https://komastar-dev.tistory.com/217</link>
      <description>&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;거제도 무지개산방&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;거제시 연초면 연초면거제북로 304 무지개산방&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;연락처 : 010-3599-5545&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;&lt;iframe id=&quot;emap_125633&quot; src=&quot;/proxy/plusmapViewer.php?id=emap_125633&amp;amp;mapGb=V&quot; width=&quot;521&quot; height=&quot;451&quot; frameborder=&quot;0&quot; scrolling=&quot;no&quot; mapdata=&quot;map_type=TYPE_MAP&amp;map_hybrid=false&amp;idx=1&amp;title=%EA%B2%BD%EB%82%A8%20%EA%B1%B0%EC%A0%9C%EC%8B%9C%20%EC%97%B0%EC%B4%88%EB%A9%B4%20%EA%B1%B0%EC%A0%9C%EB%B6%81%EB%A1%9C%20304&amp;addr=%EA%B2%BD%EB%82%A8%20%EA%B1%B0%EC%A0%9C%EC%8B%9C%20%EC%97%B0%EC%B4%88%EB%A9%B4%20%EA%B1%B0%EC%A0%9C%EB%B6%81%EB%A1%9C%20304&amp;tel=&amp;mapX=878405&amp;mapY=403263&amp;ifrW=490px&amp;ifrH=362px&amp;addtype=1&amp;map_level=4&amp;rcode=4831037000&amp;docid=&amp;confirmid=&amp;mapWidth=490&amp;mapHeight=362&amp;mapInfo=%7B%22version%22%3A2%2C%22mapWidth%22%3A490%2C%22mapHeight%22%3A362%2C%22mapCenterX%22%3A878405%2C%22mapCenterY%22%3A403263%2C%22mapLevel%22%3A4%2C%22coordinate%22%3A%22wcongnamul%22%2C%22markInfo%22%3A%5B%7B%22markerType%22%3A%22standPlace%22%2C%22coordinate%22%3A%22wcongnamul%22%2C%22x%22%3A878407%2C%22y%22%3A403265%2C%22clickable%22%3Atrue%2C%22draggable%22%3Atrue%2C%22icon%22%3A%7B%22width%22%3A35%2C%22height%22%3A56%2C%22offsetX%22%3A17%2C%22offsetY%22%3A56%2C%22src%22%3A%22%2F%2Ft1.daumcdn.net%2Flocalimg%2Flocalimages%2F07%2F2012%2Fattach%2Fpc_img%2Fico_marker2_150331.png%22%7D%2C%22content%22%3A%22%EA%B2%BD%EB%82%A8%20%EA%B1%B0%EC%A0%9C%EC%8B%9C%20%EC%97%B0%EC%B4%88%EB%A9%B4%20%EA%B1%B0%EC%A0%9C%EB%B6%81%EB%A1%9C%20304%22%2C%22confirmid%22%3A%22%22%7D%5D%2C%22graphicInfo%22%3A%5B%5D%2C%22roadviewInfo%22%3A%5B%5D%7D&amp;toJSONString=&quot;&gt;&lt;/iframe&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;지리산 철쭉&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/992BC0475B193D7E0C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F992BC0475B193D7E0C&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;180607-지리산철쭉-001.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/998BF4475B193D7F04&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F998BF4475B193D7F04&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;180607-지리산철쭉-002.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99F4AC475B193D7F43&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99F4AC475B193D7F43&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;180607-지리산철쭉-003.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99B96E475B193D8030&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99B96E475B193D8030&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;180607-지리산철쭉-004.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/992466475B193D800D&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F992466475B193D800D&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;180607-지리산철쭉-005.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99BC11475B193D8130&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99BC11475B193D8130&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;180607-지리산철쭉-006.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/996618475B193D8121&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F996618475B193D8121&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;180607-지리산철쭉-007.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>무지개산방</category>
      <category>거제도</category>
      <category>무지개산방</category>
      <category>지리산철쭉</category>
      <category>철쭉</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/217</guid>
      <comments>https://komastar-dev.tistory.com/217#entry217comment</comments>
      <pubDate>Thu, 7 Jun 2018 23:15:08 +0900</pubDate>
    </item>
    <item>
      <title>무지개산방 - 영산홍</title>
      <link>https://komastar-dev.tistory.com/216</link>
      <description>&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;거제도 무지개산방&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;거제시 연초면 연초면거제북로 304 무지개산방&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;연락처 : 010-3599-5545&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;iframe id=&quot;emap_214736&quot; src=&quot;/proxy/plusmapViewer.php?id=emap_214736&amp;amp;mapGb=V&quot; width=&quot;521&quot; height=&quot;451&quot; frameborder=&quot;0&quot; scrolling=&quot;no&quot; mapdata=&quot;map_type=TYPE_MAP&amp;map_hybrid=false&amp;idx=1&amp;title=%EA%B2%BD%EB%82%A8%20%EA%B1%B0%EC%A0%9C%EC%8B%9C%20%EC%97%B0%EC%B4%88%EB%A9%B4%20%EA%B1%B0%EC%A0%9C%EB%B6%81%EB%A1%9C%20304&amp;addr=%EA%B2%BD%EB%82%A8%20%EA%B1%B0%EC%A0%9C%EC%8B%9C%20%EC%97%B0%EC%B4%88%EB%A9%B4%20%EA%B1%B0%EC%A0%9C%EB%B6%81%EB%A1%9C%20304&amp;tel=&amp;mapX=878405&amp;mapY=403263&amp;ifrW=490px&amp;ifrH=362px&amp;addtype=1&amp;map_level=4&amp;rcode=4831037000&amp;docid=&amp;confirmid=&amp;mapWidth=490&amp;mapHeight=362&amp;mapInfo=%7B%22version%22%3A2%2C%22mapWidth%22%3A490%2C%22mapHeight%22%3A362%2C%22mapCenterX%22%3A878405%2C%22mapCenterY%22%3A403263%2C%22mapLevel%22%3A4%2C%22coordinate%22%3A%22wcongnamul%22%2C%22markInfo%22%3A%5B%7B%22markerType%22%3A%22standPlace%22%2C%22coordinate%22%3A%22wcongnamul%22%2C%22x%22%3A878407%2C%22y%22%3A403265%2C%22clickable%22%3Atrue%2C%22draggable%22%3Atrue%2C%22icon%22%3A%7B%22width%22%3A35%2C%22height%22%3A56%2C%22offsetX%22%3A17%2C%22offsetY%22%3A56%2C%22src%22%3A%22%2F%2Ft1.daumcdn.net%2Flocalimg%2Flocalimages%2F07%2F2012%2Fattach%2Fpc_img%2Fico_marker2_150331.png%22%7D%2C%22content%22%3A%22%EA%B2%BD%EB%82%A8%20%EA%B1%B0%EC%A0%9C%EC%8B%9C%20%EC%97%B0%EC%B4%88%EB%A9%B4%20%EA%B1%B0%EC%A0%9C%EB%B6%81%EB%A1%9C%20304%22%2C%22confirmid%22%3A%22%22%7D%5D%2C%22graphicInfo%22%3A%5B%5D%2C%22roadviewInfo%22%3A%5B%5D%7D&amp;toJSONString=&quot;&gt;&lt;/iframe&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;영산홍&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99B04C505B193AFE2E&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99B04C505B193AFE2E&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;180607-영산홍-001.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99F1BC505B193AFF0D&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99F1BC505B193AFF0D&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;180607-영산홍-002.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/9967EA505B193AFF1A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F9967EA505B193AFF1A&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;180607-영산홍-003.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99B0F0505B193B002D&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99B0F0505B193B002D&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;180607-영산홍-004.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/9956D2505B193B001B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F9956D2505B193B001B&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;180607-영산홍-005.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/9977A6505B193B0133&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F9977A6505B193B0133&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;180607-영산홍-006.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99750C505B193B0134&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99750C505B193B0134&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;180607-영산홍-007.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 810px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99FE1F505B193B0226&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99FE1F505B193B0226&quot; width=&quot;810&quot; height=&quot;1440&quot; filename=&quot;180607-영산홍-008.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 810px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99C1B9445B193B0305&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99C1B9445B193B0305&quot; width=&quot;810&quot; height=&quot;1440&quot; filename=&quot;180607-영산홍-009.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/996D21445B193B030D&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F996D21445B193B030D&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;180607-영산홍-010.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/99B02D445B193B041C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F99B02D445B193B041C&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;180607-영산홍-011.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/9918C6445B193B0415&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F9918C6445B193B0415&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;180607-영산홍-012.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>무지개산방</category>
      <category>거제도</category>
      <category>무지개산방</category>
      <category>영산홍</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/216</guid>
      <comments>https://komastar-dev.tistory.com/216#entry216comment</comments>
      <pubDate>Thu, 7 Jun 2018 23:12:43 +0900</pubDate>
    </item>
    <item>
      <title>BENRO SHD UV ULCA WMC 77mm unboxing</title>
      <link>https://komastar-dev.tistory.com/208</link>
      <description>&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;BENRO SHD UV ULCA WMC filter 개봉기&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/272C9A40595E201131&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F272C9A40595E201131&quot; width=&quot;820&quot; height=&quot;352&quot; filename=&quot;1DX26130.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;82mm 를 구매했을때는 올블랙에 골드 포인트로 세련된 느낌의 패키지 였는데&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;이번에 구매한 77mm의 패키지는 조금 다르다&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;이게 구버젼 패키지였으면 하는 마음&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/27227940595E201211&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F27227940595E201211&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;1DX26131.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;꺼내는데 조금 피곤했다&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;종이 박스와 필터케이스의 유격이 거의 없어서 뚜껑 여는데 귀찮았음&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/220C2A40595E201441&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F220C2A40595E201441&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;1DX26132.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;필터 케이스&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/21656440595E201533&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F21656440595E201533&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;1DX26133.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;필터의 성능에 대해서 따로 벤치마크는 하지 않을 예정이다&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;다른 리뷰를 통해 발수발유 성능이 우수함이 검증되었고&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;고스트나 플레어는 강한 광원일 경우 비싼 필터도 무의미해서 벤로를 선택했다&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;일정 수준 이상의 필터면 화질 저하도 거의 없기도 하고&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;필요하면 빼놓으면 되기 때문에 필터를 구매했다&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;77mm의 경우 BW의 반값정도&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;카메라 렌즈 필터 추천&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>Review/Device</category>
      <category>BENRO</category>
      <category>unboxing</category>
      <category>개봉기</category>
      <category>렌즈필터</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/208</guid>
      <comments>https://komastar-dev.tistory.com/208#entry208comment</comments>
      <pubDate>Thu, 6 Jul 2017 20:43:20 +0900</pubDate>
    </item>
    <item>
      <title>Laravel Installation @ Windows 8 (라라벨 설치 윈도우8)</title>
      <link>https://komastar-dev.tistory.com/207</link>
      <description>&lt;p&gt;경고.&lt;/p&gt;&lt;p&gt;딱 한번 설치해보고 의식의 흐름에 따라 조립된 기억을 기반으로 작성한 내용이므로 아래의 작업은 Komastar가&amp;nbsp;보장하지 않습니다.&lt;/p&gt;&lt;p&gt;모든 실행의 책임은 사용자에게 있으며 이 글을 보고 따라해서 발생한 문제에 대해선 Komastar는 어떤 책임도 지지 않습니다.&lt;/p&gt;&lt;p&gt;따라서 실제 개발 전 가상화된 개발 환경 구축 후&amp;nbsp;테스트를 통해 안정성을 먼저 검토하시기 바랍니다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;1. PHP 설치&lt;/p&gt;&lt;p&gt;php.net 에서 PHP7 압축파일을 다운로드&lt;/p&gt;&lt;p&gt;압축파일을 풀고 폴더 이름을 php7으로 변경 (optional)&lt;/p&gt;&lt;p&gt;php7폴더를 C:\Program Files\ 아래로 이동시킨다&lt;/p&gt;&lt;p&gt;시스템 환경변수의 PATH에 C:\Program Files\php7 추가&lt;/p&gt;&lt;p&gt;(환경변수 추가 시 기존 스트링과 추가할 스트링 사이에 세미콜론 추가하는 것을&amp;nbsp;잊지말자)&lt;/p&gt;&lt;p&gt;php7폴더 내부에 보면 php.ini-development 라는 설정파일이 있음&lt;/p&gt;&lt;p&gt;&quot;-development&quot;를 제거&lt;/p&gt;&lt;p&gt;텍스트 에디터로 해당 파일을 열고&lt;/p&gt;&lt;p&gt;&quot;php_openssl.dll&quot; 검색하여 해당 라인의 주석 해제&lt;/p&gt;&lt;p&gt;&quot;On windows&quot; 검색하여 그 다음 줄의 주석을 해제&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;2. composer 설치&lt;/p&gt;&lt;p&gt;https://getcomposer.org/ 설치파일 다운로드&lt;/p&gt;&lt;p&gt;설치 진행&lt;/p&gt;&lt;p&gt;CMD 실행 후 composer -V로 설치 확인&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&quot;내문서\Composer\composer.json&quot;에 아래 내용 추가 후 저장&lt;/p&gt;&lt;p&gt;&quot;repositories&quot;: [&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; {&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&quot;type&quot;: &quot;composer&quot;,&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&quot;url&quot;: &quot;https://packagist.org&quot;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; },&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; { &quot;packagist&quot;: false }&lt;/p&gt;&lt;p&gt;]&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&quot;내문서\Composer\config.json&quot;에 아래 내용 추가 후 저장&lt;/p&gt;&lt;p&gt;&quot;config&quot;: {&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &quot;disable-tls&quot;: true&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;3. laravel 설치&lt;/p&gt;&lt;p&gt;CMD 실행 후 아래 명령어 실행&lt;/p&gt;&lt;p&gt;composer global require &quot;laravel/installer&quot;&lt;/p&gt;&lt;p&gt;(무작정 실행해보고 예외가 떠서 그 예외에 대한 처리를 윗 단계에서 미리 했으나 새로운 예외가 생길 수 있음. 그땐 구글링 해볼 것)&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;4. laravel 시작&lt;/p&gt;&lt;p&gt;CMD 실행 후 프로젝트 폴더로 이동&lt;/p&gt;&lt;p&gt;laravel new 프로젝트이름&lt;/p&gt;&lt;p&gt;위 커맨드를 실행하면 &quot;프로젝트이름&quot;으로 폴더가 생성되고 내부에 laravel에 필요한 파일들이 생성됨.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;모든 걸 마쳤다면 이제 개발을 시작하면 된다.&lt;/p&gt;</description>
      <category>Development/PHP</category>
      <category>Composer</category>
      <category>laravel</category>
      <category>php</category>
      <category>Windows</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/207</guid>
      <comments>https://komastar-dev.tistory.com/207#entry207comment</comments>
      <pubDate>Sun, 11 Jun 2017 22:41:46 +0900</pubDate>
    </item>
    <item>
      <title>[170603] 홍진영 직찍 프리뷰 @ 인천 팬싸인회</title>
      <link>https://komastar-dev.tistory.com/206</link>
      <description>&lt;div style=&quot;text-align:left&quot;&gt;&lt;p&gt;​&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/222C36455932525E12&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F222C36455932525E12&quot; width=&quot;820&quot; height=&quot;546&quot; filename=&quot;170603150754.317.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;​&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/27530250593252630E&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F27530250593252630E&quot; width=&quot;820&quot; height=&quot;546&quot; filename=&quot;170603150754.683.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description>
      <category>STAR/홍진영</category>
      <category>홍진영</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/206</guid>
      <comments>https://komastar-dev.tistory.com/206#entry206comment</comments>
      <pubDate>Sat, 3 Jun 2017 15:08:37 +0900</pubDate>
    </item>
    <item>
      <title>170602] 홍진영 직찍 @ 안양 동편마을 카페거리 축제</title>
      <link>https://komastar-dev.tistory.com/205</link>
      <description>&lt;div style=&quot;text-align:left&quot;&gt;&lt;p&gt;안양 동편마을 카페거리 신바람 축제&lt;br&gt;​&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 709px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2571CD4B593233310D&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2571CD4B593233310D&quot; width=&quot;709&quot; height=&quot;1064&quot; filename=&quot;170603125331.190.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;​&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 680px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/23189B445932333216&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F23189B445932333216&quot; width=&quot;680&quot; height=&quot;1020&quot; filename=&quot;170603125331.145.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;​&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/277AD84A5932333417&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F277AD84A5932333417&quot; width=&quot;820&quot; height=&quot;1229&quot; filename=&quot;170603125331.858.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;Canon EOS 5D Mark IV / 5D mark4 / 오막포&lt;br&gt;Tamron SP 70-200mm F/2.8 Di VC USD G2 / 새탐아빠 /탐아빠2 / 탐아빠g2 / 70200g2 / 70-200g2&lt;/div&gt;</description>
      <category>STAR/홍진영</category>
      <category>홍진영</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/205</guid>
      <comments>https://komastar-dev.tistory.com/205#entry205comment</comments>
      <pubDate>Sat, 3 Jun 2017 12:55:34 +0900</pubDate>
    </item>
    <item>
      <title>170602] 홍진영 직찍 @ 안양 동편마을 신바람 축제 (1 pic)</title>
      <link>https://komastar-dev.tistory.com/204</link>
      <description>&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/26732835593183790B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F26732835593183790B&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;5D4_0064.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 15px;&quot;&gt;Canon EOS 5D Mark IV / 5D Mark 4 / 오막포&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;font-family: &amp;quot;Ubuntu Condensed&amp;quot;, &amp;quot;Noto Sans Korean&amp;quot;; font-size: 15px; padding-top: 0px !important; padding-bottom: 0px !important;&quot;&gt;&lt;span style=&quot;box-sizing: border-box;&quot;&gt;Tamron SP 70-200mm f/2.8 Di VC USD G2 / 70-200g2 / 70200g2 &amp;nbsp;/ 탐아빠g2 / 새탐아빠&lt;/span&gt;&lt;/p&gt;</description>
      <category>STAR/홍진영</category>
      <category>홍진영</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/204</guid>
      <comments>https://komastar-dev.tistory.com/204#entry204comment</comments>
      <pubDate>Sat, 3 Jun 2017 00:27:08 +0900</pubDate>
    </item>
    <item>
      <title>Tamron SP 70-200mm F2.8 Di VC USD G2 이미지 성능 살펴보기</title>
      <link>https://komastar-dev.tistory.com/203</link>
      <description>&lt;p&gt;&lt;span style=&quot;color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px;&quot;&gt;Tamron SP 70-200mm F2.8 Di VC USD G2 (탐아빠2 / 탐아빠g2 / 새탐아빠 / 70-200g2 / 70200g2)&lt;/span&gt;&lt;br style=&quot;color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;보케와 빛갈라짐을 먼저 보겠다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;보케 테스트는 200mm에서 진행했다.&lt;/p&gt;&lt;p&gt;보케 성능은 보통 인물 촬영시 배경정리에 중요한 부분이기 때문에 200mm로 진행해보았다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/21702238592D7E6B29&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F21702238592D7E6B29&quot; width=&quot;820&quot; height=&quot;546&quot; filename=&quot;5D4_9162.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;F2.8&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/21063738592D7E7009&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F21063738592D7E7009&quot; width=&quot;820&quot; height=&quot;546&quot; filename=&quot;5D4_9163.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;F4&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2133B938592D7E752D&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2133B938592D7E752D&quot; width=&quot;820&quot; height=&quot;546&quot; filename=&quot;5D4_9164.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;F5.6&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/26422038592D7E7A05&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F26422038592D7E7A05&quot; width=&quot;820&quot; height=&quot;546&quot; filename=&quot;5D4_9165.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;F8&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/270F1B38592D7E7F28&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F270F1B38592D7E7F28&quot; width=&quot;820&quot; height=&quot;546&quot; filename=&quot;5D4_9166.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;F11&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/24347D38592D7E8430&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F24347D38592D7E8430&quot; width=&quot;820&quot; height=&quot;546&quot; filename=&quot;5D4_9167.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;F16&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/27595D38592D7E8937&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F27595D38592D7E8937&quot; width=&quot;820&quot; height=&quot;546&quot; filename=&quot;5D4_9168.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;F22&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;F2.8에서 빛망울이 가장 크게 맺히며 중앙부에서 조금 벗어나면 빛망울이 럭비공 모양으로 찌그러지기 시작한다.&lt;/p&gt;&lt;p&gt;주변부에서 빛망울이 찌그러지는 현상은 Optical Vignetting 으로 검색하면 자세한 설명이 나올 것이다.&lt;/p&gt;&lt;p&gt;다른 70-200 렌즈들을 써봤지만 그때 리뷰용으로 샘플 샷을 찍은 것이 없기 때문에 당장 비교를 할 순 없는 상황이다.&lt;/p&gt;&lt;p&gt;빛망울 자체는 외곽선이 흐트러지거나 너무 진하지도 않고 깔끔하게 잘 맺힌다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;이번엔 빛갈라짐에 대해 보도록 하자.&lt;/p&gt;&lt;p&gt;야경에서 상당히 중요한 요소이다.&lt;/p&gt;&lt;p&gt;촬영시 초점거리는 200mm로 조리개 값을 바꿔가며 촬영했다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2369E848592D846312&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2369E848592D846312&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5D4_9169.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;F2.8&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/226A0048592D846507&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F226A0048592D846507&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5D4_9170.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;F4&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/27139448592D846736&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F27139448592D846736&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5D4_9171.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;F5.6&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2417AD48592D846904&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2417AD48592D846904&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5D4_9172.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;F8&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/26532C48592D846B1C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F26532C48592D846B1C&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5D4_9173.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;F11&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/27652248592D846E29&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F27652248592D846E29&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5D4_9174.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;F16&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/26127748592D847025&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F26127748592D847025&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5D4_9175.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;F22&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;위 사진은 조리개별로 촬영한 사진의 중앙부 2000*2000px 크롭한 것이다.&lt;/p&gt;&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;F11 부근에서 갈라지기 시작하며 F22까지 조여도 충분히 빛 갈라짐이 유지된다.&lt;/p&gt;&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;촬영 샘플이 마음에 들진 않지만 다시 촬영을 하기엔 상당히 빡빡하므로 패스...&lt;/p&gt;&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;야경 촬영에 나쁠건 없지만 조리개 날 수가 많아 상당히 난잡한 빛갈라짐이 발생하며 갈라짐 자체도 날카롭다고 볼 수 없다.&lt;/p&gt;&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;아무래도 원형조리개 기술이 좋아지면서 조리개를 많이 조인 상태에서도 조리개 날과 날 사이가 날카롭게 각지지 않는다는 것의 반증이다.&lt;/p&gt;&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;사진 및 장비 커뮤니티를 봐도 빛갈라짐 때문에 일부러 구형 렌즈를 쓰는 유저도 많은편..&lt;/p&gt;&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;다음은 역광 상황에서 렌즈 특성을 알아보자.&lt;/p&gt;&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;역광 상황에서 렌즈의 성능만을 보기 위해 필터 없이 촬영을 진행했다.&lt;/p&gt;&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;보통 밝은 광원을 정면으로 보는 상태에선 AF가 제대로 동작하지 않거나 AF 속도가 느려지기 마련인데 아주 쾌적한 편이다.&lt;/p&gt;&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/232CFF47592D86F908&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F232CFF47592D86F908&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;5D4_5479.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/27078047592D86FB29&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F27078047592D86FB29&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;5D4_5480.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;중앙 측거점 사용&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;- 아주 강력한 역광 상황은 아니지만 실제 눈으로 봤을땐 AF 포인트가 제대로 안보일 정도로 밝은 빛이었다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;아주 원활하게 초점을 잡아냈다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2337D747592D86FD31&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2337D747592D86FD31&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;5D4_5481.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;주변부 측거점 사용&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;- 위와 같은 상황에서 측거점만 주변부로 옮긴 것. 원활하게 초점을 잡아냈다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2670E747592D870017&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2670E747592D870017&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;5D4_5482.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;해를 정면에 위치시킨 강력한 역광 상황.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;눈이 부셔서 뷰파인더가 제대로 안보이는 수준.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;수차례 초점 검출 중 한번정도 약간의 헤메긴 했지만&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;무난하게 잘 잡아냈다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2337A447592D87031C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2337A447592D87031C&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;5D4_5483.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/261B7C47592D870426&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F261B7C47592D870426&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;5D4_5484.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/26622547592D87070E&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F26622547592D87070E&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;5D4_5485.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/235ACF49592D870908&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F235ACF49592D870908&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;5D4_5486.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;해가 살짝 건물에 가려지긴 했지만 플레어가 상당히 잘 억제된 모습이다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;역광에서 쾌적한 AF 속도를 보이고 안정적인 검출력을 보인다.&lt;/p&gt;&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;플레어도 잘 막아내주는 모습을 보인다.&lt;/p&gt;&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;이전에 올렸지만 참고용으로 링크를 걸어두겠다.&lt;/p&gt;&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;새탐아빠와 새아빠의 AF 속도 비교 영상이다.&lt;/p&gt;&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;a href=&quot;http://blog.komastar.kr/197&quot; target=&quot;_blank&quot;&gt;2017/05/01 - [Review/Device] - Tamron SP 70-200mm F/2.8 Di VC USD G2 AF 속도 테스트&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;이제 샘플 사진을 보며 리뷰를 마치겠다.&lt;/p&gt;&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;촬영된 모든 사진은 캐논 EOS 5D Mark 4 + 탐론 SP 70-200mm F/2.8 Di VC USD G2로 촬영되었다.&lt;/p&gt;&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;촬영 설정은 조리개와 셔터속도만 조절하고 감도와 화이트밸런스는 자동으로 두었다.&lt;/p&gt;&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;JPG L Fine으로 저장했고 픽쳐스타일은 기본 픽쳐스타일 중 하나인 [상세]를 사용했다.&lt;/p&gt;&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2327C63B592D8A1D2C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2327C63B592D8A1D2C&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;5D4_5465.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/25434D3B592D8A2127&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F25434D3B592D8A2127&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;5D4_5468.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/25098A3B592D8A2518&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F25098A3B592D8A2518&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;5D4_5470.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/233A803B592D8A280A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F233A803B592D8A280A&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;5D4_5472.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/224B8D3B592D8A2C31&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F224B8D3B592D8A2C31&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;5D4_5473.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/221C1F3B592D8A2F3C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F221C1F3B592D8A2F3C&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;5D4_5474.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/21797F3B592D8A3237&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F21797F3B592D8A3237&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;5D4_5475.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/211A3935592D8A3534&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F211A3935592D8A3534&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;5D4_5476.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2377A235592D8A3830&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2377A235592D8A3830&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;5D4_5477.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/25035A35592D8A3C2E&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F25035A35592D8A3C2E&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;5D4_5490.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/271A8735592D8A3E26&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F271A8735592D8A3E26&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;5D4_5493.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/25345435592D8A412C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F25345435592D8A412C&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;5D4_5494.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/261A4635592D8A432D&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F261A4635592D8A432D&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;5D4_5495.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/234B9835592D8A4506&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F234B9835592D8A4506&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;5D4_5497.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/250B273B592D8A4822&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F250B273B592D8A4822&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;5D4_5505.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2209123B592D8A4A2C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2209123B592D8A4A2C&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;5D4_5506.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/224C363B592D8A4D32&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F224C363B592D8A4D32&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;5D4_5508.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/22434D3B592D8A5128&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F22434D3B592D8A5128&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;5D4_5510.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/246AA23B592D8A5439&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F246AA23B592D8A5439&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;5D4_5511.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/255AFB3C592D8A6702&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F255AFB3C592D8A6702&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;5D4_5513.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>Review/Device</category>
      <category>70200g2</category>
      <category>렌즈</category>
      <category>리뷰</category>
      <category>탐론</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/203</guid>
      <comments>https://komastar-dev.tistory.com/203#entry203comment</comments>
      <pubDate>Wed, 31 May 2017 00:10:25 +0900</pubDate>
    </item>
    <item>
      <title>Tamron SP 70-200mm F2.8 Di VC USD G2 외관 살펴보기</title>
      <link>https://komastar-dev.tistory.com/202</link>
      <description>&lt;p&gt;&lt;span style=&quot;color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px;&quot;&gt;Tamron SP 70-200mm F2.8 Di VC USD G2 (탐아빠2 / 탐아빠g2 / 새탐아빠 / 70-200g2 / 70200g2)&lt;/span&gt;&lt;br style=&quot;color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;탐론의 새아빠 70-200G2 외관 살펴보기&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/215FA0335925440421&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F215FA0335925440421&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;5D4_9661.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;스위치는 렌즈의 좌측에 몰려있다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/223C5D335925440624&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F223C5D335925440624&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5D4_9667.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;70mm 경통의 모습&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2159D9335925440816&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2159D9335925440816&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5D4_9671.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;200mm 경통의 모습&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;이너줌(Inner zoom) 렌즈이기 때문에 줌에 따른 경통 길이 변화가 없다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/235FCF335925440A21&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F235FCF335925440A21&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5D4_9672.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;최단 초점거리 0.95m 상태의 경통 모습.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;이너포커스(Inner Focus) 렌즈이기 때문에 초점 거리 변화에 따른 경통 길이 변화가 없다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;대부분 제조사에서 70-200 렌즈의 경우 이너줌 이너포커스 기능을 채택하기 때문에&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;특별한 강점으로 볼 수 없다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/237CC2335925440C1E&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F237CC2335925440C1E&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5D4_9673.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;스위치들을 살펴보자.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;가장 좌측의 스위치는 손떨림 방지 모드 선택 스위치이다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;1번 모드는 기본(상하 좌우 손떨림 방지)&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;2번 모드는 패닝 모드(상하 손떨림 방지)&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;3번은 촬영 우선(촬영하는 순간에만 손떨림 방지가 동작하여 배터리 절약&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;배터리를 극한으로 아껴야 한다면 3번을 쓰겠지만 보통 1번 모드로 사용한다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;참고로 탐론의 손떨림 방지 기능은 매우 강력하다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;캐논의 EF 70-200mm F/2.8L IS II USM(일명 새아빠)의 손떨림 방지는&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&quot;손떨방이 동작하고 있구나&quot;하고 느끼는 정도라면&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;탐론의 손떨방은&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&quot;렌즈가 공중에 고정된 느낌&quot;이다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;이제는 구형이 되어버린 SP 70-200mm F/2.8 Di VC USD의 경우&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;손떨림 방지 기능은 들어있지만 세세한 모드는 따로 없었기에&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;패닝 촬영을 할때 손떨림 방지가 너무 강력해서 오히려 불편했을 정도이다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;이젠 다양한 모드가 생겼으니 그 불편함은 확실히 없어졌고&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;손떨방의 강력함은 그대로 남아있다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;개인적으로 강력한 손떨방이 탐론의 가장 큰 강점으로 생각된다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2548894A592550D134&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2548894A592550D134&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5D4_9674.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;삼각대 마운트 링.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;도브테일이 기본 옵션이기 때문에 삼각대에 올리기 위해 추가로 플레이트를 구매할 필요가 없어졌다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;기존에 사용했던 플레이트는 이제 먼지만 쌓이는 신세.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/232984335925441026&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F232984335925441026&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5D4_9676.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;최근 탐론이 렌즈들을 대거로 리뉴얼 하면서 넣은 일명 &quot;골드링&quot;이다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;사실 골드라는 느낌은 잘 안나지만...&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;똑 떼어놓고 보면 뭔가 어색하다는 느낌이 있을 수 있는데&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;바디에 마운트 시키고 보면 평소엔 잘 보이진 않지만 은근히 심미적으로 좋은 느낌이다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;골드링이 들어가면서 렌즈 뒷 캡 디자인도 달라졌는데&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;평평하고 딱딱한 대리석 바닥 같은 곳에 렌즈 캡을 엎어두면 손이 미끄러운 사람은 집어들기 힘들다는 평가도 있다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;렌즈 캡을 가방이나 주머니가 아닌 곳에 내려놓은 적이 없어서 공감할 수 없는 부분이기도 하다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/21254133592544120F&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F21254133592544120F&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5D4_9684.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;보통 대포류에 들어가는 전면부 고무링이 붙어있다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;개인적으로 이 부분은 별로 마음에 들지 않는다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;어차피 필터를 쓰는 경우가 대부분이고 필터를 장착하면 고무 부분은 바닥에 닿지 않는다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;그리고 고무라서 그런지 괜히 먼지만 더 잘 달라붙는다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;대포의 경우 바디를 마운트 한 상태로 바닥에 엎어놔도 워낙 대물렌즈 구경이 크다보니 무게 중심이 잘 잡히지만&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;이 것의 경우엔 구경이 작다보니 무게 중심도 밑으로 쏠리지 않고 상당히 불안정하게 된다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;한마디로 의미가 없어보이는 부분.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2255C2335925441517&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2255C2335925441517&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5D4_9685.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;방진방적을 위해 마운트 부분에 고무 패킹처리가 되어있다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;이것 또한 고급 렌즈군엔 거의 항상 들어가는 부분.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/245C17335925441716&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F245C17335925441716&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5D4_9686.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;전작과 달라진 부분이다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;삼각대 마운트 링의 분리 방법인데&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;기존의 탐론 70-200vc에선 마운트 링에 관절이 있어서 마운트 링의 나사를 끝까지 풀어서 체결을 풀었었다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;G2 버젼에선 나사를 적당히 푼 뒤에 마운트 링을 회전 시켜 위와 같이 맞추면 체결이 해제된다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2507D8335925441928&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2507D8335925441928&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5D4_9687.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;삼각대 마운트 링 체결이 해제된 모습.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/267B8F335925441C1F&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F267B8F335925441C1F&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5D4_9688.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;삼각대 마운트 링 정면.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/236B79335925441E2A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F236B79335925441E2A&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5D4_9689.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;삼각대 마운트 링.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/272E5233592544201A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F272E5233592544201A&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5D4_9691.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;삼각대 마운트 링을 체결 해제 한 모습이다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/241E713B592544220C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F241E713B592544220C&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5D4_9692.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;담론의 고급 렌즈군에 붙이는 SP&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2716AC3B592544250D&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2716AC3B592544250D&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5D4_9693.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/25634B48592550F204&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F25634B48592550F204&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5D4_9694.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;DESIGNED IN JAPAN&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/212A0E50592551073B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F212A0E50592551073B&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5D4_9695.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;후드 체결 부위 표시.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;위와 같은 모양으로 맞추고 후드를 좌측으로 돌리면 아래와 같이 체결 된다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/224463505925511727&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F224463505925511727&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5D4_9696.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;후드가 체결된 모습.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2529F53B5925442D17&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2529F53B5925442D17&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;5D4_9697.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;후드 체결 후 전체적인 모양.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/21293C3B5925442E17&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F21293C3B5925442E17&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;5D4_9698.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;반대편.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/22047E345925443009&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F22047E345925443009&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5D4_9699.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;렌즈 정면.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/225D28345925443319&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F225D28345925443319&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5D4_9700.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;렌즈 후면.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/23319434592544361B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F23319434592544361B&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5D4_9701.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;렌즈 전면캡.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;탐론의 신작 SP 70-200mm F/2.8 Di VC USD G2의 외관을 상세히 살펴보았다.&lt;/p&gt;&lt;p style=&quot;text-align: justify; clear: none; float: none;&quot;&gt;다음엔 사진 및 영상 결과물로 렌즈의 성능을 리뷰 할 것이다.&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>Review/Device</category>
      <category>70200</category>
      <category>G2</category>
      <category>렌즈</category>
      <category>망원렌즈</category>
      <category>외관</category>
      <category>탐론</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/202</guid>
      <comments>https://komastar-dev.tistory.com/202#entry202comment</comments>
      <pubDate>Wed, 24 May 2017 18:23:45 +0900</pubDate>
    </item>
    <item>
      <title>Tamron SP 70-200mm F2.8 Di VC USD G2 Unboxing (탐아빠2 /탐아빠g2 / 새탐아빠 개봉기)</title>
      <link>https://komastar-dev.tistory.com/201</link>
      <description>&lt;p&gt;Tamron SP 70-200mm F2.8 Di VC USD G2&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;탐론의 새아빠 70-200G2 개봉기&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/211EE23A5923F0102C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F211EE23A5923F0102C&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;5D4_0028.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;박스 외관은 상당히 심플하다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;렌즈의 디자인과 박스의 디자인 컨셉이 통일된 모양.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/21373E3A5923F0110A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F21373E3A5923F0110A&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;5D4_0029.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;바로 박스를 열어보자.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;각종 설명서와 비닐로 포장된 렌즈 파우치가 보인다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;이미 박스 외관을 봐서 알겠지만 캐논의 70-200과는 다르게 렌즈가 누워있다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;박스 위쪽은 종이곽이 충격으로 부터 보호하고 있는 모양.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/247F933A5923F01239&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F247F933A5923F01239&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;5D4_0031.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;렌즈 파우치와 렌즈를 꺼낸 모습.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;이전의 탐론 70-200 F2.8 VC 모델에선 파우치가 포함되지 않았지만 G2 버젼 부터는 파우치를 주는 모양이다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;파우치의 재질은 상당히 부드럽지만 렌즈를 충격으로부터 보호하지는 못 할 만큼 매우 얇다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;(두꺼운 파우치를 써도 렌즈에 충격이 가서 좋을건 전혀 없다.)&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;렌즈는 뽀송뽀송한 하얀 비닐에 쌓여있다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;(후드가 거꾸로 마운트된 모양으로 함께 있지만 실제로 마운트 되어 있진 않음.)&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/276FA13A5923F01410&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F276FA13A5923F01410&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;5D4_0032.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;뽀송 비닐을 벗기고 나면 렌즈가 바로 나온다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;거리계 창엔 재질의 비닐이 붙어있다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/257F753A5923F0152F&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F257F753A5923F0152F&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;5D4_0034.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;렌즈의 좌측에 스위치들이 자리한다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;간단한 개봉기는 여기까지 마치고 다음엔 렌즈 외관을&amp;nbsp;더욱 자세히 보도록 하겠다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>Review/Device</category>
      <category>70200</category>
      <category>G2</category>
      <category>개봉기</category>
      <category>렌즈</category>
      <category>망원렌즈</category>
      <category>탐론</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/201</guid>
      <comments>https://komastar-dev.tistory.com/201#entry201comment</comments>
      <pubDate>Tue, 23 May 2017 17:34:43 +0900</pubDate>
    </item>
    <item>
      <title>170408 홍진영 직찍 KFM 라쇼 공개방송 @ 수원 장안공원 (9pics) #2</title>
      <link>https://komastar-dev.tistory.com/199</link>
      <description>&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2444D74D5912570F07&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2444D74D5912570F07&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;5D4_4916.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2470904D591257110B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2470904D591257110B&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;5D4_4952.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2309FB4D591257130A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2309FB4D591257130A&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;5D4_4964.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2731084D5912571408&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2731084D5912571408&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;5D4_4998.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2231B44D5912571608&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2231B44D5912571608&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;5D4_5042.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/22638F4D5912571701&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F22638F4D5912571701&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;5D4_5079.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2763684D5912571906&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2763684D5912571906&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;5D4_5089.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2405804F5912571B02&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2405804F5912571B02&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;5D4_5108.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2506254F5912571C02&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2506254F5912571C02&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;5D4_5146.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;5D Mark IV / 5D Mark 4 / 오막포&lt;/p&gt;&lt;p&gt;Tamron SP 150-600 G2 / 150-600g2 / 150600g2&lt;/p&gt;</description>
      <category>STAR/홍진영</category>
      <category>홍진영</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/199</guid>
      <comments>https://komastar-dev.tistory.com/199#entry199comment</comments>
      <pubDate>Wed, 10 May 2017 11:30:00 +0900</pubDate>
    </item>
    <item>
      <title>170408 홍진영 직찍 KFM 라쇼 공개방송 @ 수원 장안공원 (14pics)</title>
      <link>https://komastar-dev.tistory.com/198</link>
      <description>&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2133F749591256790F&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2133F749591256790F&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;5D4_4551.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/257ABE495912567B12&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F257ABE495912567B12&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;5D4_4552.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2633B5495912567D0F&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2633B5495912567D0F&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;5D4_4575.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/256AD8495912567F13&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F256AD8495912567F13&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;5D4_4619.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/270D2B495912568111&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F270D2B495912568111&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;5D4_4622.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2333FD49591256840F&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2333FD49591256840F&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;5D4_4650.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/237EAC495912568712&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F237EAC495912568712&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;5D4_4671.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2375D44D5912568904&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2375D44D5912568904&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;5D4_4766.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2619544D5912568B35&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2619544D5912568B35&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;5D4_4794.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2579414D5912568C04&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2579414D5912568C04&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;5D4_4795.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2715834D5912568E08&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2715834D5912568E08&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;5D4_4799.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/226F554D5912568F36&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F226F554D5912568F36&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;5D4_4800.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2418BD4D5912569135&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2418BD4D5912569135&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;5D4_4820.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2714F04D5912569308&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2714F04D5912569308&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;5D4_4829.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;5D Mark IV / 5D Mark 4 / 오막포&lt;/p&gt;&lt;p&gt;Tamron SP 150-600mm G2 / 150-600g2 / 150600g2&lt;/p&gt;</description>
      <category>STAR/홍진영</category>
      <category>홍진영</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/198</guid>
      <comments>https://komastar-dev.tistory.com/198#entry198comment</comments>
      <pubDate>Wed, 10 May 2017 08:55:36 +0900</pubDate>
    </item>
    <item>
      <title>Tamron SP 70-200mm F/2.8 Di VC USD G2 AF 속도 테스트</title>
      <link>https://komastar-dev.tistory.com/197</link>
      <description>&lt;p&gt;&lt;iframe src=&quot;https://www.youtube.com/embed/UPa-RD-4Dao&quot; width=&quot;560&quot; height=&quot;315&quot; frameborder=&quot;&quot; allowfullscreen=&quot;true&quot;&gt;&lt;/iframe&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;바디 - 5D Mark IV&lt;/span&gt;&lt;br style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;&lt;span style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;AF - AI Servo&lt;/span&gt;&lt;br style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;&lt;br style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;&lt;span style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;렌즈&lt;/span&gt;&lt;br style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;&lt;span style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;좌측이 Tamron SP 70-200mm F/2.8 Di VC USD G2&lt;/span&gt;&lt;br style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;&lt;span style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;우측이 Canon EF 70-200mm F/2.8L IS II USM&lt;/span&gt;&lt;br style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;&lt;br style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;&lt;span style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;탐론 70200g2의 최소 초점 거리 : 0.95m&lt;/span&gt;&lt;br style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;&lt;span style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;캐논 70200isii의 최소 초점 거리 : 1.2m&lt;/span&gt;&lt;br style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;&lt;br style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;&lt;span style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;컨트라스트가 없는 대상을 향해 전체 구간 왕복과 초점 거리 제한한 상태에서 구간 왕복 속도를 테스트함.&lt;/span&gt;&lt;br style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;&lt;span style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;탐론 70200g2의 초점거리 리미트는 기본적으로 3미터인데 캐논 70200isii와 맞추기 위해&lt;/span&gt;&lt;br style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;&lt;span style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;탐론 Tap in console을 사용해서 초점거리 리미트 수치를 수정.&lt;/span&gt;&lt;br style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;&lt;br style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;&lt;span style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;렌즈 선택에 참고되시길 바랍니다.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;font face=&quot;돋움, Dotum, AppleGothic, sans-serif&quot;&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt;새탐아빠 vs 새아빠 AF 속도 비교&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face=&quot;돋움, Dotum, AppleGothic, sans-serif&quot;&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt;탐아빠2 / 탐아빠g2 / 70200g2 / 70-200g2&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;</description>
      <category>Review/Device</category>
      <category>70200g2</category>
      <category>70200isii</category>
      <category>AF</category>
      <category>Benchmark</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/197</guid>
      <comments>https://komastar-dev.tistory.com/197#entry197comment</comments>
      <pubDate>Mon, 1 May 2017 21:33:30 +0900</pubDate>
    </item>
    <item>
      <title>애플워치 시리즈 2 NIKE</title>
      <link>https://komastar-dev.tistory.com/195</link>
      <description>&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;일단 사진만 쭉&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;Apple Watch Series 2 Nike+&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/274BE94C58552A632D&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F274BE94C58552A632D&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;161217-애플워치2-001.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/21494C4C58552A6430&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F21494C4C58552A6430&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;161217-애플워치2-002.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/266C8E4C58552A6512&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F266C8E4C58552A6512&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;161217-애플워치2-003.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/21636A4C58552A671A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F21636A4C58552A671A&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;161217-애플워치2-004.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/21486E4C58552A682F&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F21486E4C58552A682F&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;161217-애플워치2-005.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2744DD4C58552A6933&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2744DD4C58552A6933&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;161217-애플워치2-006.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2752004C58552A6B28&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2752004C58552A6B28&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;161217-애플워치2-007.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2568CD4F58552A6C3B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2568CD4F58552A6C3B&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;161217-애플워치2-008.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2775F34F58552A6D30&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2775F34F58552A6D30&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;161217-애플워치2-009.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>Review/Device</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/195</guid>
      <comments>https://komastar-dev.tistory.com/195#entry195comment</comments>
      <pubDate>Sat, 17 Dec 2016 21:09:51 +0900</pubDate>
    </item>
    <item>
      <title>161004 홍진영 직찍 - 광운대 축제</title>
      <link>https://komastar-dev.tistory.com/190</link>
      <description>&lt;p&gt;2016. 10. 04&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;광운대 축제&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;홍진영 직찍&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2477BC3F580071350C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2477BC3F580071350C&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;5D4_0005.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2667EC3F580071391E&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2667EC3F580071391E&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;5D4_0009.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2669623F5800713D1C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2669623F5800713D1C&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;5D4_0067.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2157B23F5800714130&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2157B23F5800714130&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;5D4_0078.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/226BA33F5800714518&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F226BA33F5800714518&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;5D4_0125.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>STAR/홍진영</category>
      <category>5dmark4</category>
      <category>70200isii</category>
      <category>광운대축제</category>
      <category>직찍</category>
      <category>홍진영</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/190</guid>
      <comments>https://komastar-dev.tistory.com/190#entry190comment</comments>
      <pubDate>Fri, 14 Oct 2016 14:48:54 +0900</pubDate>
    </item>
    <item>
      <title>160927 홍진영 직찍 #02 - 싱글벙글쇼 평창</title>
      <link>https://komastar-dev.tistory.com/187</link>
      <description>&lt;p&gt;2016. 09. 27&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;홍진영 직찍&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;평창 동계올림픽 특집 공개방송 싱글벙글쇼&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/24349D4657EBD7FB1F&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F24349D4657EBD7FB1F&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;160927-홍진영-062.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2429AF4657EBD7FD2C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2429AF4657EBD7FD2C&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;160927-홍진영-063.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2231894657EBD7FF22&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2231894657EBD7FF22&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;160927-홍진영-068.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2641CA4657EBD80111&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2641CA4657EBD80111&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;160927-홍진영-069.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2441F24657EBD80312&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2441F24657EBD80312&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;160927-홍진영-071.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2225474657EBD80530&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2225474657EBD80530&quot; width=&quot;820&quot; height=&quot;1229&quot; filename=&quot;160927-홍진영-072.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2633534657EBD80621&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2633534657EBD80621&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;160927-홍진영-073.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2139993F57EBD80906&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2139993F57EBD80906&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;160927-홍진영-074.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2516153F57EBD80B29&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2516153F57EBD80B29&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;160927-홍진영-078.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/232CDB3F57EBD80E11&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F232CDB3F57EBD80E11&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;160927-홍진영-079.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Canon EOS 5D Mark IV&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Canon EF 70-200mm F2.8L IS II USM&lt;/p&gt;</description>
      <category>STAR/홍진영</category>
      <category>5dmark4</category>
      <category>70200isii</category>
      <category>직찍</category>
      <category>홍진영</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/187</guid>
      <comments>https://komastar-dev.tistory.com/187#entry187comment</comments>
      <pubDate>Wed, 28 Sep 2016 23:49:33 +0900</pubDate>
    </item>
    <item>
      <title>160922 홍진영 직찍 Part. 1 - 과천 누리마 축제</title>
      <link>https://komastar-dev.tistory.com/184</link>
      <description>&lt;p&gt;2016. 09. 22&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;제 20회 과천 누리마 축제&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;초대가수 홍진영 직찍&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2526EE3357E3E69812&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2526EE3357E3E69812&quot; width=&quot;820&quot; height=&quot;1229&quot; filename=&quot;5D4_0054.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2528D13357E3E69E11&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2528D13357E3E69E11&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;5D4_0056.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2708843357E3E6A626&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2708843357E3E6A626&quot; width=&quot;820&quot; height=&quot;1229&quot; filename=&quot;5D4_0070.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2102F73357E3E6AF30&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2102F73357E3E6AF30&quot; width=&quot;820&quot; height=&quot;546&quot; filename=&quot;5D4_0090.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/267F443357E3E6B835&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F267F443357E3E6B835&quot; width=&quot;820&quot; height=&quot;546&quot; filename=&quot;5D4_0096.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/261B263357E3E6C41D&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F261B263357E3E6C41D&quot; width=&quot;820&quot; height=&quot;546&quot; filename=&quot;5D4_0124.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2510053357E3E6D027&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2510053357E3E6D027&quot; width=&quot;820&quot; height=&quot;546&quot; filename=&quot;5D4_0126.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/252DE24157E3E8B814&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F252DE24157E3E8B814&quot; width=&quot;820&quot; height=&quot;546&quot; filename=&quot;5D4_0129.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/27394D4157E3E8BE0A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F27394D4157E3E8BE0A&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;5D4_0167.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Canon EOS 5D Mark IV&lt;/p&gt;&lt;p&gt;Canon EF 70-200mm F2.8L IS II USM&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;홍진영 직찍 오막포 새아빠&lt;/p&gt;</description>
      <category>STAR/홍진영</category>
      <category>5dmark4</category>
      <category>70200isii</category>
      <category>직찍</category>
      <category>홍진영</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/184</guid>
      <comments>https://komastar-dev.tistory.com/184#entry184comment</comments>
      <pubDate>Thu, 22 Sep 2016 23:22:16 +0900</pubDate>
    </item>
    <item>
      <title>Canon EOS 1DX 저조도 복원력 테스트</title>
      <link>https://komastar-dev.tistory.com/183</link>
      <description>&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;Canon EOS 1DX 저조도 복원력 테스트 (왕덱스 저조도 복원력)&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;5D Mark IV 테스트를 하면서 같은 조건으로 바디만 1DX로 교체후 테스트 함&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;5D MARK IV 테스트 보러 가기는 아래 링크&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;&lt;a href=&quot;http://blog.komastar.kr/182&quot; target=&quot;_blank&quot;&gt;2016/09/19 - [Review/Device] - 5D Mark IV 저조도 복원력 테스트&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;아래 스크린샷은 순서대로&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;적정노출/-1/-2/-3/-5ev로 촬영한 결과물을 보정 전후 비교이며&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;보정은 +3ev 노출보정만 진행함&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;5D Mark IV와 비교를 하기 위해 DPP만 사용&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2242D93C57DF8A9228&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2242D93C57DF8A9228&quot; width=&quot;820&quot; height=&quot;444&quot; filename=&quot;1dxlowlight_-0ev_comp.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2247393C57DF8A9424&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2247393C57DF8A9424&quot; width=&quot;820&quot; height=&quot;444&quot; filename=&quot;1dxlowlight_-1ev_comp.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/23352C3C57DF8A9732&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F23352C3C57DF8A9732&quot; width=&quot;820&quot; height=&quot;444&quot; filename=&quot;1dxlowlight_-2ev_comp.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2146B13C57DF8A9A25&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2146B13C57DF8A9A25&quot; width=&quot;820&quot; height=&quot;444&quot; filename=&quot;1dxlowlight_-3ev_comp.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2371FB3C57DF8A9D01&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2371FB3C57DF8A9D01&quot; width=&quot;820&quot; height=&quot;444&quot; filename=&quot;1dxlowlight_-5ev_comp.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;고감도에서 복원력 테스트&lt;/p&gt;&lt;p&gt;셔속 1/160 , 조리개 2.8 고정&lt;/p&gt;&lt;p&gt;ISO만 변경&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/235D9F4357DF8B5217&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F235D9F4357DF8B5217&quot; width=&quot;820&quot; height=&quot;444&quot; filename=&quot;1dxlowlight_-0ev_highiso.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2239B94357DF8B5633&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2239B94357DF8B5633&quot; width=&quot;820&quot; height=&quot;444&quot; filename=&quot;1dxlowlight_-1ev_highiso.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/253CA94357DF8B5931&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F253CA94357DF8B5931&quot; width=&quot;820&quot; height=&quot;444&quot; filename=&quot;1dxlowlight_-2ev_highiso.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/253FF74357DF8B5D2D&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F253FF74357DF8B5D2D&quot; width=&quot;820&quot; height=&quot;444&quot; filename=&quot;1dxlowlight_-3ev_highiso.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2464A74357DF8B6013&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2464A74357DF8B6013&quot; width=&quot;820&quot; height=&quot;444&quot; filename=&quot;1dxlowlight_-5ev_highiso.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;밴딩밴딩한 결과물이 나오지만 어쨋든 플래그쉽 자존심은 지켰다고 생각한다&lt;/p&gt;&lt;p&gt;(화소가 낮은건 비밀)&lt;/p&gt;</description>
      <category>Review/Device</category>
      <category>1dx</category>
      <category>고감도</category>
      <category>벤치마크</category>
      <category>복원력</category>
      <category>저조도</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/183</guid>
      <comments>https://komastar-dev.tistory.com/183#entry183comment</comments>
      <pubDate>Mon, 19 Sep 2016 15:55:13 +0900</pubDate>
    </item>
    <item>
      <title>Canon EOS 5D Mark IV 저조도 복원력 테스트</title>
      <link>https://komastar-dev.tistory.com/182</link>
      <description>&lt;p&gt;&lt;font face=&quot;돋움, Dotum, AppleGothic, sans-serif&quot;&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt;Canon EOS 5D Mark IV 저조도 복원력 테스트(오막포 저조도 복원력)&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;1. DPP만 사용하므로 노출 보정이 최대 +3ev가 한계입니다&lt;/span&gt;&lt;br style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;&lt;span style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;2. 실내에서 인공조명 없이 촬영했으며 암실이 아니기 때문에 햇빛이 새어 들어오는 상태입니다&lt;/span&gt;&lt;br style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;&lt;span style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;3. 중앙 AF 포인트로 AF 실행후 MF로 변경&lt;/span&gt;&lt;br style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;&lt;span style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;4. 삼각대 설치 후 촬영했으며 릴리즈 연결이 귀찮아 2초 후 촬영 모드로 진행했습니다&lt;/span&gt;&lt;br style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;&lt;span style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;5. 렌즈는 Canon EF 24-70mm F2.8L II USM / 바디는 당연히 Canon EOS 5D MARK IV 양산품입니다&lt;/span&gt;&lt;br style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;&lt;span style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;6. 픽쳐스타일 표준 / 화이트밸런스 자동 : 화이트 우선 입니다&lt;/span&gt;&lt;br style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;&lt;br style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;&lt;br style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;&lt;span style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;아래는 간편한 비교를 위한 스크린샷입니다&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2118034E57DF761101&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2118034E57DF761101&quot; width=&quot;820&quot; height=&quot;444&quot; filename=&quot;5dm4lowlight_-0ev_comp.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;적정노출 촬영&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2214EB4E57DF761204&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2214EB4E57DF761204&quot; width=&quot;820&quot; height=&quot;444&quot; filename=&quot;5dm4lowlight_-1ev_comp.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;-1ev&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2618154E57DF761301&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2618154E57DF761301&quot; width=&quot;820&quot; height=&quot;444&quot; filename=&quot;5dm4lowlight_-2ev_comp.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;-2ev&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2468924E57DF76152D&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2468924E57DF76152D&quot; width=&quot;820&quot; height=&quot;444&quot; filename=&quot;5dm4lowlight_-3ev_comp.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;-3ev&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/230FD84E57DF761609&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F230FD84E57DF761609&quot; width=&quot;820&quot; height=&quot;444&quot; filename=&quot;5dm4lowlight_-5ev_comp.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;-5ev&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;원본 피규어 부분 크롭입니다&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2141C24857DF765D0C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2141C24857DF765D0C&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5dm4-lowlight-005-original.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;적정노출&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/234AB34857DF765F03&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F234AB34857DF765F03&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5dm4-lowlight-004-original.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;-1ev&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2333224857DF76621B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2333224857DF76621B&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5dm4-lowlight-003-original.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;-2ev&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2336B64857DF766318&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2336B64857DF766318&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5dm4-lowlight-002-original.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;-3ev&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2129C84857DF766525&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2129C84857DF766525&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5dm4-lowlight-001-original.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;-5ev&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;원본에서 노출값만 +3ev 보정하고 같은 영역을 크롭한 것입니다&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2541A04A57DF76C32C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2541A04A57DF76C32C&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5dm4-lowlight-005-retouched.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;적정노출&amp;nbsp;+3ev 보정&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/234CE64A57DF76C521&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F234CE64A57DF76C521&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5dm4-lowlight-004-retouched.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;-1ev +3ev보정&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2656544A57DF76C616&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2656544A57DF76C616&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5dm4-lowlight-003-retouched.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;-2ev &amp;nbsp;+3ev 보정&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/224C774A57DF76C823&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F224C774A57DF76C823&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5dm4-lowlight-002-retouched.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;-3ev &amp;nbsp;+3ev 보정&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/21388C4A57DF76CA35&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F21388C4A57DF76CA35&quot; width=&quot;820&quot; height=&quot;820&quot; filename=&quot;5dm4-lowlight-001-retouched.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;-5ev &amp;nbsp;+3ev 보정&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;고감도에 대해서 감도별 테스트만 추가합니다&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;셔속 1/160 , 조리개 2.8 고정에 감도만 변경해서 촬영하고 나머지 조건은 모두 동일합니다&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2460C34257DF84940B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2460C34257DF84940B&quot; width=&quot;820&quot; height=&quot;444&quot; filename=&quot;5dm4lowlight_-5ev_comp.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;-5ev&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2567D74257DF849605&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2567D74257DF849605&quot; width=&quot;820&quot; height=&quot;444&quot; filename=&quot;5dm4lowlight_-3ev_comp.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;-3ev&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2667ED4257DF849705&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2667ED4257DF849705&quot; width=&quot;820&quot; height=&quot;444&quot; filename=&quot;5dm4lowlight_-2ev_comp.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;-2ev&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2351724257DF84981B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2351724257DF84981B&quot; width=&quot;820&quot; height=&quot;444&quot; filename=&quot;5dm4lowlight_-1ev_comp.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;-1ev&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;위 조건에서 최대감도를 사용해도 -1ev가 한계입니다&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;즉 셔속이나 조리개를 건드리지 않고 더 이상 밝게 찍을 수 없다는 뜻이지요&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;테스트에 사용한 RAW 파일은 아래 링크에서 다운로드 받을 수 있습니다&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://drive.google.com/file/d/0B8E1QCHMxPTmdUVBaVA0X3h5MW8/view?usp=sharing&quot; target=&quot;_blank&quot; style=&quot;text-decoration: underline; color: rgb(79, 135, 199); font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 12px;&quot; class=&quot;tx-link&quot;&gt;RAW 파일 모음&lt;/a&gt;&lt;/p&gt;&lt;p&gt;구글 드라이브 공유 상태는 2016년 12월 31일까지&amp;nbsp;유지합니다&lt;/p&gt;</description>
      <category>Review/Device</category>
      <category>5dmark4</category>
      <category>5dmarkiv</category>
      <category>오디마크포</category>
      <category>오막포</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/182</guid>
      <comments>https://komastar-dev.tistory.com/182#entry182comment</comments>
      <pubDate>Mon, 19 Sep 2016 14:29:05 +0900</pubDate>
    </item>
    <item>
      <title>캐논 EOS 5D Mark IV 개봉</title>
      <link>https://komastar-dev.tistory.com/180</link>
      <description>&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;2016. 09. 08&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;예약구매한 5D Mark IV 배송완료&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;예약구매 특전은 5D Mark IV + EF 24-70mm F4L IS USM 미니어쳐&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;올해 11월까지 구매하고 정품등록하면 배터리 그립 or 외장 마이크 or CS100 중 택1 사은품 증정&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;외장 마이크는 써드파티에 값싸고 성능 좋은 놈들이 많기 때문에 선택의 여지가 있어서 패스&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;배터리 그립을 선택 할 예정(전원 관련은 무조건 정품을 써야한다는 생각)&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;캐논 EOS 5D Mark IV (5D Mark 4 / 오막포)&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;상세한 스펙 설명은 생략&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;캐논 공홈에 자세히 나와 있음&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;개봉샷만 아래 사진으로 확인&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/256B554957D172B031&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F256B554957D172B031&quot; width=&quot;820&quot; height=&quot;546&quot; filename=&quot;1DX_9489.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;박스 정면 사진&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2571074957D172B42A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2571074957D172B42A&quot; width=&quot;820&quot; height=&quot;546&quot; filename=&quot;1DX_9491.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;사진엔 제대로 안나왔지만 매뉴얼이 상당히 두껍다&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;기존에 쓰던 1DX 매뉴얼의 거의 두배정도 되는 느낌&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2717354957D172B802&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2717354957D172B802&quot; width=&quot;820&quot; height=&quot;546&quot; filename=&quot;1DX_9496.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;구성품 전체&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2672F04957D172BC28&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2672F04957D172BC28&quot; width=&quot;820&quot; height=&quot;546&quot; filename=&quot;1DX_9498.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;바디 정면 사진&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2568794957D172C034&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2568794957D172C034&quot; width=&quot;820&quot; height=&quot;546&quot; filename=&quot;1DX_9499.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;바디 좌측면 사진&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2615204957D172C405&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2615204957D172C405&quot; width=&quot;820&quot; height=&quot;546&quot; filename=&quot;1DX_9503.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;바디 후면 사진&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/237C074957D172C81E&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F237C074957D172C81E&quot; width=&quot;820&quot; height=&quot;546&quot; filename=&quot;1DX_9504.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;바디 우측면 사진&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/22081E4957D172CD14&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F22081E4957D172CD14&quot; width=&quot;820&quot; height=&quot;546&quot; filename=&quot;1DX_9505.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;바디 평면 사진&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2107754957D172D015&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2107754957D172D015&quot; width=&quot;820&quot; height=&quot;546&quot; filename=&quot;1DX_9507.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;얼짱각도&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/270BB54957D172D310&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F270BB54957D172D310&quot; width=&quot;820&quot; height=&quot;461&quot; filename=&quot;1DX_9508.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;EOS&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;5D&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;Mark IV&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;배터리가 충전이 안된 상태로 배송되기 때문에 즉시 테스트 할 수 없었음&lt;/p&gt;&lt;p&gt;배송된 시간이 늦은 저녁이라 충전만 걸어두고&lt;/p&gt;&lt;p&gt;제품 사진만 이리저리 찍어봄&lt;/p&gt;&lt;p&gt;내일 본격적으로 테스트 해볼 예정&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;촬영에 사용된 카메라&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Canon EOS 1DX&lt;/p&gt;&lt;p&gt;Canon EF 24-70mm F2.8L II USM&lt;/p&gt;&lt;p&gt;Horusbennu TT-998GH&lt;/p&gt;&lt;p&gt;자작 포토박스&lt;/p&gt;</description>
      <category>Review/Device</category>
      <category>1dx</category>
      <category>2470ii</category>
      <category>5dmark4</category>
      <category>개봉기</category>
      <category>오막포</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/180</guid>
      <comments>https://komastar-dev.tistory.com/180#entry180comment</comments>
      <pubDate>Thu, 8 Sep 2016 23:25:38 +0900</pubDate>
    </item>
    <item>
      <title>스타트렉 비욘드 후기</title>
      <link>https://komastar-dev.tistory.com/173</link>
      <description>&lt;p&gt;개봉일 조조로 관람하고 옴&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;최근에 본 영화들이 너무 구려서 스타트렉마저 망하면 너무 비참한 2016년이 되지 않을까&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;하고 걱정했으나&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;정말 재밌다&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;오랜만에 영화 한펀에 모든걸 담아준 영화&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;리부트된 스타트렉은 3부작이지만 사실상 옴니버스&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;이번 스타트렉 비욘드는 연출도 좋고 각본도 좋다&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;쿠키 영상은 없으며&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;오리지널 스팍 대사였던 배우 레너드 니모이에 대한 추모와 함께 영화가 끝난다&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;올해가 아직 많이 남았지만 아마 올해 최고의 영화가 아닐까 싶다&lt;/p&gt;</description>
      <category>Review</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/173</guid>
      <comments>https://komastar-dev.tistory.com/173#entry173comment</comments>
      <pubDate>Wed, 17 Aug 2016 12:07:55 +0900</pubDate>
    </item>
    <item>
      <title>아트 오브 워크래프트 관람 후기 (Art of Warcraft)</title>
      <link>https://komastar-dev.tistory.com/172</link>
      <description>&lt;p&gt;2016. 08. 12 개막식&lt;/p&gt;&lt;p&gt;아트 오브 워크래프트 관람 후기 Art of Warcraft&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;건대입구 커먼 그라운드에서 진행되는 아트 오브 워크래프트&lt;/p&gt;&lt;p&gt;군단 소장판 에약구매 / 개발자 인터뷰 / 코스프레 / 블리자드 스토어&amp;nbsp;등&lt;/p&gt;&lt;p&gt;그럴싸한 행사 내용이 많은 사람들을 유혹했다&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;그러나 개막식 행사는 정말 실망스러웠다&lt;/p&gt;&lt;p&gt;애초에 이 개막식 행사는 일반 참관객을 위한게 아니었다&lt;/p&gt;&lt;p&gt;미디어를 대상으로 하는 행사라는 느낌을 강력하게 받았다&lt;/p&gt;&lt;p&gt;공식 홈페이지 일정표에 Press Only 라는 문구 하나만 있었어도 좋았을 걸...&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;일단 입구부터 느낌있게 꾸며놓은 부분은 나쁘지 않다&lt;/p&gt;&lt;p&gt;나쁘지 않은것이지 좋았다는 평은 결코 할 수 없다&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/235BBC4F57B0065F09&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F235BBC4F57B0065F09&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;1DX_0872.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;오리지널&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/22285C4F57B0066033&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F22285C4F57B0066033&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;1DX_0873.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;불타는 성전&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;와우 역사상 가장 재밌었던 시절&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2661544F57B0066205&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2661544F57B0066205&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;1DX_0874.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;리치왕의 분노&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;가장 열심히 했던 확장팩&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;국방의 의무를 위해 리치왕 트라이는 못했다&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2366644F57B0066401&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2366644F57B0066401&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;1DX_0875.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;대격변&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;포스터에 보이는 데스윙과 전투하길 꿈꾸었던 유저들에게&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;큰 실망을 안겨준 확장팩&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;거대하고 강력한 검은용과의 전투가 아니라&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;촉수와 전투라니...&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2525DB4F57B0066534&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2525DB4F57B0066534&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;1DX_0876.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;판다리아의 안개&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;새로운 시대를 열기 위한 초석이었다고 본다&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;일리단 리치왕 데스윙 불타는군단 등 기존의 악역을 모두 소모한 상태에서&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;호드 수장의 타락이라는 씬을 보여줬고&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;타락 자체는 너무 많이 써먹는 감이 있지만&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;선과 악의 대결에서 타락을 빼버리면 스토리 짜는건 사실상 불가능&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/235B114F57B006660A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F235B114F57B006660A&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;1DX_0877.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;드레노어의 전쟁군주&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;이 확장팩이 영화였다면 제목에 나오는 전쟁군주는 영화 시작 후 10분만에 모두 죽는다&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;확장팩 이름을 차라리 OLD SCHOOL DRAENOR로 했으면 나았을 것&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;설명이 제대로 안되는 스토리 라인으로 욕을 많이 먹었고 아직도 먹고 있다&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/263EC64F57B0066720&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F263EC64F57B0066720&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;1DX_0878.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;9월1일 출시 예정인 확장팩 군단의 포스터&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;솔직히 와우는 나에겐&amp;nbsp;이제 게임이라기보다&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;영화 같은 느낌이다&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;하드하게 공격대를 달리는 유저들&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;혹은 전장 투기장을 뛰는 유저들에겐 아직 게임이지만&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;난 영화를 본다는 느낌으로 게임을 플레이한다&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;레이드를 지긋하게 뛸 시간도 없고&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;한번 뛰면 피로감이 너무 크기 때문&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;따라서 이번 확장팩 군단에선 좋은 스토리가 나오길 기도한다&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/257DC75057B0066902&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F257DC75057B0066902&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;1DX_0879.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;일리단과 굴단이 깃전을 하는 모습이다&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/24356B5057B0066A3B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F24356B5057B0066A3B&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;1DX_0881.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;행사장 전경&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;좌측에 스크린이 있고 천막이 있고&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;하얀 박스 같은게 보인다&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;하얀 박스는 음료수 냉장고&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;기자들만 천막 아래에서 제공되는 음료수를 마실 수 있었다&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;물론 해가 지는 상태였기 때문에 천막은 아무런 의미가 없었음&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;정말 더웠기 많은 기자분들이&amp;nbsp;의자에 앉지 않고 그늘로 피신&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/267F5B5057B0066C01&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F267F5B5057B0066C01&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;1DX_0882.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;포토존 (좌 : 와이번 / 우 : 그리핀)&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/235E655057B0066D1B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F235E655057B0066D1B&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;1DX_0885.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/24703B5057B0066F0D&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F24703B5057B0066F0D&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;1DX_0886.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;유명인 중 워크래프트 팬이 많은 것은 당연하다&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;워낙 유저층이 두터운 게임이기에&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;일리단을 특히 좋아한다는 최현석 쉐프와&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;대격변을 끝으로 와우를 쉬는 김이나 작사가님&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/26648B5057B0067016&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F26648B5057B0067016&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;1DX_0887.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2745215057B006712F&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2745215057B006712F&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;1DX_0889.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;베일에 쌓인 구조물&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/271DB14D57B0067330&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F271DB14D57B0067330&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;1DX_0897.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;베일이 벗겨지니&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;리치왕 동상이 넘쳐흐르는 간지를 주체하지 못한다&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;하지만&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;이번 확장팩은 군단이다&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;주인공은 일리단인데 왜 리치왕 동상을?&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/262B934D57B0067427&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F262B934D57B0067427&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;1DX_0904.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;스파이럴 캣츠의 코스프레&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;빛이 당신을 태우는 안두인 린&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;그는 최근 아버지를 잃었다&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;샬라메인은 주고 갔으면 좋았을걸...&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;이날 만큼은 빛이 진짜 우리를 태우는 줄 알았다&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;석양이 진다...&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2322BE4D57B006762C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2322BE4D57B006762C&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;1DX_0907.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;스파이럴 캣츠는 이 코스프레 하나만 가지고도 극찬을 받아 마땅하다&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;빛이 우리 모두를 태우는 날씨에&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;굴단 코스프레를...&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;코스프레에 대한 엄청난 열정의 열기가&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;빛의 열기를 역으로 태우는 이열치열이 아닐까 싶다&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;(등이 굽은 것을 표현한 부분에 에어컨이 달려있지 않다면)&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/221FCA4D57B0067730&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F221FCA4D57B0067730&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;1DX_0913.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;실바나스 윈드러너&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/254FCE4D57B006790B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F254FCE4D57B006790B&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;1DX_0931.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;쓰리샷&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;안두인 린 / 굴-단 / 실바나스 윈드러너&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2650DD4D57B0067B0A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2650DD4D57B0067B0A&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;1DX_0938.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;활이 탐난다&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/26295D4D57B0067C29&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F26295D4D57B0067C29&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;1DX_0946.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;굴단을 처치하고 굴단의 지팡이를 획득&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2378424957B0067D05&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2378424957B0067D05&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;1DX_0950.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;빛 당 태&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;빛 당 태&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;2일차&lt;/p&gt;&lt;p&gt;다른 행사가 없기에 코스프레 사진만&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/267CFB4B57B00E441D&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F267CFB4B57B00E441D&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;1DX_0968.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2774C24B57B00E4B25&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2774C24B57B00E4B25&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;1DX_0976.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2369C14B57B00E4F2F&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2369C14B57B00E4F2F&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;1DX_0980.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2208B64B57B00E5417&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2208B64B57B00E5417&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;1DX_0991.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/27709E4B57B00E5829&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F27709E4B57B00E5829&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;1DX_0997.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2204E44B57B00E5E17&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2204E44B57B00E5E17&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;1DX_1000.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;EE&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/24763D4B57B00E6324&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F24763D4B57B00E6324&quot; width=&quot;820&quot; height=&quot;1230&quot; filename=&quot;1DX_1013.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;EE&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;이외에 3층 전시장에 엄청 소규모로 전시된 내용이 있지만&lt;/p&gt;&lt;p&gt;카메라엔 담지 않았다&lt;/p&gt;&lt;p&gt;실물 서리한과 둠해머가 있고&lt;/p&gt;&lt;p&gt;바리안 린 영정사진과 실바나스의 여권사진 등&lt;/p&gt;&lt;p&gt;팬아트 상품과 피규어 위주의 내용이고&lt;/p&gt;&lt;p&gt;크게 감동받으면서 감상하지 않는한 넉넉잡고 5분이면 끝나는 분량&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;관람 후 바로 옆 아비꼬에서 식사를 해결했다&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;마지막으로 아기 윈스턴 피규어 사진&lt;/p&gt;&lt;p&gt;와우 확장팩 행사 포스팅에 왜 오버워치 피규어?&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/216F7D5057B00EF529&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F216F7D5057B00EF529&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;1DX_0961.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 820px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2708345057B00EF616&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2708345057B00EF616&quot; width=&quot;820&quot; height=&quot;547&quot; filename=&quot;1DX_0962.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;이 피규어는 군단 소장판 예약 구매자에게 현장에서 주는 사은품이다&lt;br /&gt;&lt;/p&gt;&lt;p&gt;한마디로 문맥이라곤 찾아 볼 수 없는 행사&lt;/p&gt;&lt;p&gt;거기에 고압적인 진행요원까지...&lt;/p&gt;&lt;p&gt;계획하고 행사를 한게 맞는지 의심스러울 수준&lt;/p&gt;&lt;p&gt;행사 무대로 가는 통로를 미리 만들어놨어야지...&lt;/p&gt;&lt;p&gt;코스프레 행사 직전에 숨구멍을 억지로 열고 있음&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;포스팅을 모두 쓰고 느낀점&lt;/p&gt;&lt;p&gt;와우에 계정비 내면서 한번도 아깝다고 생각한 적이 없었다&lt;/p&gt;&lt;p&gt;그러나 이번 행사를 보고 처음으로 아깝다는 생각을 잠깐 해보았다&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Canon EOS 1DX&lt;/p&gt;&lt;p&gt;Canon EF 24-70mm f/2.8 II USM (아기 윈스턴 피규어, 1일차 행사 소개 사진)&lt;/p&gt;&lt;p&gt;Canon EF 70-200mm f/2.8 IS II USM (코스프레 사진)&lt;/p&gt;</description>
      <category>Review/Exhibition</category>
      <category>1dx</category>
      <category>2470ii</category>
      <category>70200ii</category>
      <category>wow</category>
      <category>스파이럴캣츠</category>
      <category>와우</category>
      <category>코스프레</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/172</guid>
      <comments>https://komastar-dev.tistory.com/172#entry172comment</comments>
      <pubDate>Sun, 14 Aug 2016 15:40:15 +0900</pubDate>
    </item>
    <item>
      <title>160609 워크래프트 : 전쟁의 서막 후기</title>
      <link>https://komastar-dev.tistory.com/151</link>
      <description>&lt;div style=&quot;text-align:left&quot;&gt;&lt;p&gt;워크래프트 후기&lt;br&gt;일단 쿠키가 있긴 있는데&lt;br&gt;쿨한 눈보라는 쿠키를 뒤로 빼지 않는다&lt;br&gt;엔딩 크레딧은 진짜 엔딩임&lt;br&gt;&lt;br&gt;개인적으로 레이드 찌질이 시절이 생각나서 가슴이 뭉클했음&lt;br&gt;손수건 들고 갈걸...&lt;br&gt;영화가 전반적으로 바쁨&lt;br&gt;군대 전역하고 친구들 처음만나서 서로 근황 말하느라 바쁜 그런 느낌&lt;br&gt;시작부터 단편으로 안끝나는걸 암시함&lt;br&gt;사실 제목부터 단편으로 끝날 영화가 아니긴 함&lt;br&gt;나처럼 워3부터 시작하고 소설 안본 사람도&lt;br&gt;와우 열심히 했으면 대충 다 아는 내용임(시간의 동굴...)&lt;br&gt;블빠라면 무조건 봐야하는 영화&lt;br&gt;후속작이 기대되는 영화&lt;br&gt;명절 떡방앗간 같이 바쁜 영화&lt;br&gt;&lt;br&gt;꼭 봅시다&lt;/div&gt;</description>
      <category>Review</category>
      <category>영화후기</category>
      <category>와우</category>
      <author>Komastar.Dev</author>
      <guid isPermaLink="true">https://komastar-dev.tistory.com/151</guid>
      <comments>https://komastar-dev.tistory.com/151#entry151comment</comments>
      <pubDate>Thu, 9 Jun 2016 14:06:20 +0900</pubDate>
    </item>
  </channel>
</rss>