Accueil > > > MANIPULATION DES DONNÉES IPTC
MANIPULATION DES DONNÉES IPTC
Information sur la source
Description
Voici une class qui permet de gérer les données IPTC d'une image. On peut définir la liste des tags à utiliser, les récupérer via l'image, en ajouter / modifier. Plusieurs exemples sont en fin de source.
Source
- <?php
- /**
- * Manipulate IPTC tags
- *
- * @date 08-20-2010
- * @author ShevAbam
- */
- class IptcManager
- {
- public $file = '';
- public $listTags = array();
-
-
- /**
- * Constructor
- */
- public function __construct()
- {
- $this->listTags();
- }
-
-
- /**
- * Sets the image file
- *
- * @param string $filename Path of the image file
- * @return object
- */
- public function setFile($filename)
- {
- if (!empty($filename) && is_file($filename))
- $this->file = $filename;
-
- return $this;
- }
-
- /**
- * Sets the IPTC tags
- *
- * @return void
- */
- public function listTags()
- {
- // Most common tags. You can redefine this method by extending the class
- $getAll = array(
- array('id' => 1, 'name' => 'Object type', 'tag' => '2#003'),
- array('id' => 2, 'name' => 'Object attribute', 'tag' => '2#004'),
- array('id' => 3, 'name' => 'Title', 'tag' => '2#005'),
- array('id' => 4, 'name' => 'Edit status', 'tag' => '2#007'),
- array('id' => 5, 'name' => 'Editorial update', 'tag' => '2#008'),
- array('id' => 6, 'name' => 'Urgency', 'tag' => '2#010'),
- array('id' => 7, 'name' => 'Subject reference', 'tag' => '2#012'),
- array('id' => 8, 'name' => 'Category', 'tag' => '2#015'),
- array('id' => 9, 'name' => 'Supplemental categories', 'tag' => '2#020'),
- array('id' => 10, 'name' => 'Fixture identifier', 'tag' => '2#022'),
- array('id' => 11, 'name' => 'Keywords', 'tag' => '2#025'),
- array('id' => 12, 'name' => 'Location code', 'tag' => '2#026'),
- array('id' => 13, 'name' => 'Location name', 'tag' => '2#027'),
- array('id' => 14, 'name' => 'Release date', 'tag' => '2#030'),
- array('id' => 15, 'name' => 'Release time', 'tag' => '2#035'),
- array('id' => 16, 'name' => 'Expiration date', 'tag' => '2#037'),
- array('id' => 17, 'name' => 'Expiration time', 'tag' => '2#038'),
- array('id' => 18, 'name' => 'Instructions', 'tag' => '2#040'),
- array('id' => 19, 'name' => 'Action advised', 'tag' => '2#042'),
- array('id' => 20, 'name' => 'Reference service', 'tag' => '2#045'),
- array('id' => 21, 'name' => 'Reference date', 'tag' => '2#047'),
- array('id' => 22, 'name' => 'Reference number', 'tag' => '2#050'),
- array('id' => 23, 'name' => 'Date created', 'tag' => '2#055'),
- array('id' => 24, 'name' => 'Time created', 'tag' => '2#060'),
- array('id' => 25, 'name' => 'Digital creation date', 'tag' => '2#062'),
- array('id' => 26, 'name' => 'Digital creation time', 'tag' => '2#063'),
- array('id' => 27, 'name' => 'Originating program', 'tag' => '2#065'),
- array('id' => 28, 'name' => 'Program version', 'tag' => '2#070'),
- array('id' => 29, 'name' => 'Object cycle', 'tag' => '2#075'),
- array('id' => 30, 'name' => 'Author', 'tag' => '2#080'),
- array('id' => 31, 'name' => 'AuthorsPosition', 'tag' => '2#085'),
- array('id' => 32, 'name' => 'City', 'tag' => '2#090'),
- array('id' => 33, 'name' => 'Sublocation', 'tag' => '2#092'),
- array('id' => 34, 'name' => 'State/Province', 'tag' => '2#095'),
- array('id' => 35, 'name' => 'Country code', 'tag' => '2#100'),
- array('id' => 36, 'name' => 'Country', 'tag' => '2#101'),
- array('id' => 37, 'name' => 'Transmission reference', 'tag' => '2#103'),
- array('id' => 38, 'name' => 'Headline', 'tag' => '2#105'),
- array('id' => 39, 'name' => 'Credit', 'tag' => '2#110'),
- array('id' => 40, 'name' => 'Source', 'tag' => '2#115'),
- array('id' => 41, 'name' => 'Copyright notice', 'tag' => '2#116'),
- array('id' => 42, 'name' => 'Contact Information', 'tag' => '2#118'),
- array('id' => 43, 'name' => 'Description', 'tag' => '2#120'),
- array('id' => 44, 'name' => 'Description writer', 'tag' => '2#122'),
- array('id' => 45, 'name' => 'Image type', 'tag' => '2#130'),
- array('id' => 46, 'name' => 'Image orientation', 'tag' => '2#131'),
- array('id' => 47, 'name' => 'Language identifier', 'tag' => '2#135'),
- array('id' => 48, 'name' => 'AudioType', 'tag' => '2#150'),
- array('id' => 49, 'name' => 'AUdio sampling rate', 'tag' => '2#151'),
- array('id' => 50, 'name' => 'Audio sampling resolution', 'tag' => '2#152'),
- array('id' => 51, 'name' => 'Audio duration', 'tag' => '2#153'),
- array('id' => 52, 'name' => 'Audio outcue', 'tag' => '2#154'),
- array('id' => 53, 'name' => 'Job ID', 'tag' => '2#184'),
- array('id' => 54, 'name' => 'Master document ID', 'tag' => '2#185'),
- array('id' => 55, 'name' => 'Short document ID', 'tag' => '2#186'),
- array('id' => 56, 'name' => 'Unique document ID', 'tag' => '2#187'),
- array('id' => 57, 'name' => 'Owner ID', 'tag' => '2#188'),
- array('id' => 58, 'name' => 'Object preview file format', 'tag' => '2#200'),
- array('id' => 59, 'name' => 'Object preview file version', 'tag' => '2#201'),
- array('id' => 60, 'name' => 'Object preview data', 'tag' => '2#202'),
- array('id' => 61, 'name' => 'Prefs', 'tag' => '2#221'),
- array('id' => 62, 'name' => 'Classify state', 'tag' => '2#225'),
- array('id' => 63, 'name' => 'Similarity index', 'tag' => '2#228'),
- array('id' => 64, 'name' => 'Document notes', 'tag' => '2#230'),
- array('id' => 65, 'name' => 'Document history', 'tag' => '2#231'),
- array('id' => 66, 'name' => 'Exif camera info', 'tag' => '2#232'),
- array('id' => 67, 'name' => 'Catalog sets', 'tag' => '2#255')
- );
-
- if (count($getAll) > 0)
- {
- foreach ($getAll as $tag)
- $this->listTags[$tag['id']] = $tag['tag'];
- }
- }
-
-
- /**
- * Returns the content of an IPTC tag. If $tag is not specified, returns all tags.
- *
- * @param string $tag Name of the IPTC tag presents in $this->listTags
- * @return string
- */
- public function get($tag = null)
- {
- // If you specify a particular tag, it returns information for this tag
- if (!is_null($tag) && !empty($tag) && in_array($tag, $this->listTags))
- {
- $size = getimagesize($this->file, $info);
-
- if (isset($info['APP13'][$tag]))
- {
- $iptc = iptcparse($info['APP13']);
- return $iptc[$tag][0];
- }
- }
- else
- {
- // Otherwise, it returns the complete info
- $size = getimagesize($this->file, $info);
-
- if (isset($info['APP13']))
- {
- return iptcparse($info['APP13']);
- }
- }
- }
-
-
- /**
- * Add an IPTC tag
- *
- * @param string $tag Name of the IPTC tag presents in $this->listTags
- * @param string $value IPTC tag value
- * @param bool $save If save the image with the settings or not
- * @return mixed
- */
- public function add($tag, $value, $save = true)
- {
- // If tag is valid
- if (empty($tag) || empty($value) || !in_array($tag, $this->listTags))
- return false;
-
- $tag = substr($tag, 2);
-
- $datas = $this->_transform_iptc($tag, $value);
-
- if ($save == true)
- $this->save($datas);
- else
- return $datas;
- }
-
- /**
- * Add severals IPTC tags
- *
- * @param array $array List of IPTC tags and values
- * @param bool $save If save the image with the settings or not
- * @return mixed
- */
- public function addMultiple($array, $save = true)
- {
- // If tag is valid
- if (!is_array($array) || count($array) == 0)
- return false;
-
- $iptcdata = null;
-
- foreach ($array as $tag => $string)
- {
- if (in_array($tag, $this->listTags))
- {
- $tag = substr($tag, 2);
- $iptcdata .= $this->_transform_iptc($tag, $string);
- }
- }
-
- if ($save == true)
- $this->save($iptcdata);
- else
- return $iptcdata;
- }
-
-
- /**
- * Save IPTC into image
- *
- * @param string $datas IPTC datas
- * @param string $newImageName New image name
- * @return void
- */
- public function save($datas, $newImageName = '')
- {
- if (!empty($newImageName))
- $imageName = $newImageName;
- else
- $imageName = $this->file;
-
- // Writing datas in the image
- $data_image = iptcembed($datas, $this->file);
-
- $fp = fopen($imageName, "wb");
-
- fwrite($fp, $data_image);
- fclose($fp);
- }
-
-
-
- /**
- * Format the new IPTC text
- *
- * @param string $data IPTC datas
- * @param string $value IPTC tag value
- * @return string
- */
- private function _transform_iptc($data, $value)
- {
- $length = strlen($value);
- $retval = chr(0x1C).chr(2).chr($data);
-
- if ($length < 0x8000)
- {
- $retval .= chr($length >> 8).chr($length& 0xFF);
- }
- else
- {
- $retval .= chr(0x80).chr(0x04).
- chr(($length >> 24)& 0xFF).
- chr(($length >> 16)& 0xFF).
- chr(($length >> 8)& 0xFF).
- chr($length& 0xFF);
- }
-
- return $retval.$value;
- }
- }
-
-
- // -- Examples
- $oIptc = new IptcManager();
-
- // Returns all IPTC tags
- $oIptc->setFile('image_test.jpg')->get();
-
- // Returns Title tag
- $oIptc->setFile('image_test.jpg')->get('2#005');
-
- // Add a tag
- $oIptc->setFile('image_test.jpg')->add('2#025', 'My keywords');
- $oIptc->get();
-
- // Add severals IPTC tags
- $array = array(
- '2#080' => 'ShevAbam',
- '2#101' => 'France'
- );
- $oIptc->setFile('image_test.jpg')->AddMultiple($array);
- $oIptc->get();
- ?>
<?php
/**
* Manipulate IPTC tags
*
* @date 08-20-2010
* @author ShevAbam
*/
class IptcManager
{
public $file = '';
public $listTags = array();
/**
* Constructor
*/
public function __construct()
{
$this->listTags();
}
/**
* Sets the image file
*
* @param string $filename Path of the image file
* @return object
*/
public function setFile($filename)
{
if (!empty($filename) && is_file($filename))
$this->file = $filename;
return $this;
}
/**
* Sets the IPTC tags
*
* @return void
*/
public function listTags()
{
// Most common tags. You can redefine this method by extending the class
$getAll = array(
array('id' => 1, 'name' => 'Object type', 'tag' => '2#003'),
array('id' => 2, 'name' => 'Object attribute', 'tag' => '2#004'),
array('id' => 3, 'name' => 'Title', 'tag' => '2#005'),
array('id' => 4, 'name' => 'Edit status', 'tag' => '2#007'),
array('id' => 5, 'name' => 'Editorial update', 'tag' => '2#008'),
array('id' => 6, 'name' => 'Urgency', 'tag' => '2#010'),
array('id' => 7, 'name' => 'Subject reference', 'tag' => '2#012'),
array('id' => 8, 'name' => 'Category', 'tag' => '2#015'),
array('id' => 9, 'name' => 'Supplemental categories', 'tag' => '2#020'),
array('id' => 10, 'name' => 'Fixture identifier', 'tag' => '2#022'),
array('id' => 11, 'name' => 'Keywords', 'tag' => '2#025'),
array('id' => 12, 'name' => 'Location code', 'tag' => '2#026'),
array('id' => 13, 'name' => 'Location name', 'tag' => '2#027'),
array('id' => 14, 'name' => 'Release date', 'tag' => '2#030'),
array('id' => 15, 'name' => 'Release time', 'tag' => '2#035'),
array('id' => 16, 'name' => 'Expiration date', 'tag' => '2#037'),
array('id' => 17, 'name' => 'Expiration time', 'tag' => '2#038'),
array('id' => 18, 'name' => 'Instructions', 'tag' => '2#040'),
array('id' => 19, 'name' => 'Action advised', 'tag' => '2#042'),
array('id' => 20, 'name' => 'Reference service', 'tag' => '2#045'),
array('id' => 21, 'name' => 'Reference date', 'tag' => '2#047'),
array('id' => 22, 'name' => 'Reference number', 'tag' => '2#050'),
array('id' => 23, 'name' => 'Date created', 'tag' => '2#055'),
array('id' => 24, 'name' => 'Time created', 'tag' => '2#060'),
array('id' => 25, 'name' => 'Digital creation date', 'tag' => '2#062'),
array('id' => 26, 'name' => 'Digital creation time', 'tag' => '2#063'),
array('id' => 27, 'name' => 'Originating program', 'tag' => '2#065'),
array('id' => 28, 'name' => 'Program version', 'tag' => '2#070'),
array('id' => 29, 'name' => 'Object cycle', 'tag' => '2#075'),
array('id' => 30, 'name' => 'Author', 'tag' => '2#080'),
array('id' => 31, 'name' => 'AuthorsPosition', 'tag' => '2#085'),
array('id' => 32, 'name' => 'City', 'tag' => '2#090'),
array('id' => 33, 'name' => 'Sublocation', 'tag' => '2#092'),
array('id' => 34, 'name' => 'State/Province', 'tag' => '2#095'),
array('id' => 35, 'name' => 'Country code', 'tag' => '2#100'),
array('id' => 36, 'name' => 'Country', 'tag' => '2#101'),
array('id' => 37, 'name' => 'Transmission reference', 'tag' => '2#103'),
array('id' => 38, 'name' => 'Headline', 'tag' => '2#105'),
array('id' => 39, 'name' => 'Credit', 'tag' => '2#110'),
array('id' => 40, 'name' => 'Source', 'tag' => '2#115'),
array('id' => 41, 'name' => 'Copyright notice', 'tag' => '2#116'),
array('id' => 42, 'name' => 'Contact Information', 'tag' => '2#118'),
array('id' => 43, 'name' => 'Description', 'tag' => '2#120'),
array('id' => 44, 'name' => 'Description writer', 'tag' => '2#122'),
array('id' => 45, 'name' => 'Image type', 'tag' => '2#130'),
array('id' => 46, 'name' => 'Image orientation', 'tag' => '2#131'),
array('id' => 47, 'name' => 'Language identifier', 'tag' => '2#135'),
array('id' => 48, 'name' => 'AudioType', 'tag' => '2#150'),
array('id' => 49, 'name' => 'AUdio sampling rate', 'tag' => '2#151'),
array('id' => 50, 'name' => 'Audio sampling resolution', 'tag' => '2#152'),
array('id' => 51, 'name' => 'Audio duration', 'tag' => '2#153'),
array('id' => 52, 'name' => 'Audio outcue', 'tag' => '2#154'),
array('id' => 53, 'name' => 'Job ID', 'tag' => '2#184'),
array('id' => 54, 'name' => 'Master document ID', 'tag' => '2#185'),
array('id' => 55, 'name' => 'Short document ID', 'tag' => '2#186'),
array('id' => 56, 'name' => 'Unique document ID', 'tag' => '2#187'),
array('id' => 57, 'name' => 'Owner ID', 'tag' => '2#188'),
array('id' => 58, 'name' => 'Object preview file format', 'tag' => '2#200'),
array('id' => 59, 'name' => 'Object preview file version', 'tag' => '2#201'),
array('id' => 60, 'name' => 'Object preview data', 'tag' => '2#202'),
array('id' => 61, 'name' => 'Prefs', 'tag' => '2#221'),
array('id' => 62, 'name' => 'Classify state', 'tag' => '2#225'),
array('id' => 63, 'name' => 'Similarity index', 'tag' => '2#228'),
array('id' => 64, 'name' => 'Document notes', 'tag' => '2#230'),
array('id' => 65, 'name' => 'Document history', 'tag' => '2#231'),
array('id' => 66, 'name' => 'Exif camera info', 'tag' => '2#232'),
array('id' => 67, 'name' => 'Catalog sets', 'tag' => '2#255')
);
if (count($getAll) > 0)
{
foreach ($getAll as $tag)
$this->listTags[$tag['id']] = $tag['tag'];
}
}
/**
* Returns the content of an IPTC tag. If $tag is not specified, returns all tags.
*
* @param string $tag Name of the IPTC tag presents in $this->listTags
* @return string
*/
public function get($tag = null)
{
// If you specify a particular tag, it returns information for this tag
if (!is_null($tag) && !empty($tag) && in_array($tag, $this->listTags))
{
$size = getimagesize($this->file, $info);
if (isset($info['APP13'][$tag]))
{
$iptc = iptcparse($info['APP13']);
return $iptc[$tag][0];
}
}
else
{
// Otherwise, it returns the complete info
$size = getimagesize($this->file, $info);
if (isset($info['APP13']))
{
return iptcparse($info['APP13']);
}
}
}
/**
* Add an IPTC tag
*
* @param string $tag Name of the IPTC tag presents in $this->listTags
* @param string $value IPTC tag value
* @param bool $save If save the image with the settings or not
* @return mixed
*/
public function add($tag, $value, $save = true)
{
// If tag is valid
if (empty($tag) || empty($value) || !in_array($tag, $this->listTags))
return false;
$tag = substr($tag, 2);
$datas = $this->_transform_iptc($tag, $value);
if ($save == true)
$this->save($datas);
else
return $datas;
}
/**
* Add severals IPTC tags
*
* @param array $array List of IPTC tags and values
* @param bool $save If save the image with the settings or not
* @return mixed
*/
public function addMultiple($array, $save = true)
{
// If tag is valid
if (!is_array($array) || count($array) == 0)
return false;
$iptcdata = null;
foreach ($array as $tag => $string)
{
if (in_array($tag, $this->listTags))
{
$tag = substr($tag, 2);
$iptcdata .= $this->_transform_iptc($tag, $string);
}
}
if ($save == true)
$this->save($iptcdata);
else
return $iptcdata;
}
/**
* Save IPTC into image
*
* @param string $datas IPTC datas
* @param string $newImageName New image name
* @return void
*/
public function save($datas, $newImageName = '')
{
if (!empty($newImageName))
$imageName = $newImageName;
else
$imageName = $this->file;
// Writing datas in the image
$data_image = iptcembed($datas, $this->file);
$fp = fopen($imageName, "wb");
fwrite($fp, $data_image);
fclose($fp);
}
/**
* Format the new IPTC text
*
* @param string $data IPTC datas
* @param string $value IPTC tag value
* @return string
*/
private function _transform_iptc($data, $value)
{
$length = strlen($value);
$retval = chr(0x1C).chr(2).chr($data);
if ($length < 0x8000)
{
$retval .= chr($length >> 8).chr($length& 0xFF);
}
else
{
$retval .= chr(0x80).chr(0x04).
chr(($length >> 24)& 0xFF).
chr(($length >> 16)& 0xFF).
chr(($length >> 8)& 0xFF).
chr($length& 0xFF);
}
return $retval.$value;
}
}
// -- Examples
$oIptc = new IptcManager();
// Returns all IPTC tags
$oIptc->setFile('image_test.jpg')->get();
// Returns Title tag
$oIptc->setFile('image_test.jpg')->get('2#005');
// Add a tag
$oIptc->setFile('image_test.jpg')->add('2#025', 'My keywords');
$oIptc->get();
// Add severals IPTC tags
$array = array(
'2#080' => 'ShevAbam',
'2#101' => 'France'
);
$oIptc->setFile('image_test.jpg')->AddMultiple($array);
$oIptc->get();
?>
Sources du même auteur
Sources de la même categorie
Commentaires et avis
Discussions en rapport avec ce code source dans le forum
Récuperation d'un tag IPTC d'une image avec php [ par dikembe ]
dikembeBonjour à tous je désirerais récupérer les tags IPTC d'une image jpg à l'aide d'un script php.J'ai trouvé ce script sur le net qui assez ludiqu
Image / MySQL / php [ par hazkaal ]
Bonjour !Je bosse sur un site et j'ai un probleme au niveau de laffichage d'images...Je m'explique :L'utilisateur upload une image. Cette image est st
probleme affichage résultat (resultat une image) [ par tarroukt ]
Salut forum,j'ai un probleme qui m'a bloqué, j'ai déniché sur internet un script pour moteur de recherche multi champs, aparament ça ne marche pas , v
Uploader une image sur mon serveur [ par mattand ]
Salut à tous,je suis en train de travailler avec Unity3D, un outil de devellopement de jeux 3D destiné a devenir des webplayer. Dans le cadre de ce pr
Alignement d'une image sur une ligne [ par matthieu3556 ]
Bonjour à tous,J'ai besoin de vos lumières.Je voudrais que sur la ligne ci-dessous l'image s'affiche toujours à la même position avec une tabulation p
parcourir à un image [ par dadoudjerba ]
bjje vous parcourir à un image pour l'inserer dans ma bd , comment je peux la faire avec php?????? djerba qui me donne la force
générer une image svg avec php [ par naej56 ]
BonjourJe cherche partout et je ne trouve pas la solution a mon problème.le code que je teste est le suivant:<?php header("image/svg+xml");
images [ par antza ]
Bonjours à tous!je débute en php et .... Voila je vais résumé mon problème: J'ai un formulaire d'enregistrement qui contient un champ type file et je
CSS MAP et AREA [ par gabs77 ]
Bonjour, Je voudrais savoir si on peut combiner du CSS avec les balises AREA ???En fait, j'ai une image PNG avec un fond transparent que j'affiche en
probleme affichage image dynamique dans dreamweaver 8 [ par slideyard ]
bonjour, je suis débutant et j'essaie de creer un site e commerce pour une petite librairie avec wamp 5 et dreamweaver 8 ( avec l'aide du livre le ca
|
Derniers Blogs
IMAGINE CUP 2012, MAKE A SIGN EN FINALEIMAGINE CUP 2012, MAKE A SIGN EN FINALE par junarnoalg
Voilà qui est fait, la nouvelle est officielle ! L'équipe belge "Make a Sign" va au pays des kangourous défendre son projet dans la catégorie Software Design. http://www.imaginecup.com/CompetitionsContent/Competition/WorldwideFinalists.aspx V...
Cliquez pour lire la suite de l'article par junarnoalg KINECT 1.5 IS OUT !KINECT 1.5 IS OUT ! par Vko
La version 1.5 du Kinect For Microsoft vient tout juste de sortir ! Plein de nouveautés: Tracking de squelette en Near Mode Détection en position assise Détection faciale avec un SDK dédié Documentation et des guideline (enfin) Un out...
Cliquez pour lire la suite de l'article par Vko LES ACTUALITéS DE LA SEMAINE SUR C2I.FR (14 MAI - 20 MAI) LES ACTUALITéS DE LA SEMAINE SUR C2I.FR (14 MAI - 20 MAI) par richardc
Mise à jour des Web API du 14 Mai
Réservez dès maintenant votre journée du 20 juin pour le Windows Azure Dev Camp 2012 à Paris
Mise à jour de Team Foundation Service
MechCommander 2 sur Windows 8
Entity Framework 5 Release Candidate e...
Cliquez pour lire la suite de l'article par richardc REACTIVE EXTENSIONS : CONSOMMER DES SERVICES AVEC RX PARTIE 3, LES PIèGES à éVITERREACTIVE EXTENSIONS : CONSOMMER DES SERVICES AVEC RX PARTIE 3, LES PIèGES à éVITER par Groc
Une mauvaise utilisation de rx lors de l'écriture d'une couche d'accès à des services peut conduire à des cas embarassants avec des erreurs mal gérées, des appels qui ne partent lorsqu'ils le devraient, et même des résultats incorrects . le tout nuis...
Cliquez pour lire la suite de l'article par Groc SHAREPOINT BLOG SITE, PROBLèME D'ARCHIVESSHAREPOINT BLOG SITE, PROBLèME D'ARCHIVES par junarnoalg
Dernièrement, nous avons migré le site
myTIC
vers un nouveau serveur SharePoint 2010. Dans les contenus que nous vouloins récupérer, nous avions un certain nombre de blogs.
Nous avons utilisé les commandes Power...
Cliquez pour lire la suite de l'article par junarnoalg
Logiciels
sDEVIS-FACTURES vlPRO (8.1.0.3)SDEVIS-FACTURES VLPRO (8.1.0.3)sDEVIS-FACTURES vlPRO a été mis au point pour les particuliers, créateurs, entrepreneurs, artisa... Cliquez pour télécharger sDEVIS-FACTURES vlPRO 974 Application Server (12.2.4.6)974 APPLICATION SERVER (12.2.4.6)Développez de puissantes applications dans un environnement de 'cloud computing', clusterisé, séc... Cliquez pour télécharger 974 Application Server vPicture (1.4.2.1)VPICTURE (1.4.2.1)Avec vPicture, hébergez vos images facilement et rapidement.
vPicture est un utilitaire simple, ... Cliquez pour télécharger vPicture Easy-Planning (2.2.1.6)EASY-PLANNING (2.2.1.6)Easy-Planning permet de créer des plannings sous la représentation de diagrammes et est adapté au... Cliquez pour télécharger Easy-Planning COM-BACKUP (2.0)COM-BACKUP (2.0)
COM-BACKUP est un logiciel de sauvegarde qui permet de planifier les sauvegardes de vos dossiers ...
Cliquez pour télécharger COM-BACKUP
|