claude-code - 💡(How to fix) Fix [FEATURE] inline image rendering in remote session responses (iOS app)

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…

Root Cause

When using the Claude Code iOS app to drive a remote session on a Linux host, there’s no way to get an image generated on the host to render inline in the assistant’s message body. The picture is the primary content; making the user tap to open it defeats the purpose. What I tried, all of which render as literal text or a tap-to-open card: • <img src="data:image/svg+xml;base64,..."> → literal text • → literal text / broken • Raw <svg>...</svg> pasted in response → literal text • SendUserFile with .svg → file card under the message, not inline Use case: my project generates SVG diagrams (architecture, flow charts) and dashboard charts (allocation pie, P&L line, heatmaps). When I ask the assistant on iOS to “show me the dashboard” or “explain the async-job-flow diagram,” the assistant has to describe the picture in words because the image won’t render. The <claude.ai> chat app renders artifacts inline beautifully — Claude Code on iOS does not. Asks (any one of these would solve it): 1. SendUserFile with an image mime renders the image inline above the message instead of as a generic file card. 2. A new tool (e.g. SendInlineImage) or an artifact-style fenced block (svg-render / image) the iOS client knows to render. 3. Markdown image syntax with data: URIs honored in the iOS renderer. 4. Documented confirmation that PNG (vs SVG) renders inline, if that’s already true today. Environment: Claude Code iOS app → remote session on Linux (Ubuntu 26.04), Claude Opus 4.7.

RAW_BUFFERClick to expand / collapse

Preflight Checklist

  • I have searched existing requests and this feature hasn't been requested yet
  • This is a single feature request (not multiple features)

Problem Statement

When using the Claude Code iOS app to drive a remote session on a Linux host, there’s no way to get an image generated on the host to render inline in the assistant’s message body. The picture is the primary content; making the user tap to open it defeats the purpose. What I tried, all of which render as literal text or a tap-to-open card: • <img src="data:image/svg+xml;base64,..."> → literal text • → literal text / broken • Raw <svg>...</svg> pasted in response → literal text • SendUserFile with .svg → file card under the message, not inline Use case: my project generates SVG diagrams (architecture, flow charts) and dashboard charts (allocation pie, P&L line, heatmaps). When I ask the assistant on iOS to “show me the dashboard” or “explain the async-job-flow diagram,” the assistant has to describe the picture in words because the image won’t render. The <claude.ai> chat app renders artifacts inline beautifully — Claude Code on iOS does not. Asks (any one of these would solve it): 1. SendUserFile with an image mime renders the image inline above the message instead of as a generic file card. 2. A new tool (e.g. SendInlineImage) or an artifact-style fenced block (svg-render / image) the iOS client knows to render. 3. Markdown image syntax with data: URIs honored in the iOS renderer. 4. Documented confirmation that PNG (vs SVG) renders inline, if that’s already true today. Environment: Claude Code iOS app → remote session on Linux (Ubuntu 26.04), Claude Opus 4.7.

Proposed Solution

Since the images are sent (SVG) as text, the render layer in iOS should be able to handle them and display them. It already handles them by clicking on them and it shows the rendered image. This removes the click and displays directly into the body.

Alternative Solutions

What I tried, all of which render as literal text or a tap-to-open card: • <img src="data:image/svg+xml;base64,..."> → literal text • → literal text / broken • Raw <svg>...</svg> pasted in response → literal text • SendUserFile with .svg → file card under the message, not inline

Priority

Medium - Would be very helpful

Feature Category

Other

Use Case Example

my project generates SVG diagrams (architecture, flow charts) and dashboard charts (allocation pie, P&L line, heatmaps). When I ask the assistant on iOS to “show me the dashboard” or “explain the async-job-flow diagram,” the assistant has to describe the picture in words because the image won’t render. The <claude.ai> chat app renders artifacts inline beautifully — Claude Code on iOS does not.

  1. remote control session generates a chart and sends output to the screen. iOS app interprets the output, finds the image send via sendfile, displays inline with an explanation given by the output
  2. remote sessions can handle artifacts creation on the fly

Additional Context

environment is. claude running on Linux (Ubuntu latest) with --remote-control. User is using iOS app for code-> remote sessions

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING

claude-code - 💡(How to fix) Fix [FEATURE] inline image rendering in remote session responses (iOS app)