At a Glance
  • ✅ Adobe integrates Topaz Gigapixel, Denoise and Video AI into Firefly and Creative Cloud.
  • 💰 Pricing starts at $0.02 per 1,000 pixels for API calls.
  • ⚡ On-device Neurostream runs models on iOS, Android and Windows PCs.
  • 🔒 Enterprise-grade security via Adobe Identity Services.
  • 📈 Early adopters report 30% faster render times vs cloud-only solutions.

On June 25, 2026 Adobe announced it will acquire Topaz Labs, the Dallas-based AI company behind Gigapixel AI, Denoise AI and Video AI. The deal gives Adobe immediate access to production-ready image and video enhancement models and the proprietary Neurostream engine that runs large AI models locally on consumer devices. In practice, this means developers can now add high-quality upscaling, sharpening and noise-reduction to any app with a few API calls or an on-device SDK.

Why the acquisition matters for developers

Adobe has long focused on generative AI through Firefly, but most of its tools still rely on cloud processing. Topaz’s technology flips that model. Neurostream compresses a 2-billion-parameter video model to under 500 MB while keeping 4K-real-time performance on a mid-range laptop. According to Adobe’s 2026 developer report, on-device AI reduces latency by up to 70 % and cuts monthly cloud spend by an average of $1,200 per team.

Stop paying monthly for Testimonial Widgets.

While SaaS tools bleed you monthly, EmbedFlow is yours forever for a single $9 payment. Drop in a beautiful, fully responsive Wall of Love in minutes. Features Shadow DOM CSS isolation so your site's styles never break your testimonial cards.

0 Dependencies (Pure JS) Shadow DOM CSS Protection Grid & List Layout Engine 94% Customizable via Config

For app makers, the benefit is twofold. First, you can deliver instant upscaling without sending raw media to the cloud, which improves privacy and compliance for regulated industries. Second, the pricing model is usage-based, so you only pay for the pixels you upscale, not for a fixed-size compute instance.

Real-world tests show that integrating Topaz’s Gigapixel AI into a photo-sharing app boosted user-generated 4K uploads by 22 % because creators no longer needed high-end cameras to get crisp results.

How the technology works

Topaz’s core models are built on a diffusion-based architecture that learns to reconstruct high-frequency detail from low-resolution inputs. The company patented a “progressive refinement” loop that runs three passes: coarse upscaling, detail synthesis, and edge sharpening. Neurostream adds a hardware-aware scheduler that splits the model across CPU, GPU and NPU cores, automatically selecting the fastest path.

When Adobe embeds these models into Firefly, the workflow looks like this:

1. User generates or uploads an image/video.
2. Firefly calls the Topaz Upscale Service (REST API) with a token.
3. Service returns a high-resolution asset (1080p → 4K, 4K → 8K).
4. If Neurostream is enabled, step 2 runs locally on the device, skipping the network round-trip.

The same pipeline applies to video, where Topaz Video AI adds frame-interpolation and denoising before upscaling. Adobe’s Firefly UI now shows a single “Upscale with Topaz” button, hiding the complexity from end users.

Feature comparison: Topaz vs. other AI upscalers

FeatureTopaz (via Adobe)NVIDIA RTX Video SRPixelmator Pro AI Upscale
Resolution supportUp to 8K (video), 16K (image)Up to 4K (video)Up to 6K (image)
On-device modeYes (Neurostream)No (cloud only)Yes (macOS only)
Pricing (per 1,000 pixels)$0.02$0.03$0.015 (macOS bundle)
API latency120 ms (cloud) / 45 ms (local)200 ms150 ms
Supported platformsiOS, Android, Windows, macOS, WebWindows, Linux (GPU only)macOS, iOS

Original analysis: While NVIDIA’s RTX SR excels on high-end GPUs, Topaz’s on-device option gives it a clear edge for mobile and cross-platform apps. The price per pixel is slightly higher than Pixelmator’s bundled model, but the broader platform coverage and Adobe’s enterprise security make it a better fit for SaaS products.

Integrating Topaz AI into your app

Adobe provides two integration paths:

  • Firefly Services API – a REST endpoint that accepts base64-encoded media and returns an upscaled file. Ideal for web apps and server-side processing.
  • Neurostream SDK – a lightweight C++/Swift/Java library you embed in your client. It runs the model locally and uses Adobe Identity for licensing.

Step-by-step example (Node.js):

const fetch = require('node-fetch');
const apiKey = process.env.ADOBE_API_KEY;
async function upscaleImage(base64) {
  const res = await fetch('https://firefly.adobe.io/v2/upscale', {
    method: 'POST',
    headers: { 'Authorization': `Bearer ${apiKey}`, 'Content-Type': 'application/json' },
    body: JSON.stringify({ image: base64, targetResolution: '4K' })
  });
  const data = await res.json();
  return data.upscaledImage; // base64 string
}

For on-device use, the SDK ships with a single function call:

#include "Neurostream.h"
Neurostream ns; // init with license key
std::vector out = ns.upscale(inputBytes, 3840, 2160);

Both methods respect Adobe’s usage limits, which you can monitor in the Adobe Developer Console.

Who should use this now?

Mobile photo editors – Add 4K upscaling without draining battery, thanks to Neurostream’s NPU support.

Enterprise video platforms – Replace costly cloud transcode pipelines with a per-pixel billing model, cutting OPEX by up to 40 %.

E-learning creators – Restore old lecture footage to 1080p or 4K in seconds, improving learner engagement.

Game developers – Upscale texture assets on the fly, keeping download sizes low while delivering high-res visuals.

Potential challenges and how to mitigate them

Some early adopters reported that the on-device SDK adds ~150 MB to app bundle size. Adobe recommends using dynamic feature modules (Android) or App Thinning (iOS) to download the model only when needed.

Another concern is model bias – Topaz’s training data focused on natural photography, so upscaling of stylized graphics can produce unwanted artifacts. Adobe’s Firefly team now offers a “Creative Style” toggle that applies a lighter refinement pass for illustration-type inputs.

“The Topaz integration is the first time we’ve seen a truly on-device, high-quality video upscaler that works across iOS, Android and Windows. It opens a new class of real-time creative apps,” says Maya Patel, senior product manager at Adobe Firefly (Adobe 2026 press release).

Future outlook

Adobe plans to roll out additional Topaz models in Q4 2026, including a 12-frame interpolation engine for 60 fps upscaling and a low-light enhancement model for night-time video. The company also hinted at a joint research program with Apple to further compress models for AR glasses.

So what does this mean for the broader market? As Adobe bundles Topaz’s tech into its cloud and on-device stacks, smaller competitors will need to double down on niche features or price. For developers, the takeaway is clear: the barrier to adding professional-grade AI upscaling has dropped dramatically, and the best way to stay ahead is to start experimenting now.

Conclusion

The Adobe Topaz Labs acquisition gives developers a ready-made, cross-platform AI upscaling engine that works both in the cloud and on the device. With transparent per-pixel pricing, enterprise-grade security, and a proven track record among photographers and filmmakers, the technology is ready for production today. Whether you build a mobile editor, a video-hosting service, or an AR experience, the new Adobe-Topaz stack lets you add AI-powered image and video enhancement without reinventing the wheel.