Tagged Questions

PVRTC is a texture compression algorithm.

learn more… | top users | synonyms

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?
4
votes
1answer
215 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
78 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 ...
3
votes
3answers
972 views

PVRTC format compromises image quality

For iPhone game development, I switched from PNG format to PVRTC format for the sake of performance. But PVRTC compression is ruining the quality of the images.. I am using spritesheets with ...
3
votes
4answers
3k views

PVRTC compression increasing the file sizes of PNG

For iPhone game development, I switched from PNG format to PVRTC format for the sake of performance. But PVRTC compression is creating files that are much bigger than the PNG files.. So a PNG of 140 ...
2
votes
1answer
629 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
83 views

Problem in loading more number of PNG's in Cocos2d Game.Suggestion needed for “PNG to Pvr.ccz” convertion

In my Game i'm loading around 13-15 Png's which include few sprite sheets(6-7) of 2048x2048 dimension and others 1024x1024 and some 512x512. and now i'm facing the huge memory warning. There is no ...
1
vote
1answer
193 views

pvrtc compression on osx

I am working on an OpenGL app on MAC OSX 10.6.x. I want to compress raw pixel data in the OpenGL app using PVRTC. Is there a PVRTC library for OSX that can help me? Appreciate any pointers and thanks ...
0
votes
2answers
68 views

Convert NPOT PVR texture to POT within iOS

I would like to manually load NPOT PVR textures on iOS (I don't mean loading the texture in OpenGL memory, I mean loading it in a custom data structure that allows accessing the image data in order ...
0
votes
1answer
107 views

Qt and OpenGL how to render a PVR

I'm having a few issues regarding how to render a PVR. I'm confused about how to get the data from the PVR to screen. I have a window that is ready to draw a picture and I'm a bit stuck. What do I ...
0
votes
1answer
50 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
139 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
655 views

Cocos2D: How to use Mask Image

I am using cocos2d for a game which uses sprite sheets for my character animations. I created these images using TexturePacker. Now, I want to use PVRTC 4 format for reducing memory consumption due to ...
0
votes
1answer
248 views

PVRTexTool, is there a way to run it on multiple files at once?

I am using PVRTexTool to convert png files to pvr files but the tool seems to only be able to run on one file at a time(wont accept *.png as file name). does anyone know how to run it on a group of ...
0
votes
2answers
493 views

OpenGL ES, how do you render PVR textures?

Edit:ok, sorry, I had a simple programming error, is there a way to delete this question? I have some compressed textures that are PVR files, but I cant seem to draw them in my iPad application using ...
0
votes
1answer
293 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
1answer
261 views

color depth bits?

(Quick version: jump to paragraph next to the last one - the one beginning with "But") I was happy in my ignorance believing that PVRTC images were 4 or 2 bits per channel. That sounded plausible. It ...
0
votes
2answers
770 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.