Tagged Questions
6
votes
1answer
2k views
View iPhone's PVRTC images on OS X
I need to view some of PVRTC-compressed textures from iPhone application (*.pvr) on OS X.
Is there a viewer or format converter?
5
votes
1answer
250 views
PVR texturetool build phase
I'm currently completing an iphone 3d programming book
The book says to add following python code into a build phase in xcode, to run the provided texturetool.
Book Quote
a. Leave the shell as ...
3
votes
1answer
82 views
What alternavies exists to OSXs “texturetool” for converting png image data to PowerVR
I'd like to know of alternatives to the command line program texturetool which comes with XCode for converting PNG Images to PowerVR compressed images.
For some reason texturetool takes about 50 ...
2
votes
1answer
656 views
How do I convert .pvr (PVRTC) files to .png?
I am an iPhone developer, and I have some PVRTC files, but lost the original source. Now, I'm trying to bring it to the web, and I'd like to convert these into PNG.
How do I do that? I've tried ...
1
vote
1answer
71 views
how to convert an image to PVRTC format
I've been using terminal to convert my jpg image named left to pvrtc format and this happens:
/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/texturetool -e PVRTC --bits-per-pixel-2 -o ...
0
votes
1answer
142 views
Is there any tool to split a PVR texture into a set of tiles?
I 've one big png texture 4096x4096 that I need to load parts of in the memory. I already split the big png texture into 16 1024x1024 tiles then converted them to PVR compressed files.
The problem is ...
0
votes
1answer
317 views
Is it possible to use PVRTVC textures in UIImages?
I'm running into some issues with having a lot of UIImages in memory, so I was wondering if there is any way of using PVRTC images instead of PNGs in UIImages.
0
votes
2answers
788 views
How do I use compressed textures on iPhone?
Are there any tutorials that can teach me how to use mipmapping in my program? I already know how to generate mipmaps, but i want to find out how to read, load and use the pvr file in my program.