Original iOS 8 iPhone 6 Plus Hintergrundbilder?

Apple4Life

Apple4Life

Mitglied
Thread Starter
Dabei seit
03.05.2013
Beiträge
80
Reaktionspunkte
2
Hallo Community,

ich möchte gerne die original iOS 8 Hintergrundbilder in photoshop bearbeiten. Deshalb brauch ich die Bilder aus dem Betriebssytem, weil man im Internet nur die "zugeschnittenen" 1080x1920 Bilder findet die dann im landscape modus unscharf sind.


Kann mir deshalb jemand sagen, wie oder wo ich die Bilder herbekomme oder hat sie Vllt. schon jemand und kann sie mir schicken?





Apple4life
 
Ich push das mal...
 
How I did it:
You can use a freeware program called iPhone Backup Extractor to read backups out of iTunes. From a backup, select "iOS files" and dump the whole structure.You can navigate to /library/springboard to see 2 files... HomeBackground.cpbitmap and LockBackground.cpbitmap. A cpbitmap appears to be a very primitive form of 24-bit raster bitmap image with 24 bits tacked onto the end to represent some arbitrary file data such including predefined length and width. I wrote a simple python script below that reads the data.


Code:
#!/usr/bin/python
import struct
import sys
if len(sys.argv) < 2:
print "Error: no filename given\n";
sys.exit(0)
cfile = sys.argv[1]

with open(cfile) as f:
contents = f.read()
p1, p2, p3, p4, p5, p6 = struct.unpack('<6i', contents[-24:])
print "param 1: ", p1
print "height is: ", p2
print "width is: ", p3
print "param 4: ", p4
print "param 5: ", p5
print "param 6: ", p6
 
Zurück
Oben Unten