Initializing... drag & drop files here
Supports: GIF
GIF (CompuServe, 1987) is the format the web inherited for short loops, simple icons, and stickers. The PDF specification, however, has no native still-frame-vs-animation distinction for raster GIFs — animated GIFs are flattened to their first frame on import (Adobe Acrobat, Apple Preview, and every browser-based PDF viewer behave this way). Merging GIFs to PDF is the right move when you need the document, not the motion: a printable, paginated, citation-stable copy that opens identically on every device and every PDF reader.
| Behavior | Result in xconvert PDF | Adobe Acrobat behavior | Browser PDF viewers |
|---|---|---|---|
| Animated GIF playback | Flattened to first frame, no motion | Same — flattens on import | Same — only first frame renders |
| 1-bit transparency | Preserved when "Unchanged"; flattened to white when "Removed" | Same | Same |
| Lossless palette | Re-encoded via Image Quality % (default 75) | Acrobat re-encodes by default | n/a |
| Looping | Lost — PDF has no loop semantics | Lost | Lost |
| Frame count | Other frames discarded | Discarded | Discarded |
If preserving motion matters more than a single document, consider GIF to MP4 instead — most PDF viewers will not autoplay even an embedded video, but a separate MP4 plays everywhere.
| Use case | Page layout | Paper size | Placement | Margin | Quality % | Compression Type |
|---|---|---|---|---|---|---|
| Animation storyboard | Landscape | A4 or Letter | Contained | Narrow (0.5") | 90 | Prepress |
| UI motion spec | Portrait | Letter | Contained | Normal (1") | 75 | Default |
| Meme archive | Portrait | A4 | Cover | No margin | 60 | Screen (Best) |
| Print catalog | Portrait | Letter | Contained | Moderate | 95 | Printer |
| Email-sized review | Portrait | A4 | Contained | Narrow | 50 | Screen (Best) |
Compression Type maps to Ghostscript's PDF presets: Screen targets 72 DPI for on-screen viewing (smallest file), Ebook 150 DPI, Default 150 DPI balanced, Prepress 300 DPI with color preservation, Printer 300 DPI optimized for office printing.
No. The PDF format has no native support for animated raster images, so xconvert (and every other PDF tool — Smallpdf, ILovePDF, Adobe Acrobat) flattens animated GIFs to a single still frame on import. The output PDF shows the GIF's first frame on its page; subsequent frames are discarded. If you need motion, export the GIF as MP4 or H.264 video and host it externally — Acrobat's Rich Media tool can then link to it, but most browser-based PDF viewers won't autoplay it anyway.
The first frame. The GIF Image Descriptor processed first becomes the static image on the PDF page. If your GIF's first frame is a black or transparent intro, the PDF page will be black/transparent — re-export the GIF starting from the keyframe you want to preserve, then merge.
Open Paper size, switch from A4 to "Original" (the dropdown calls it "Same as image size"). Each PDF page then matches the source GIF's pixel dimensions exactly — useful for mixed-size storyboard frames and for archiving without resampling.
Yes, when Image Transparency is set to "Unchanged" (the default). GIFs use 1-bit transparency (a pixel is either fully opaque or fully transparent — no anti-aliased edges), so transparent regions show whatever sits behind the page in the PDF viewer. Switch to "Removed" to bake in a white background, which is what most printers and PDF/A archival workflows expect.
GIF uses lossless LZW compression on a 256-color palette, which is inefficient compared to JPEG/DCT compression that PDFs apply by default (controlled by Image Quality %, default 75). A 4 MB animated GIF often shrinks to under 200 KB in the PDF because (a) only one frame is kept, and (b) the palette image is recompressed as JPEG. Raise Quality to 95 if you see banding on smooth gradients.
Yes — xconvert processes the batch in a single browser session with no per-file count cap. Practical limits depend on total memory: 50 small icon GIFs (50 KB each) merge instantly; 50 high-resolution screen-recording GIFs (5 MB each) may take a minute on mid-range hardware. For very large batches, switch "Combine?" to "Individual PDFs" and merge the resulting PDFs in Merge PDF afterward.
Single-file conversion produces one PDF per GIF. Merging combines multiple GIFs into one paginated PDF (page 1 = GIF 1, page 2 = GIF 2, etc.) with a shared paper size, layout, and margin. If you need the inverse — splitting a multi-frame GIF into separate images — extract frames first with a GIF tool, then run Merge image to PDF.
Yes — "Cover" scales the GIF to fill the entire page (including margins), which crops whichever dimension exceeds the paper aspect ratio. A square GIF on a Portrait A4 page will lose top and bottom edges. Use "Contained" to keep the full GIF visible with letterboxing, or pick "Original" Paper size to match the GIF's own aspect ratio and avoid cropping entirely.
xconvert outputs standard PDF (1.7 baseline). PDF/A is a stricter ISO 19005 archival profile that forbids embedded video, JavaScript, and external font references — a flattened, single-frame GIF inside a regular PDF already complies in practice with PDF/A-1b. If your downstream system requires the explicit /A conformance flag, post-process with a dedicated PDF/A converter (Acrobat Pro, Ghostscript -dPDFA).