![]()  | 
	
| 
		 
			 
			#1  
			
			
			
			
			
		 
		
	 | 
|||
		
		
  | 
|||
| 
		
	
		
		
			
			 
				
				vizard texture PIL image
			 
			
			
			Please someone let me know how to convert viz texture to PIL image.
		 
		
		
		
		
		
		
		
		
	
	 | 
| 
		 
			 
			#2  
			
			
			
			
			
		 
		
	 | 
|||
		
		
  | 
|||
| 
		
	
		
		
		
		 
			
			Hi Sabu, 
		
		
		
		
		
		
		
		
	
	This may show a way for achieving the conversion. Code: 
	import viz
import Image
#Create a Vizard texture
tex = viz.addTexture('brick.jpg')
#Get the image data from the VizTexture object
texData = tex.getImageData()
#Get the pixel format from the raw image data which interpreted by the graphics card
if tex.getPixelFormat() == 0:
	PILimageMode = 'RGB'
elif tex.getPixelFormat() == 1:
	PILimageMode = 'RGBA'
#Convert raw image data to PIL image
newImage = Image.fromstring(PILimageMode,(tex.getSize()[0],tex.getSize()[1]),texData)
#Save PIL image to a jpg file
newImage.save('brick2.jpg')
 | 
![]()  | 
	
	
| Thread Tools | |
| Display Modes | Rate This Thread | 
		
  | 
	
		
  | 
			 
			Similar Threads
		 | 
	||||
| Thread | Thread Starter | Forum | Replies | Last Post | 
| granny render to texture image | Darkmax | Vizard | 2 | 05-16-2011 04:31 PM | 
| Vizard 4 Beta Testing | farshizzo | Announcements | 0 | 02-01-2011 11:46 AM | 
| Vizard 4 Beta Testing | farshizzo | Vizard | 0 | 02-01-2011 11:46 AM | 
| Vizard tech tip: Using the Python Imaging Library (PIL) | Jeff | Vizard | 0 | 03-23-2009 12:13 PM | 
| 3D Texture Mapping in Vizard? | stefs | Vizard | 2 | 03-25-2008 04:34 AM |