Thursday, September 16, 2010

Photoshop 의 Overlay Blending Mode

질문 : 포토샵 Blending Mode 중에 Overlay 란 무엇인가?

답 :
Multiply 는 두 컬러를 곱하는 것 즉 A x B 의 결과 C 를 취하는 것 (어두워짐)
Screen 은 두 컬러를 곱하되 (1-A) x (1-B) 의 결과 C 의 (1-C)를 취하여 밝은 쪽으로 만드는 것
Overlay 는 둘 다 해주는 것으로 어두운 쪽은 더 어두워지고 밝은 쪽은 더 밝아지는 것

출처 :
Overlay Blending Mode in Photoshop

Recall that multiply darkens images (white makes the underlying layer show through completely, darker colors on the blend layer result in a darker image) while screen mode lightens images (black has no effect, while lighter colors on the blend layer result in a lighter image). You may remember that one application was duplicating the layer and setting the top one to multiply or screen mode. Multiply resulted in darker areas getting darker, while screen resulted in lighter areas getting lighter. Overlay does both of these things at the same time, so if we take our standard rose image, duplicate the layer, and set it to Overlay, the contrast of the picture is turned up quite a bit.

Thursday, September 9, 2010

Dos command prompt 에서 Batch 파일 이용한 Batch Render 사용예

다음과 같이 render.bat 를 만든다.
그러면
"c:/render.bat" 0 10 "d:/mydata/house.mb"
와 같이 렌더할 수 있게 됨

render.bat

REM Usage
REM (1) Copy this render.bat to c:\
REM (2) "C:\render" 1 10 "c:\maya\house.mb"

REM Note : Before Render
REM (a) render global 에서 shave and a haircut 관련 없애고
REM (b) 형식을 tiff 로 한 후
REM (c) name.#.ext
REM (d) frame padding 4

"C:\Program Files\Autodesk\Maya2011\bin\Render.exe" -r mr -rt 6 -cam cam -s %1 -e %2 -b 2 -x 720 -y 405 %3

설명

REM으로 시작하는 것은 커멘트로, 사용법 메모이므로 없어도 무방.

제일 처음에는 사용법을 적은 커멘트,

두번째는 자신에게 필요한 메모 (렌더가 진행되어서야 잊고 안한 것을 깨닫는 경우가 있으므로, 이렇게 메모해두면 렌더를 걸자마자 기억할수 있으므로 바로 Ctrl+C 로 취소하고 제대로 세팅해서 렌더하면 됨). 이것은 자기에게 특화된 메모로, 이 경우는 디자이너에게 받은 파일에 shave and a haircut 렌더 설정이 들어가 있는데 실제로는 안쓰여서, 렌더 전에 제거해주기 위해 넣은 것.

세번째는 실제 자신에게 필요한 렌더 명령. 기능적으로는 이것만 있으면 됨

참고 : command line rendering in Maya 마야에서 커맨드 라인 렌더링하는 법