> For the complete documentation index, see [llms.txt](https://overleaf-pro.ayaka.space/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://overleaf-pro.ayaka.space/latex/fr/base-de-connaissances/135-the-text-in-my-eps-or-pdf-image-file-is-missing-when-i-uploaded-my-manuscript-to-a-journal-s-sub.md).

# Le texte de mon fichier image EPS ou PDF a disparu lorsque j’ai téléversé mon manuscrit sur le portail de soumission d’un journal, mais il s’affichait parfaitement sur Overleaf

D’après les retours du support technique du portail de soumission, cela est probablement dû à plusieurs calques dans le fichier EPS/PDF téléchargé. (Cela peut également se produire avec les fichiers TIFF et PNG.)

De tels problèmes peuvent généralement être évités en aplatissant les fichiers EPS/PDF avant de les soumettre avec le fichier du manuscrit. Cela fusionnera tous les calques de l’image en un seul calque sans canal alpha.

Photoshop et [GIMP](https://www.gimp.org/), ainsi que certains autres programmes de manipulation d’images, contiennent des fonctions telles que « Flatten image » ou « Merge layer ». Vous pouvez également utiliser des commandes en ligne de commande, telles que [ImageMagick](http://www.imagemagick.org/Usage/layers/#flatten), ou utiliser `epstopdf` et `pdftops` pour effectuer une conversion aller-retour. Par exemple, pour une image PDF appelée « fig1.pdf », exécutez :

```
pdftops -eps fig1.pdf
```

pour obtenir un .eps, puis

```
epstopdf fig1.eps
```

pour récupérer un .pdf aplati.

Si vous voyez encore des problèmes avec vos images après avoir essayé ces étapes, veuillez [nous contacter](https://www.overleaf.com/contact) et nous verrons si nous pouvons vous aider.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://overleaf-pro.ayaka.space/latex/fr/base-de-connaissances/135-the-text-in-my-eps-or-pdf-image-file-is-missing-when-i-uploaded-my-manuscript-to-a-journal-s-sub.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
