自由填充 Pattern in Photoshop
对于单个 pattern 模型,如果想要在 layer 内以随机的角度或大小填充来实现更加自然的效果可以使用 script 脚本方便的实现。
对于单个 pattern 模型,如果想要在 layer 内以随机的角度或大小填充来实现更加自然的效果可以使用 script 脚本方便的实现。
在人像照片中,一双炯炯有神的眼睛会让照片整体突出,下面我们来尝试通过提升亮度,增加细节等过程来实现。
To transform a unicode string to a byte string in Python do this:
>>> 'foo'.encode('utf_8')
b'foo'
To transform a byte string to a unicode string:
>>> b'foo'.decode('utf_8')
'foo'
To convert a string to bytes.
data = "" #string
data = "".encode() #bytes
data = b"" #bytes
To convert bytes to a String.
data = b"" #bytes
data = b"".decode() #string
data = str(b"") #string
str to hex:
import codecs
hexlify = codecs.getencoder('hex')
hexlify(b'Blaah')[0]
out:
b'426c616168'
hex to str:
import codecs
decode_hex = codecs.getdecoder("hex_codec")
s = decode_hex(b'426c616168')[0]
out:
b'Blaah'