Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

read image file python

file = open("path_yourFile" , "r") # for read line
file = open("path_yourFile" , "rb") # for read byte
content = file.read()
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #read #image #file #python
ADD COMMENT
Topic
Name
6+4 =