mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-11-04 09:57:43 +03:00 
			
		
		
		
	io.BytesIO is already in 2.6. Some of the more obvious bytes literals are marked in this commit.
		
			
				
	
	
		
			40 lines
		
	
	
		
			968 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			968 B
		
	
	
	
		
			Python
		
	
	
	
	
	
#
 | 
						|
# The Python Imaging Library.
 | 
						|
# $Id$
 | 
						|
#
 | 
						|
# kludge to get basic ImageFileIO functionality
 | 
						|
#
 | 
						|
# History:
 | 
						|
# 1998-08-06 fl   Recreated
 | 
						|
#
 | 
						|
# Copyright (c) Secret Labs AB 1998-2002.
 | 
						|
#
 | 
						|
# See the README file for information on usage and redistribution.
 | 
						|
#
 | 
						|
 | 
						|
from io import BytesIO
 | 
						|
 | 
						|
##
 | 
						|
# The <b>ImageFileIO</b> module can be used to read an image from a
 | 
						|
# socket, or any other stream device.
 | 
						|
# <p>
 | 
						|
# This module is deprecated. New code should use the <b>Parser</b>
 | 
						|
# class in the <a href="imagefile">ImageFile</a> module instead.
 | 
						|
#
 | 
						|
# @see ImageFile#Parser
 | 
						|
 | 
						|
class ImageFileIO(BytesIO):
 | 
						|
 | 
						|
    ##
 | 
						|
    # Adds buffering to a stream file object, in order to
 | 
						|
    # provide <b>seek</b> and <b>tell</b> methods required
 | 
						|
    # by the <b>Image.open</b> method. The stream object must
 | 
						|
    # implement <b>read</b> and <b>close</b> methods.
 | 
						|
    #
 | 
						|
    # @param fp Stream file handle.
 | 
						|
    # @see Image#open
 | 
						|
 | 
						|
    def __init__(self, fp):
 | 
						|
        data = fp.read()
 | 
						|
        BytesIO.__init__(self, data)
 |