Dieser Artikel ist derzeit nur auf Englisch verfügbar.

MarketingSep 28, 20255 min read

Preparing Marketing Assets for Local Conversion

Marketing image folders are rarely tidy. A single campaign may include hero images, ad exports, product cutouts, social previews, email graphics, partner logos, screenshots, and last-minute edits named final-final. Converting that folder directly to WebP or AVIF can produce smaller files, but it can also create confusion if the team does not prepare the assets first.

Local conversion works best when the source set is clean, approved, and organized by use case. The preparation step takes a little time, but it reduces accidental overwrites, duplicate uploads, and quality mistakes in public campaign pages. "Keep it local" is reviewable only when the workflow names the assets, privacy boundary, review owner, and conversion record. For unreleased marketing work, those details are what turn the claim into a real process.

Separate Approved Assets From Drafts#

Start by moving approved marketing assets into a dedicated folder. Do not include design drafts, rejected options, internal comments, or exports meant only for review.

Use a structure like:

campaign-images/
  originals-approved/
  working-resized/
  optimized-web/
  social-and-email/

Keep originals approved for publishing in one place. Put web-specific outputs in another. Social and email assets often have different platform requirements, so do not assume they should follow the same format or dimensions as website images.

Confirm the Destination Before Conversion#

A homepage hero, LinkedIn preview, email header, product card, and paid ad may all start from the same visual concept, but they do not need the same output file. Before converting, record where each asset will be used:

  • landing page hero
  • blog featured image
  • product grid image
  • email header
  • social share image
  • ad creative
  • partner or marketplace upload

This prevents unnecessary conversion. Some platforms may accept WebP, while others may prefer JPEG or PNG. Website assets should be optimized for the website; platform exports should follow the platform's current requirements.

Use a simple destination matrix before converting:

Asset                    Destination        Convert for website?  Separate export?
campaign-hero-1600.jpg   landing page       yes                   no
launch-card-640.png      product grid       yes                   no
partner-logo.svg         partner section    no                    keep SVG
email-header.jpg         newsletter         no                    use email-safe export
social-preview.jpg       social share       verify                often

This prevents a local conversion batch from mixing website assets with channel-specific exports that need their own rules.

Resize for Each Placement#

Marketing assets often come from high-resolution design exports. Keep the full-size original, then create placement-specific working files. A hero image, card thumbnail, and social preview should not all be delivered from the same oversized file.

For website assets, choose sizes based on the real layout and responsive breakpoints. For example:

campaign-hero-1600.webp
campaign-card-640.webp
campaign-feature-1200.webp

This naming makes review easier and keeps the file role visible.

Preserve Brand-Sensitive Details#

Marketing images are judged quickly. Compression problems in a campaign hero can make the brand feel less polished. Review:

  • logo edges
  • brand colors
  • product texture
  • faces and skin tones
  • shadows and gradients
  • small text in ad-style graphics
  • transparent cutout edges

If a graphic contains important text, consider whether text should be real HTML instead of baked into the image. Real text is usually more accessible, searchable, and responsive.

Keep Conversion Local for Unreleased Campaigns#

Unreleased marketing assets may reveal pricing, product positioning, campaign names, launch dates, or partner relationships. A no-upload workflow reduces unnecessary exposure by processing images on the device instead of sending them to a third-party conversion service.

Be precise about the claim. With GetWebP CLI, image files are read from disk, converted locally, and written back to disk. Image bytes are not sent to GetWebP-operated services for conversion. License activation, status checks, and account flows can still make network requests, but those are control-plane operations rather than image uploads. The GetWebP security documentation explains that boundary.

For example:

getwebp ./campaign-images/working-resized --dry-run

getwebp ./campaign-images/working-resized \
  -o ./campaign-images/optimized-web \
  --quality 82 \
  --json > ./campaign-images/conversion.ndjson

The important habits are to keep originals untouched, write outputs separately, and review the optimized files before upload. For WebP, omitting --quality lets GetWebP use auto-quality; passing --quality 82 makes the campaign run fixed at that value. If you test --format avif, treat it as a separate decision because AVIF uses fixed quality behavior and may not fit every destination.

Keep the conversion report with the campaign handoff. It records convert.completed, per-file status, outputPath, actual quality, and qualityMode; if a Free-plan limit truncates the run, it appears as convert.truncated. The CLI command reference and JSON output guide document those fields.

Review on the Actual Campaign Page#

Do not approve marketing images from a folder preview alone. Place them into the landing page, campaign article, or product page where they will appear. Check desktop, mobile, and any dark or colored sections.

This catches practical issues:

  • the crop loses the product on mobile
  • text becomes too small
  • a transparent edge shows on a colored background
  • the hero feels soft at wide desktop sizes
  • the CMS re-compresses the output after upload

The page context is part of the image quality test.

After launch, recheck the live page with the browser network panel. Confirm the published asset is the approved output, not an older draft served from cache.

For a campaign, review should end with named evidence:

Approved page:
/launch

Approved files:
campaign-hero-1600.webp
campaign-card-640.webp

Checked:
desktop hero, mobile hero crop, product card, dark section, network request, CDN cache

Rejected:
social-preview.webp, platform upload rejected WebP; used JPEG export instead

Document What Ships#

Create a short handoff note that lists source folder, output folder, dimensions, format, quality setting, conversion report, live-page URL, and reviewer. This is useful when a campaign needs updates later or when another team asks for the same assets.

Google's WebP documentation provides format background, and MDN's image file type guide helps teams choose between formats for different asset types.

Preparing marketing assets is not bureaucracy. It is the step that turns local conversion from a folder operation into a controlled publishing workflow: approved inputs, clear destinations, reviewed outputs, and source files that remain available when the campaign changes.

Jack avatar

Jack

GetWebP Editor

Jack writes GetWebP guides about local-first image conversion, WebP workflows, browser compatibility, and practical performance checks for teams that publish images on the web.