<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>php image processing on Document Processing REST APIs | GroupDocs Cloud</title>
    <link>https://blog-qa.groupdocs.cloud/fr/tag/php-image-processing/</link>
    <description>Recent content in php image processing on Document Processing REST APIs | GroupDocs Cloud</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>fr</language>
    <lastBuildDate>Fri, 19 Jun 2026 11:57:41 +0000</lastBuildDate><atom:link href="https://blog-qa.groupdocs.cloud/fr/tag/php-image-processing/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Conversion de SVG en JPG sans outils externes en PHP</title>
      <link>https://blog-qa.groupdocs.cloud/fr/conversion/svg-to-jpg-conversion-without-external-tools-in-php/</link>
      <pubDate>Fri, 19 Jun 2026 11:57:41 +0000</pubDate>
      
      <guid>https://blog-qa.groupdocs.cloud/fr/conversion/svg-to-jpg-conversion-without-external-tools-in-php/</guid>
      <description>Apprenez comment convertir SVG en JPG en PHP sans outils externes en utilisant le SDK GroupDocs.Conversion Cloud. Guide étape par étape, exemple de code et conseils de performance.</description>
      <content:encoded><![CDATA[<p>La conversion des fichiers <a href="https://docs.fileformat.com/page-description-language/svg/">SVG</a> en images <a href="https://docs.fileformat.com/image/jpg/">JPG</a> est une exigence fréquente pour les applications web qui ont besoin de vignettes raster ou de graphiques adaptés aux e‑mails. Le <a href="https://products.groupdocs.cloud/conversion/php/">GroupDocs.Conversion Cloud SDK for PHP</a> fournit une solution pure en <a href="https://docs.fileformat.com/programming/php/">PHP</a> qui élimine le besoin d’ImageMagick ou d’autres binaires externes. Ce guide vous accompagne à travers une implémentation complète, met en évidence les principales fonctionnalités du SDK et montre comment optimiser les performances pour de gros actifs SVG.</p>
<h2 id="étapes-pour-effectuer-la-conversion-svg-en-jpg-en-php">Étapes pour effectuer la conversion SVG en JPG en PHP</h2>
<ol>
<li><strong>Initialiser le client de conversion</strong> - Créez une instance du client API avec vos identifiants.
<ul>
<li>Cette étape connecte votre backend PHP au service GroupDocs.Conversion.</li>
<li>Consultez la <a href="https://reference.groupdocs.cloud/conversion/">référence API</a> pour les détails de la classe.</li>
</ul>
</li>
<li><strong>Télécharger le fichier source SVG</strong> - Transférez le fichier SVG vers le point de terminaison de stockage cloud.
<ul>
<li>Le SDK accepte un chemin local, un flux ou du code SVG brut.</li>
</ul>
</li>
<li><strong>Définir les options de conversion</strong> - Définissez le format cible sur JPG et spécifiez les paramètres de mise à l&rsquo;échelle tels que la largeur, la hauteur ou le DPI.
<ul>
<li>La mise à l&rsquo;échelle est essentielle lorsque vous avez besoin de vignettes ou d&rsquo;impressions haute résolution.</li>
</ul>
</li>
<li><strong>Exécuter la requête de conversion</strong> - Appelez la méthode de conversion et attendez que le travail soit terminé.
<ul>
<li>Le service renvoie un ID de travail que vous pouvez interroger pour connaître le statut.</li>
</ul>
</li>
<li><strong>Télécharger le JPG résultant</strong> - Récupérez le fichier de sortie et stockez-le localement ou servez‑le directement au client.</li>
</ol>
<h2 id="transformation-de-fichiers-svg-en-format-jpg---exemple-complet-de-code">Transformation de fichiers SVG en format JPG - Exemple complet de code</h2>
<p>L&rsquo;extrait suivant montre une conversion complète de bout en bout à l&rsquo;aide du SDK. Remplacez les valeurs d&rsquo;espace réservé par vos informations d&rsquo;identification réelles et les chemins de fichiers.</p>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-php" data-lang="php"><span style="display:flex;"><span><span style="color:#f92672">&lt;?</span><span style="color:#a6e22e">php</span>
</span></span><span style="display:flex;"><span><span style="color:#66d9ef">require</span> <span style="color:#e6db74">&#39;vendor/autoload.php&#39;</span>;
</span></span><span style="display:flex;"><span>
</span></span><span style="display:flex;"><span><span style="color:#66d9ef">use</span> <span style="color:#a6e22e">GroupDocs\Conversion\Cloud\Api\ConversionApi</span>;
</span></span><span style="display:flex;"><span><span style="color:#66d9ef">use</span> <span style="color:#a6e22e">GroupDocs\Conversion\Cloud\Model\ConvertSettings</span>;
</span></span><span style="display:flex;"><span><span style="color:#66d9ef">use</span> <span style="color:#a6e22e">GroupDocs\Conversion\Cloud\Model\ConversionResult</span>;
</span></span><span style="display:flex;"><span>
</span></span><span style="display:flex;"><span><span style="color:#75715e">// 1. Create API client
</span></span></span><span style="display:flex;"><span><span style="color:#75715e"></span>$clientId <span style="color:#f92672">=</span> <span style="color:#e6db74">&#39;YOUR_CLIENT_ID&#39;</span>;
</span></span><span style="display:flex;"><span>$clientSecret <span style="color:#f92672">=</span> <span style="color:#e6db74">&#39;YOUR_CLIENT_SECRET&#39;</span>;
</span></span><span style="display:flex;"><span>$apiInstance <span style="color:#f92672">=</span> <span style="color:#66d9ef">new</span> <span style="color:#a6e22e">ConversionApi</span>($clientId, $clientSecret);
</span></span><span style="display:flex;"><span>
</span></span><span style="display:flex;"><span><span style="color:#75715e">// 2. Upload SVG file (local path example)
</span></span></span><span style="display:flex;"><span><span style="color:#75715e"></span>$sourceFilePath <span style="color:#f92672">=</span> <span style="color:#66d9ef">__DIR__</span> <span style="color:#f92672">.</span> <span style="color:#e6db74">&#39;/example.svg&#39;</span>;
</span></span><span style="display:flex;"><span>$uploadResult <span style="color:#f92672">=</span> $apiInstance<span style="color:#f92672">-&gt;</span><span style="color:#a6e22e">uploadFile</span>($sourceFilePath, <span style="color:#e6db74">&#39;example.svg&#39;</span>);
</span></span><span style="display:flex;"><span>
</span></span><span style="display:flex;"><span><span style="color:#75715e">// 3. Configure conversion settings
</span></span></span><span style="display:flex;"><span><span style="color:#75715e"></span>$settings <span style="color:#f92672">=</span> <span style="color:#66d9ef">new</span> <span style="color:#a6e22e">ConvertSettings</span>();
</span></span><span style="display:flex;"><span>$settings<span style="color:#f92672">-&gt;</span><span style="color:#a6e22e">setFilePath</span>(<span style="color:#e6db74">&#39;example.svg&#39;</span>);          <span style="color:#75715e">// source file in cloud storage
</span></span></span><span style="display:flex;"><span><span style="color:#75715e"></span>$settings<span style="color:#f92672">-&gt;</span><span style="color:#a6e22e">setOutputFormat</span>(<span style="color:#e6db74">&#39;JPG&#39;</span>);              <span style="color:#75715e">// target format
</span></span></span><span style="display:flex;"><span><span style="color:#75715e"></span>$settings<span style="color:#f92672">-&gt;</span><span style="color:#a6e22e">setWidth</span>(<span style="color:#ae81ff">800</span>);                       <span style="color:#75715e">// optional scaling width
</span></span></span><span style="display:flex;"><span><span style="color:#75715e"></span>$settings<span style="color:#f92672">-&gt;</span><span style="color:#a6e22e">setHeight</span>(<span style="color:#ae81ff">600</span>);                      <span style="color:#75715e">// optional scaling height
</span></span></span><span style="display:flex;"><span><span style="color:#75715e"></span>$settings<span style="color:#f92672">-&gt;</span><span style="color:#a6e22e">setDpi</span>(<span style="color:#ae81ff">300</span>);                         <span style="color:#75715e">// optional DPI for quality
</span></span></span><span style="display:flex;"><span><span style="color:#75715e"></span>
</span></span><span style="display:flex;"><span><span style="color:#75715e">// 4. Perform conversion
</span></span></span><span style="display:flex;"><span><span style="color:#75715e"></span><span style="color:#e6db74">/** @var ConversionResult $result */</span>
</span></span><span style="display:flex;"><span>$result <span style="color:#f92672">=</span> $apiInstance<span style="color:#f92672">-&gt;</span><span style="color:#a6e22e">convert</span>($settings);
</span></span><span style="display:flex;"><span>
</span></span><span style="display:flex;"><span><span style="color:#75715e">// 5. Download the JPG file
</span></span></span><span style="display:flex;"><span><span style="color:#75715e"></span>$downloadPath <span style="color:#f92672">=</span> <span style="color:#66d9ef">__DIR__</span> <span style="color:#f92672">.</span> <span style="color:#e6db74">&#39;/example_converted.jpg&#39;</span>;
</span></span><span style="display:flex;"><span><span style="color:#a6e22e">file_put_contents</span>($downloadPath, $result<span style="color:#f92672">-&gt;</span><span style="color:#a6e22e">getFileContent</span>());
</span></span><span style="display:flex;"><span>
</span></span><span style="display:flex;"><span><span style="color:#66d9ef">echo</span> <span style="color:#e6db74">&#34;Conversion completed. JPG saved to </span><span style="color:#e6db74">{</span>$downloadPath<span style="color:#e6db74">}</span><span style="color:#ae81ff">\n</span><span style="color:#e6db74">&#34;</span>;
</span></span><span style="display:flex;"><span><span style="color:#75715e">?&gt;</span><span style="color:#960050;background-color:#1e0010">
</span></span></span></code></pre></div><blockquote>
<p><strong>Note :</strong> Cet exemple de code montre la fonctionnalité principale. Avant de l&rsquo;utiliser dans votre projet, assurez‑vous de mettre à jour les chemins de fichiers (<code>example.svg</code>, <code>example_converted.jpg</code>), vérifiez que toutes les dépendances requises sont correctement installées et testez soigneusement dans votre environnement de développement. Si vous rencontrez des problèmes, veuillez consulter la <a href="https://docs.groupdocs.cloud/conversion/">documentation officielle</a> ou contacter l&rsquo;<a href="https://forum.groupdocs.cloud/c/conversion/11">équipe de support</a> pour obtenir de l&rsquo;aide.</p>
</blockquote>
<h2 id="transformation-distante-de-svg-en-jpg-avec-curl">Transformation distante de SVG en JPG avec cURL</h2>
<p>Si vous préférez une approche purement REST, la même conversion peut être effectuée avec des commandes cURL. Remplacez les espaces réservés par vos informations d&rsquo;identification réelles.</p>
<ol>
<li><strong>Authentifier et obtenir le jeton d&rsquo;accès</strong></li>
</ol>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span>curl -X POST <span style="color:#e6db74">&#34;https://api.groupdocs.cloud/v1.0/auth/token&#34;</span> <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>        -H <span style="color:#e6db74">&#34;Content-Type: application/json&#34;</span> <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>        -d <span style="color:#e6db74">&#39;{&#34;client_id&#34;:&#34;YOUR_CLIENT_ID&#34;,&#34;client_secret&#34;:&#34;YOUR_CLIENT_SECRET&#34;}&#39;</span>
</span></span></code></pre></div><ol start="2">
<li><strong>Télécharger le fichier SVG source</strong></li>
</ol>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span>curl -X POST <span style="color:#e6db74">&#34;https://api.groupdocs.cloud/v1.0/storage/upload&#34;</span> <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>        -H <span style="color:#e6db74">&#34;Authorization: Bearer YOUR_ACCESS_TOKEN&#34;</span> <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>        -F <span style="color:#e6db74">&#34;file=@/path/to/example.svg&#34;</span>
</span></span></code></pre></div><ol start="3">
<li><strong>Exécuter la conversion</strong></li>
</ol>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span>curl -X POST <span style="color:#e6db74">&#34;https://api.groupdocs.cloud/v1.0/conversion/convert&#34;</span> <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>     -H <span style="color:#e6db74">&#34;Authorization: Bearer YOUR_ACCESS_TOKEN&#34;</span> <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>     -H <span style="color:#e6db74">&#34;Content-Type: application/json&#34;</span> <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>     -d <span style="color:#e6db74">&#39;{
</span></span></span><span style="display:flex;"><span><span style="color:#e6db74">           &#34;filePath&#34;:&#34;example.svg&#34;,
</span></span></span><span style="display:flex;"><span><span style="color:#e6db74">           &#34;outputFormat&#34;:&#34;JPG&#34;,
</span></span></span><span style="display:flex;"><span><span style="color:#e6db74">           &#34;width&#34;:800,
</span></span></span><span style="display:flex;"><span><span style="color:#e6db74">           &#34;height&#34;:600,
</span></span></span><span style="display:flex;"><span><span style="color:#e6db74">           &#34;dpi&#34;:300
</span></span></span><span style="display:flex;"><span><span style="color:#e6db74">         }&#39;</span>
</span></span></code></pre></div><ol start="4">
<li><strong>Télécharger le JPG de sortie</strong></li>
</ol>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span>curl -X GET <span style="color:#e6db74">&#34;https://api.groupdocs.cloud/v1.0/storage/download?path=example_converted.jpg&#34;</span> <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>     -H <span style="color:#e6db74">&#34;Authorization: Bearer YOUR_ACCESS_TOKEN&#34;</span> <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>     -o example_converted.jpg
</span></span></code></pre></div><p>Pour plus de détails, consultez la <a href="https://reference.groupdocs.cloud/conversion/">documentation officielle de l&rsquo;API</a>.</p>
<h2 id="installation-et-configuration-en-php">Installation et configuration en PHP</h2>
<ol>
<li><strong>Installez le SDK via Composer</strong>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span>composer require groupdocs-conversion-cloud
</span></span></code></pre></div></li>
<li><strong>Téléchargez la dernière version</strong> (facultatif) depuis le <a href="https://github.com/groupdocs-conversion-cloud/groupdocs-conversion-cloud-php">dépôt GitHub</a>.</li>
<li><strong>Configurez vos informations d&rsquo;identification</strong> - stockez <code>client_id</code> et <code>client_secret</code> en toute sécurité, par exemple dans des variables d&rsquo;environnement ou un fichier <a href="https://docs.fileformat.com/programming/config/">config</a> protégé.</li>
<li><strong>Vérifiez l&rsquo;installation</strong> en exécutant une simple commande <code>php -r &quot;echo 'SDK installed';&quot;</code> .</li>
</ol>
<h2 id="conversion-svg-en-jpg-sans-outils-externes-en-php-avec-groupdocsconversion">Conversion SVG en JPG sans outils externes en PHP avec GroupDocs.Conversion</h2>
<p>Le SDK effectue tout le rendu côté serveur, vous n’avez donc jamais besoin d’installer ImageMagick, librsvg ou toute autre bibliothèque d’images native sur votre hôte. Il analyse le SVG <a href="https://docs.fileformat.com/web/xml/">XML</a>, rasterise les données vectorielles et génère un JPG de haute qualité en utilisant son propre moteur de rendu. Cela élimine les dépendances binaires spécifiques à la plateforme et simplifie le déploiement sur un hébergement partagé ou des environnements conteneurisés.</p>
<h2 id="fonctionnalités-de-groupdocsconversion-importantes-pour-cette-tâche">Fonctionnalités de GroupDocs.Conversion importantes pour cette tâche</h2>
<ul>
<li><strong>Native SVG Parsing</strong> - Prise en charge complète des dégradés, des motifs et des éléments de texte.</li>
<li><strong>Flexible Scaling</strong> - Définissez une largeur, une hauteur ou un DPI explicites pour contrôler la taille et la qualité de la sortie.</li>
<li><strong>Cloud‑Based Processing</strong> - Décharge la rasterisation gourmande en CPU vers les serveurs GroupDocs, idéal pour les charges de travail backend.</li>
<li><strong>Batch Conversion</strong> - Convertissez plusieurs fichiers SVG en un seul appel d&rsquo;API, utile pour la génération en masse de vignettes.</li>
</ul>
<h2 id="configuration-des-options-de-conversion-de-svg-en-jpg">Configuration des options de conversion de SVG en JPG</h2>
<p>L&rsquo;objet <code>ConvertSettings</code> vous permet d&rsquo;ajuster finement la sortie :</p>
<table>
<thead>
<tr>
<th>Option</th>
<th>Description</th>
<th>Valeur d&rsquo;exemple</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>outputFormat</code></td>
<td>Format d&rsquo;image cible (doit être <strong>JPG</strong>)</td>
<td><code>&quot;JPG&quot;</code></td>
</tr>
<tr>
<td><code>width</code> / <code>height</code></td>
<td>Dimensions en pixels souhaitées ; conserve le ratio d&rsquo;aspect si un seul est défini</td>
<td><code>800</code> / <code>600</code></td>
</tr>
<tr>
<td><code>dpi</code></td>
<td>Points par pouce pour une sortie de qualité impression</td>
<td><code>300</code></td>
</tr>
<tr>
<td><code>quality</code></td>
<td>Niveau de compression <a href="https://docs.fileformat.com/image/jpeg/">JPEG</a> (0‑100)</td>
<td><code>90</code></td>
</tr>
</tbody>
</table>
<p>Ajustez ces paramètres en fonction de votre cas d&rsquo;utilisation : les miniatures Web nécessitent généralement une résolution DPI plus basse, tandis que les éléments destinés à l&rsquo;impression bénéficient d&rsquo;une résolution DPI plus élevée.</p>
<h2 id="optimisation-des-performances-pour-la-conversion-svg-en-jpg">Optimisation des performances pour la conversion SVG en JPG</h2>
<p>Voici un benchmark rapide comparant le temps de conversion et l&rsquo;utilisation de la mémoire pour différentes tailles de SVG. Les tests ont été exécutés sur une instance cloud standard en utilisant le SDK.</p>
<table>
<thead>
<tr>
<th>Taille SVG (KB)</th>
<th>Largeur x Hauteur (px)</th>
<th>Temps de conversion (ms)</th>
<th>Mémoire maximale (MB)</th>
</tr>
</thead>
<tbody>
<tr>
<td>50</td>
<td>400 x 300</td>
<td>120</td>
<td>45</td>
</tr>
<tr>
<td>200</td>
<td>800 x 600</td>
<td>210</td>
<td>78</td>
</tr>
<tr>
<td>800</td>
<td>1600 x 1200</td>
<td>480</td>
<td>150</td>
</tr>
</tbody>
</table>
<p><strong>Conseils pour un traitement plus rapide</strong></p>
<ul>
<li>Réduisez la complexité des SVG (supprimez les groupes inutilisés, simplifiez les chemins).</li>
<li>Utilisez une résolution DPI plus basse pour les images uniquement destinées au web.</li>
<li>Mettez en cache les JPG convertis lorsque le même SVG est demandé à plusieurs reprises.</li>
</ul>
<h2 id="meilleures-pratiques-pour-la-conversion-svg-en-jpg-en-php">Meilleures pratiques pour la conversion SVG en JPG en PHP</h2>
<ul>
<li><strong>Valider l’entrée</strong> - Assurez‑vous que le fichier téléchargé est un SVG bien formé avant de l’envoyer à l’API.</li>
<li><strong>Gérer les erreurs de façon élégante</strong> - Capturez les exceptions du SDK et renvoyez des codes d’état HTTP significatifs.</li>
<li><strong>Utiliser des tâches asynchrones</strong> pour les gros fichiers afin d’éviter les dépassements de délai de requête.</li>
<li><strong>Stocker les résultats en toute sécurité</strong> - Enregistrez le JPG généré dans un bucket de stockage protégé s’il contient des graphiques sensibles.</li>
<li><strong>Surveiller l’utilisation</strong> - Surveillez les quotas d’API et la latence via le tableau de bord GroupDocs.</li>
</ul>
<h2 id="conclusion">Conclusion</h2>
<p>Convertir SVG en JPG en PHP est simple lorsque vous exploitez le <a href="https://products.groupdocs.cloud/conversion/php/">GroupDocs.Conversion Cloud SDK for PHP</a>. Le SDK élimine le besoin d&rsquo;outils externes, offre des options de mise à l&rsquo;échelle granulaire et s&rsquo;adapte sans effort aux environnements backend. Pour les déploiements en production, achetez une licence via la <a href="https://products.groupdocs.cloud/conversion/php/">page de tarification</a> et obtenez une licence temporaire pour les tests sur la <a href="https://purchase.groupdocs.cloud/temporary-license/">page de licence temporaire</a>. Avec le code et les recommandations de bonnes pratiques présentées dans cet article, vous pouvez intégrer dès aujourd&rsquo;hui une conversion SVG en JPG de haute qualité dans n&rsquo;importe quelle application PHP.</p>
<h2 id="faq">FAQ</h2>
<p><strong>Comment convertir un SVG en JPG en PHP sans installer ImageMagick ?</strong><br>
Utilisez le GroupDocs.Conversion Cloud SDK for PHP, qui effectue la conversion côté serveur via une API REST, éliminant ainsi le besoin de binaires locaux.</p>
<p><strong>Puis-je contrôler la taille de sortie lors de la conversion de SVG en JPG ?</strong><br>
Oui, les paramètres de conversion du SDK vous permettent de spécifier la largeur, la hauteur et le DPI, vous offrant un contrôle total sur le redimensionnement et la qualité de l&rsquo;image.</p>
<p><strong>Le SDK convient-il aux services backend ?</strong><br>
Absolument. L&rsquo;API basée sur le cloud fonctionne via HTTPS, ce qui la rend idéale pour l&rsquo;intégration backend, comme le montre l&rsquo;exemple cURL.</p>
<p><strong>Et si mon SVG utilise des fonctionnalités non prises en charge par le SDK ?</strong><br>
Le SDK couvre la majorité des spécifications SVG. Pour les éléments non pris en charge, simplifiez le SVG ou prétraitez‑le avant la conversion. Consultez la <a href="https://docs.groupdocs.cloud/conversion/">documentation officielle</a> pour plus de détails.</p>
<h2 id="en-savoir-plus">En savoir plus</h2>
<ul>
<li><a href="https://blog.groupdocs.cloud/fr/conversion/ods-to-xlsx-conversion-example-in-php/">Exemple de conversion ODS vers XLSX en PHP</a></li>
<li><a href="https://blog.groupdocs.cloud/fr/conversion/convert-svg-to-jpg-in-csharp/">Convertir SVG en JPG en C# .NET - Convertisseur de graphiques vectoriels évolutifs</a></li>
<li><a href="https://blog.groupdocs.cloud/fr/conversion/convert-jpg-to-pdf-with-nodejs/">Convertir JPG en PDF avec Node.js | Conversion d&rsquo;image en PDF</a></li>
</ul>
]]></content:encoded>
    </item>
    
  </channel>
</rss>
