mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:18:48 +00:00
1e24b22ef4
- Bug 1150366 - Remove duplicate d3.js. r=jsantell (71f991da6) - Bug 1175352 - Refactor LoadInfo arguments to be more self contained (r=bent) (3f7d08164) - Bug 1181533 - Add nsCRTGlue.h and prtime.h includes to nsDownloadManager.cpp to fix --disable-safe-browsing build bustage. r=froydnj (af338edf1) - Bug 905127 - Part 1 - Make some functions from nsNetUtil not inline. r=jduell Bug 905127 - Part 2 - remove unnecessary nsNetUtil.h includes r=jduell Bug 905127 - Make some functions from nsNetUtil not inline. r=jduell (bc47d5b3a) - Bug 1117650 - Part 1: Move all CORS tests into dom/security/test. r=sicking (6f727387c) - Bug 1117650 - Part 2: Move all MixedContent tests into dom/security/test. r=tanvi (73f273829) - Bug 1004703 - ignore 'unsafe-inline' if nonce- or hash-source specifed - tests (r=sstamm) (ebf411159) - Bug 921493 - CSP: test whitelisting of scheme-relative sources (r=dveditz) (f0618b189) - Bug 1139569 - Optimize update function for element editors in markup view;r=mratcliffe (c60d38dca) - Partil of Bug 1139644 - Make markupview use sdk timers instead of individual timers for each window;r=pbrosset (8bc1a4d66) - Bug 1146568 - Avoid unsafe CPOW usage warnings in browser_markupview_tag_edit_08.js; r=bgrins Making use of the devtools test frame-script to set the test node's attributes instead of using a CPOW. (61d7eed64) - Bug 1146568 - Avoid unsafe CPOW usage in markupview tests, in assertAttributes helper; r=bgrins (efc492d5d) - Bug 858038 - Allow moving elements in the markupview by drag/drop; r=pbrosset (51d79c15c) - Bug 1139644 - Flash only relevant attributes in markup view when changed;r=pbrosset (29807fa46) - Bug 1147128 - Make sure attribute shows up in markup view after removing and setting to the previous value;r=mratcliffe (1947f7417) - Bug 1147325 - Clear box model timer on markup view destroy. r=pbrosset Prevents 'this._inspector.toolbox is null' spam in mochitest-dt (1d6808b4a) - Bug 921102 - 1 - Linkify URIs in the inspector; r=tromey, miker This first part adds a parser for node attributes which, given some node information and an attribute name, generates a small AST-like array of objects that tells which parts of the attribute (if any) are links, and what they link to. Using this, the markup-view generates the right HTML structure to display these parts as links. This part 1 doesn't yet allow users to follow these links. (c500e270e) - Bug 1139667 - CSP tests for fetch(). r=ckirschb (df030457f) - Bug 1086999 - CSP: Asterisk (*) wildcard should not allow blob:, data:, or filesystem: when matching source expressions - tests (r=sstamm) (dee0f2239) - Bug 1117650 - Part 3: Move all CSP tests into dom/security/test. r=sstamm (29c95475c) - Bug 1146566 - 1 - Use devtools common frame-script in markupview tests and add helper; r=bgrins (b10e42468) - Bug 1146566 - 2 - Avoid using CPOWs in test browser_markupview_tag_edit_03.js; r=bgrins This change updates the browser_markupview_tag_edit_03.js test by making use of the getDomElementInfo message listener to retrieve information about the tested nodes without having to go through CPOWs. (07f0ee3ff) - Bug 1036324 - Adds option to walker.parents() to not traverse DocShellTreeItems of different types (24123a5d2) - Bug 921102 - 2 - Markup-view tests for attribute links; r=miker (f6da81799) - Bug 901250 - Add scroll into view menu item for the inspector. r=bgrins (bfc7518b1) - Bug 994055 - Part 1: Add a toggle sidebar panel button to the inspector. r=miker This adds a new icon, next to the searchbox (like in the debugger) to expand or collapse the sidebar panel in the inspector. The state is *not* persisted yet when the toolbox is closed. The button is hidden when the toolbox host switches to 'side'. (87730e20a) - Bug 994055 - Part 2: Add tests for the inspector sidebar toggle button. r=miker (2872c3fbd) - Bug 921102 - 3 - Open/copy markup-view attribute links; r=bgrins This part adds contextual menu items that become enabled when the user right clicks on an attribute that has a link. Depending on the nature of the link, a new tab will be opened or a node selected. The user can also choose to copy the link in the clipboard. (9b93485f6) - Bug 921102 - 4 - Tests for the open/copy links on markup-view attributes; r=bgrins (861ba51f6)
479 lines
17 KiB
C++
479 lines
17 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "ImageEncoder.h"
|
|
#include "mozilla/dom/CanvasRenderingContext2D.h"
|
|
#include "mozilla/gfx/2D.h"
|
|
#include "mozilla/gfx/DataSurfaceHelpers.h"
|
|
#include "mozilla/RefPtr.h"
|
|
#include "mozilla/SyncRunnable.h"
|
|
#include "gfxUtils.h"
|
|
#include "nsNetUtil.h"
|
|
|
|
using namespace mozilla::gfx;
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
// This class should be placed inside GetBRGADataSourceSurfaceSync(). However,
|
|
// due to B2G ICS uses old complier (C++98/03) which forbids local class as
|
|
// template parameter, we need to move this class outside.
|
|
class SurfaceHelper : public nsRunnable {
|
|
public:
|
|
explicit SurfaceHelper(already_AddRefed<layers::Image> aImage) : mImage(aImage) {}
|
|
|
|
// It retrieves a SourceSurface reference and convert color format on main
|
|
// thread and passes DataSourceSurface to caller thread.
|
|
NS_IMETHOD Run() {
|
|
// It guarantees the reference will be released on main thread.
|
|
nsCountedRef<nsMainThreadSourceSurfaceRef> surface;
|
|
surface.own(mImage->GetAsSourceSurface().take());
|
|
|
|
if (surface->GetFormat() == gfx::SurfaceFormat::B8G8R8A8) {
|
|
mDataSourceSurface = surface->GetDataSurface();
|
|
} else {
|
|
mDataSourceSurface = gfxUtils::
|
|
CopySurfaceToDataSourceSurfaceWithFormat(surface,
|
|
gfx::SurfaceFormat::B8G8R8A8);
|
|
}
|
|
return NS_OK;
|
|
}
|
|
|
|
already_AddRefed<gfx::DataSourceSurface> GetDataSurfaceSafe() {
|
|
nsCOMPtr<nsIThread> mainThread = do_GetMainThread();
|
|
MOZ_ASSERT(mainThread);
|
|
SyncRunnable::DispatchToThread(mainThread, this, false);
|
|
|
|
return mDataSourceSurface.forget();
|
|
}
|
|
|
|
private:
|
|
RefPtr<layers::Image> mImage;
|
|
RefPtr<gfx::DataSourceSurface> mDataSourceSurface;
|
|
};
|
|
|
|
// This function returns a DataSourceSurface in B8G8R8A8 format.
|
|
// It uses SourceSurface to do format convert. Because most SourceSurface in
|
|
// image formats should be referenced or dereferenced on main thread, it uses a
|
|
// sync class SurfaceHelper to retrieve SourceSurface and convert to B8G8R8A8 on
|
|
// main thread.
|
|
already_AddRefed<DataSourceSurface>
|
|
GetBRGADataSourceSurfaceSync(already_AddRefed<layers::Image> aImage)
|
|
{
|
|
nsRefPtr<SurfaceHelper> helper = new SurfaceHelper(Move(aImage));
|
|
return helper->GetDataSurfaceSafe();
|
|
}
|
|
|
|
class EncodingCompleteEvent : public nsRunnable
|
|
{
|
|
virtual ~EncodingCompleteEvent() {}
|
|
|
|
public:
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
EncodingCompleteEvent(nsIThread* aEncoderThread,
|
|
EncodeCompleteCallback* aEncodeCompleteCallback)
|
|
: mImgSize(0)
|
|
, mType()
|
|
, mImgData(nullptr)
|
|
, mEncoderThread(aEncoderThread)
|
|
, mEncodeCompleteCallback(aEncodeCompleteCallback)
|
|
, mFailed(false)
|
|
{}
|
|
|
|
NS_IMETHOD Run() override
|
|
{
|
|
nsresult rv = NS_OK;
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
if (!mFailed) {
|
|
// The correct parentObject has to be set by the mEncodeCompleteCallback.
|
|
nsRefPtr<Blob> blob =
|
|
Blob::CreateMemoryBlob(nullptr, mImgData, mImgSize, mType);
|
|
MOZ_ASSERT(blob);
|
|
|
|
rv = mEncodeCompleteCallback->ReceiveBlob(blob.forget());
|
|
}
|
|
|
|
mEncodeCompleteCallback = nullptr;
|
|
|
|
mEncoderThread->Shutdown();
|
|
return rv;
|
|
}
|
|
|
|
void SetMembers(void* aImgData, uint64_t aImgSize, const nsAutoString& aType)
|
|
{
|
|
mImgData = aImgData;
|
|
mImgSize = aImgSize;
|
|
mType = aType;
|
|
}
|
|
|
|
void SetFailed()
|
|
{
|
|
mFailed = true;
|
|
}
|
|
|
|
private:
|
|
uint64_t mImgSize;
|
|
nsAutoString mType;
|
|
void* mImgData;
|
|
nsCOMPtr<nsIThread> mEncoderThread;
|
|
nsRefPtr<EncodeCompleteCallback> mEncodeCompleteCallback;
|
|
bool mFailed;
|
|
};
|
|
|
|
NS_IMPL_ISUPPORTS_INHERITED0(EncodingCompleteEvent, nsRunnable);
|
|
|
|
class EncodingRunnable : public nsRunnable
|
|
{
|
|
virtual ~EncodingRunnable() {}
|
|
|
|
public:
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
EncodingRunnable(const nsAString& aType,
|
|
const nsAString& aOptions,
|
|
uint8_t* aImageBuffer,
|
|
layers::Image* aImage,
|
|
imgIEncoder* aEncoder,
|
|
EncodingCompleteEvent* aEncodingCompleteEvent,
|
|
int32_t aFormat,
|
|
const nsIntSize aSize,
|
|
bool aUsingCustomOptions)
|
|
: mType(aType)
|
|
, mOptions(aOptions)
|
|
, mImageBuffer(aImageBuffer)
|
|
, mImage(aImage)
|
|
, mEncoder(aEncoder)
|
|
, mEncodingCompleteEvent(aEncodingCompleteEvent)
|
|
, mFormat(aFormat)
|
|
, mSize(aSize)
|
|
, mUsingCustomOptions(aUsingCustomOptions)
|
|
{}
|
|
|
|
nsresult ProcessImageData(uint64_t* aImgSize, void** aImgData)
|
|
{
|
|
nsCOMPtr<nsIInputStream> stream;
|
|
nsresult rv = ImageEncoder::ExtractDataInternal(mType,
|
|
mOptions,
|
|
mImageBuffer,
|
|
mFormat,
|
|
mSize,
|
|
mImage,
|
|
nullptr,
|
|
getter_AddRefs(stream),
|
|
mEncoder);
|
|
|
|
// If there are unrecognized custom parse options, we should fall back to
|
|
// the default values for the encoder without any options at all.
|
|
if (rv == NS_ERROR_INVALID_ARG && mUsingCustomOptions) {
|
|
rv = ImageEncoder::ExtractDataInternal(mType,
|
|
EmptyString(),
|
|
mImageBuffer,
|
|
mFormat,
|
|
mSize,
|
|
mImage,
|
|
nullptr,
|
|
getter_AddRefs(stream),
|
|
mEncoder);
|
|
}
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
rv = stream->Available(aImgSize);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
NS_ENSURE_TRUE(*aImgSize <= UINT32_MAX, NS_ERROR_FILE_TOO_BIG);
|
|
|
|
rv = NS_ReadInputStreamToBuffer(stream, aImgData, *aImgSize);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
return rv;
|
|
}
|
|
|
|
NS_IMETHOD Run() override
|
|
{
|
|
uint64_t imgSize;
|
|
void* imgData = nullptr;
|
|
|
|
nsresult rv = ProcessImageData(&imgSize, &imgData);
|
|
if (NS_FAILED(rv)) {
|
|
mEncodingCompleteEvent->SetFailed();
|
|
} else {
|
|
mEncodingCompleteEvent->SetMembers(imgData, imgSize, mType);
|
|
}
|
|
rv = NS_DispatchToMainThread(mEncodingCompleteEvent);
|
|
if (NS_FAILED(rv)) {
|
|
// Better to leak than to crash.
|
|
mEncodingCompleteEvent.forget();
|
|
return rv;
|
|
}
|
|
|
|
return rv;
|
|
}
|
|
|
|
private:
|
|
nsAutoString mType;
|
|
nsAutoString mOptions;
|
|
nsAutoArrayPtr<uint8_t> mImageBuffer;
|
|
nsRefPtr<layers::Image> mImage;
|
|
nsCOMPtr<imgIEncoder> mEncoder;
|
|
nsRefPtr<EncodingCompleteEvent> mEncodingCompleteEvent;
|
|
int32_t mFormat;
|
|
const nsIntSize mSize;
|
|
bool mUsingCustomOptions;
|
|
};
|
|
|
|
NS_IMPL_ISUPPORTS_INHERITED0(EncodingRunnable, nsRunnable);
|
|
|
|
/* static */
|
|
nsresult
|
|
ImageEncoder::ExtractData(nsAString& aType,
|
|
const nsAString& aOptions,
|
|
const nsIntSize aSize,
|
|
nsICanvasRenderingContextInternal* aContext,
|
|
nsIInputStream** aStream)
|
|
{
|
|
nsCOMPtr<imgIEncoder> encoder = ImageEncoder::GetImageEncoder(aType);
|
|
if (!encoder) {
|
|
return NS_IMAGELIB_ERROR_NO_ENCODER;
|
|
}
|
|
|
|
return ExtractDataInternal(aType, aOptions, nullptr, 0, aSize, nullptr,
|
|
aContext, aStream, encoder);
|
|
}
|
|
|
|
|
|
/* static */
|
|
nsresult
|
|
ImageEncoder::ExtractDataFromLayersImageAsync(nsAString& aType,
|
|
const nsAString& aOptions,
|
|
bool aUsingCustomOptions,
|
|
layers::Image* aImage,
|
|
EncodeCompleteCallback* aEncodeCallback)
|
|
{
|
|
nsCOMPtr<imgIEncoder> encoder = ImageEncoder::GetImageEncoder(aType);
|
|
if (!encoder) {
|
|
return NS_IMAGELIB_ERROR_NO_ENCODER;
|
|
}
|
|
|
|
nsCOMPtr<nsIThread> encoderThread;
|
|
nsresult rv = NS_NewThread(getter_AddRefs(encoderThread), nullptr);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
nsRefPtr<EncodingCompleteEvent> completeEvent =
|
|
new EncodingCompleteEvent(encoderThread, aEncodeCallback);
|
|
|
|
nsIntSize size(aImage->GetSize().width, aImage->GetSize().height);
|
|
nsCOMPtr<nsIRunnable> event = new EncodingRunnable(aType,
|
|
aOptions,
|
|
nullptr,
|
|
aImage,
|
|
encoder,
|
|
completeEvent,
|
|
imgIEncoder::INPUT_FORMAT_HOSTARGB,
|
|
size,
|
|
aUsingCustomOptions);
|
|
return encoderThread->Dispatch(event, NS_DISPATCH_NORMAL);
|
|
}
|
|
|
|
/* static */
|
|
nsresult
|
|
ImageEncoder::ExtractDataAsync(nsAString& aType,
|
|
const nsAString& aOptions,
|
|
bool aUsingCustomOptions,
|
|
uint8_t* aImageBuffer,
|
|
int32_t aFormat,
|
|
const nsIntSize aSize,
|
|
EncodeCompleteCallback* aEncodeCallback)
|
|
{
|
|
nsCOMPtr<imgIEncoder> encoder = ImageEncoder::GetImageEncoder(aType);
|
|
if (!encoder) {
|
|
return NS_IMAGELIB_ERROR_NO_ENCODER;
|
|
}
|
|
|
|
nsCOMPtr<nsIThread> encoderThread;
|
|
nsresult rv = NS_NewThread(getter_AddRefs(encoderThread), nullptr);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
nsRefPtr<EncodingCompleteEvent> completeEvent =
|
|
new EncodingCompleteEvent(encoderThread, aEncodeCallback);
|
|
|
|
nsCOMPtr<nsIRunnable> event = new EncodingRunnable(aType,
|
|
aOptions,
|
|
aImageBuffer,
|
|
nullptr,
|
|
encoder,
|
|
completeEvent,
|
|
aFormat,
|
|
aSize,
|
|
aUsingCustomOptions);
|
|
return encoderThread->Dispatch(event, NS_DISPATCH_NORMAL);
|
|
}
|
|
|
|
/*static*/ nsresult
|
|
ImageEncoder::GetInputStream(int32_t aWidth,
|
|
int32_t aHeight,
|
|
uint8_t* aImageBuffer,
|
|
int32_t aFormat,
|
|
imgIEncoder* aEncoder,
|
|
const char16_t* aEncoderOptions,
|
|
nsIInputStream** aStream)
|
|
{
|
|
nsresult rv =
|
|
aEncoder->InitFromData(aImageBuffer,
|
|
aWidth * aHeight * 4, aWidth, aHeight, aWidth * 4,
|
|
aFormat,
|
|
nsDependentString(aEncoderOptions));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
return CallQueryInterface(aEncoder, aStream);
|
|
}
|
|
|
|
/* static */
|
|
nsresult
|
|
ImageEncoder::ExtractDataInternal(const nsAString& aType,
|
|
const nsAString& aOptions,
|
|
uint8_t* aImageBuffer,
|
|
int32_t aFormat,
|
|
const nsIntSize aSize,
|
|
layers::Image* aImage,
|
|
nsICanvasRenderingContextInternal* aContext,
|
|
nsIInputStream** aStream,
|
|
imgIEncoder* aEncoder)
|
|
{
|
|
if (aSize.IsEmpty()) {
|
|
return NS_ERROR_INVALID_ARG;
|
|
}
|
|
|
|
nsCOMPtr<nsIInputStream> imgStream;
|
|
|
|
// get image bytes
|
|
nsresult rv;
|
|
if (aImageBuffer) {
|
|
rv = ImageEncoder::GetInputStream(
|
|
aSize.width,
|
|
aSize.height,
|
|
aImageBuffer,
|
|
aFormat,
|
|
aEncoder,
|
|
nsPromiseFlatString(aOptions).get(),
|
|
getter_AddRefs(imgStream));
|
|
} else if (aContext) {
|
|
NS_ConvertUTF16toUTF8 encoderType(aType);
|
|
rv = aContext->GetInputStream(encoderType.get(),
|
|
nsPromiseFlatString(aOptions).get(),
|
|
getter_AddRefs(imgStream));
|
|
} else if (aImage) {
|
|
// It is safe to convert PlanarYCbCr format from YUV to RGB off-main-thread.
|
|
// Other image formats could have problem to convert format off-main-thread.
|
|
// So here it uses a help function GetBRGADataSourceSurfaceSync() to convert
|
|
// format on main thread.
|
|
if (aImage->GetFormat() == ImageFormat::PLANAR_YCBCR) {
|
|
nsTArray<uint8_t> data;
|
|
layers::PlanarYCbCrImage* ycbcrImage = static_cast<layers::PlanarYCbCrImage*> (aImage);
|
|
gfxImageFormat format = gfxImageFormat::ARGB32;
|
|
uint32_t stride = GetAlignedStride<16>(aSize.width * 4);
|
|
size_t length = BufferSizeFromStrideAndHeight(stride, aSize.height);
|
|
data.SetCapacity(length);
|
|
|
|
gfxUtils::ConvertYCbCrToRGB(*ycbcrImage->GetData(),
|
|
format,
|
|
aSize,
|
|
data.Elements(),
|
|
stride);
|
|
|
|
rv = aEncoder->InitFromData(data.Elements(),
|
|
aSize.width * aSize.height * 4,
|
|
aSize.width,
|
|
aSize.height,
|
|
aSize.width * 4,
|
|
imgIEncoder::INPUT_FORMAT_HOSTARGB,
|
|
aOptions);
|
|
} else {
|
|
RefPtr<gfx::DataSourceSurface> dataSurface;
|
|
RefPtr<layers::Image> image(aImage);
|
|
dataSurface = GetBRGADataSourceSurfaceSync(image.forget());
|
|
|
|
DataSourceSurface::MappedSurface map;
|
|
if (!dataSurface->Map(gfx::DataSourceSurface::MapType::READ, &map)) {
|
|
return NS_ERROR_INVALID_ARG;
|
|
}
|
|
rv = aEncoder->InitFromData(map.mData,
|
|
aSize.width * aSize.height * 4,
|
|
aSize.width,
|
|
aSize.height,
|
|
aSize.width * 4,
|
|
imgIEncoder::INPUT_FORMAT_HOSTARGB,
|
|
aOptions);
|
|
dataSurface->Unmap();
|
|
}
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
imgStream = do_QueryInterface(aEncoder);
|
|
}
|
|
} else {
|
|
CheckedInt32 requiredBytes = CheckedInt32(aSize.width) * CheckedInt32(aSize.height) * 4;
|
|
if (MOZ_UNLIKELY(!requiredBytes.isValid())) {
|
|
return NS_ERROR_INVALID_ARG;
|
|
}
|
|
|
|
// no context, so we have to encode an empty image
|
|
// note that if we didn't have a current context, the spec says we're
|
|
// supposed to just return transparent black pixels of the canvas
|
|
// dimensions.
|
|
RefPtr<DataSourceSurface> emptyCanvas =
|
|
Factory::CreateDataSourceSurfaceWithStride(IntSize(aSize.width, aSize.height),
|
|
SurfaceFormat::B8G8R8A8,
|
|
4 * aSize.width, true);
|
|
if (NS_WARN_IF(!emptyCanvas)) {
|
|
return NS_ERROR_INVALID_ARG;
|
|
}
|
|
|
|
DataSourceSurface::MappedSurface map;
|
|
if (!emptyCanvas->Map(DataSourceSurface::MapType::WRITE, &map)) {
|
|
return NS_ERROR_INVALID_ARG;
|
|
}
|
|
rv = aEncoder->InitFromData(map.mData,
|
|
aSize.width * aSize.height * 4,
|
|
aSize.width,
|
|
aSize.height,
|
|
aSize.width * 4,
|
|
imgIEncoder::INPUT_FORMAT_HOSTARGB,
|
|
aOptions);
|
|
emptyCanvas->Unmap();
|
|
if (NS_SUCCEEDED(rv)) {
|
|
imgStream = do_QueryInterface(aEncoder);
|
|
}
|
|
}
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
imgStream.forget(aStream);
|
|
return rv;
|
|
}
|
|
|
|
/* static */
|
|
already_AddRefed<imgIEncoder>
|
|
ImageEncoder::GetImageEncoder(nsAString& aType)
|
|
{
|
|
// Get an image encoder for the media type.
|
|
nsCString encoderCID("@mozilla.org/image/encoder;2?type=");
|
|
NS_ConvertUTF16toUTF8 encoderType(aType);
|
|
encoderCID += encoderType;
|
|
nsCOMPtr<imgIEncoder> encoder = do_CreateInstance(encoderCID.get());
|
|
|
|
if (!encoder && aType != NS_LITERAL_STRING("image/png")) {
|
|
// Unable to create an encoder instance of the specified type. Falling back
|
|
// to PNG.
|
|
aType.AssignLiteral("image/png");
|
|
nsCString PNGEncoderCID("@mozilla.org/image/encoder;2?type=image/png");
|
|
encoder = do_CreateInstance(PNGEncoderCID.get());
|
|
}
|
|
|
|
return encoder.forget();
|
|
}
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|