array(), "vcf" => array(), "contact" => array()); for($i = 0; $i < $count; $i++) { $extension = getExtension($_FILES["contacts"]["name"][$i]); if($extension == "zip") $files["zip"][] = $i; elseif($extension == "contact") $files["contact"] = $i; elseif($extension == "vcf") $files["vcf"][] = $i; } $contents["contact"] = array(); $contents["vcf"] = array(); foreach($files["contact"] as $contactfile) { $contents["contact"][] = file_get_contents($_FILES["contacts"]["tmp_name"][$contactfile]); } foreach($files["vcf"] as $contactfile) { $contents["vcf"][] = file_get_contents($_FILES["contacts"]["tmp_name"][$contactfile]); } foreach($files["zip"] as $zipfile) { $zip = new ZipArchive(); $zip->open($_FILES["contacts"]["tmp_name"][$zipfile]); for ($i = 0; $i < $zip->numFiles; $i++) { $extension = getExtension($zip->getNameIndex($i)); if($extension == "contact") $contents["contact"][] = $zip->getFromIndex($i); elseif($extension == "vcf") $contents["vcf"][] = $zip->getFromIndex($i); } $zip->close(); } $images = array(); foreach($contents["contact"] as $contact) { $image = array(); $image["name"] = preg_replace('=.*?(.*?).*=si',"\\1", $contact); $image["imgb64"] = preg_replace('=.*?(.*?).*=si',"\\1", $contact); $images[] = $image; } foreach($contents["vcf"] as $vcf) { preg_match_all('=FN:(.*?)\n=si', $vcf, $names); $count = preg_match_all('=PHOTO.*?:(.*?)\n[A-Z]=si', $vcf, $imgb64s); for ($i = 0; $i < $count; $i++) { $images[] = array("name" => $names[1][$i], "imgb64" => $imgb64s[1][$i]); } } ?> Windows Contact to Image Converter

Windows Contact to Image Converter

Alright, we extracted the images from the files as base64. We now need to convert them to images. If you do not have JavaScript, please click "Convert!" again.

" />
'; ?> /dev/nulll - Windows Contact to Image Converter
0l

Windows Contact to Image Converter

" name="base" method="post" target="ifr" enctype="multipart/form-data">

You can either choose contact files or a zip file containing contact files.


Add another upload field