> 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/ko/knowledge-base/135-the-text-in-my-eps-or-pdf-image-file-is-missing-when-i-uploaded-my-manuscript-to-a-journal-s-sub.md).

# 저널 제출 포털에 원고를 업로드했더니 EPS 또는 PDF 이미지 파일의 텍스트가 사라졌지만, Overleaf에서는 정상적으로 보였습니다

제출 포털의 기술 지원팀의 피드백에 따르면, 이는 업로드된 EPS/PDF 파일에 여러 레이어가 있기 때문에 발생한 것으로 보입니다. (TIFF 및 PNG 파일에서도 이런 일이 발생할 수 있습니다.)

이러한 문제는 보통 원고 파일과 함께 제출하기 전에 EPS/PDF 파일을 평면화하여 피할 수 있습니다. 이렇게 하면 이미지의 모든 레이어가 알파 채널이 없는 하나의 단일 레이어로 병합됩니다.

Photoshop 및 [GIMP](https://www.gimp.org/)와 일부 다른 이미지 편집 프로그램에는 이러한 "이미지 평면화" 또는 "레이어 병합" 기능이 있습니다. 다음과 같은 명령줄 명령도 사용할 수 있습니다. [ImageMagick](http://www.imagemagick.org/Usage/layers/#flatten)또는 `epstopdf` 및 `pdftops` 를 사용하여 왕복 변환을 수행할 수 있습니다. 예를 들어 "fig1.pdf"라는 PDF 이미지가 있다면 다음을 실행하세요:

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

를 사용해 .eps 파일을 만든 다음,

```
epstopdf fig1.eps
```

를 사용해 평면화된 .pdf 파일을 다시 얻습니다.

이 단계를 시도한 후에도 이미지에 문제가 계속 보이면, [저희에게 연락해 주세요](https://www.overleaf.com/contact) 그러면 도움을 드릴 수 있는지 확인해 보겠습니다.


---

# 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/ko/knowledge-base/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.
