| /* |
| * Copyright 2012 Google Inc. |
| * |
| * Use of this source code is governed by a BSD-style license that can be |
| * found in the LICENSE file. |
| */ |
| |
| #include "include/core/SkImage.h" |
| |
| #include "include/core/SkBitmap.h" |
| #include "include/core/SkColorSpace.h" |
| #include "include/core/SkData.h" |
| #include "include/core/SkPixmap.h" |
| #include "include/core/SkTileMode.h" |
| #include "include/core/SkTypes.h" |
| #include "src/core/SkColorSpacePriv.h" |
| #include "src/core/SkImageInfoPriv.h" |
| #include "src/core/SkMipmap.h" |
| #include "src/core/SkNextID.h" |
| #include "src/image/SkImage_Base.h" |
| #include "src/shaders/SkImageShader.h" |
| |
| #include <utility> |
| |
| class SkShader; |
| |
| SkImage::SkImage(const SkImageInfo& info, uint32_t uniqueID) |
| : fInfo(info) |
| , fUniqueID(kNeedNewImageUniqueID == uniqueID ? SkNextID::ImageID() : uniqueID) { |
| SkASSERT(info.width() > 0); |
| SkASSERT(info.height() > 0); |
| } |
| |
| bool SkImage::peekPixels(SkPixmap* pm) const { |
| SkPixmap tmp; |
| if (!pm) { |
| pm = &tmp; |
| } |
| return as_IB(this)->onPeekPixels(pm); |
| } |
| |
| bool SkImage::readPixels(GrDirectContext* dContext, const SkImageInfo& dstInfo, void* dstPixels, |
| size_t dstRowBytes, int srcX, int srcY, CachingHint chint) const { |
| return as_IB(this)->onReadPixels(dContext, dstInfo, dstPixels, dstRowBytes, srcX, srcY, chint); |
| } |
| |
| #ifndef SK_IMAGE_READ_PIXELS_DISABLE_LEGACY_API |
| bool SkImage::readPixels(const SkImageInfo& dstInfo, void* dstPixels, |
| size_t dstRowBytes, int srcX, int srcY, CachingHint chint) const { |
| auto dContext = as_IB(this)->directContext(); |
| return this->readPixels(dContext, dstInfo, dstPixels, dstRowBytes, srcX, srcY, chint); |
| } |
| #endif |
| |
| #if defined(GRAPHITE_TEST_UTILS) |
| bool SkImage::readPixelsGraphite(skgpu::graphite::Recorder* recorder, |
| const SkPixmap& dst, |
| int srcX, |
| int srcY) const { |
| return as_IB(this)->onReadPixelsGraphite(recorder, dst, srcX, srcY); |
| } |
| #endif |
| |
| void SkImage::asyncRescaleAndReadPixels(const SkImageInfo& info, |
| const SkIRect& srcRect, |
| RescaleGamma rescaleGamma, |
| RescaleMode rescaleMode, |
| ReadPixelsCallback callback, |
| ReadPixelsContext context) const { |
| if (!SkIRect::MakeWH(this->width(), this->height()).contains(srcRect) || |
| !SkImageInfoIsValid(info)) { |
| callback(context, nullptr); |
| return; |
| } |
| as_IB(this)->onAsyncRescaleAndReadPixels( |
| info, srcRect, rescaleGamma, rescaleMode, callback, context); |
| } |
| |
| void SkImage::asyncRescaleAndReadPixelsYUV420(SkYUVColorSpace yuvColorSpace, |
| sk_sp<SkColorSpace> dstColorSpace, |
| const SkIRect& srcRect, |
| const SkISize& dstSize, |
| RescaleGamma rescaleGamma, |
| RescaleMode rescaleMode, |
| ReadPixelsCallback callback, |
| ReadPixelsContext context) const { |
| if (!SkIRect::MakeWH(this->width(), this->height()).contains(srcRect) || dstSize.isZero() || |
| (dstSize.width() & 0b1) || (dstSize.height() & 0b1)) { |
| callback(context, nullptr); |
| return; |
| } |
| as_IB(this)->onAsyncRescaleAndReadPixelsYUV420(yuvColorSpace, |
| /*readAlpha=*/false, |
| std::move(dstColorSpace), |
| srcRect, |
| dstSize, |
| rescaleGamma, |
| rescaleMode, |
| callback, |
| context); |
| } |
| |
| void SkImage::asyncRescaleAndReadPixelsYUVA420(SkYUVColorSpace yuvColorSpace, |
| sk_sp<SkColorSpace> dstColorSpace, |
| const SkIRect& srcRect, |
| const SkISize& dstSize, |
| RescaleGamma rescaleGamma, |
| RescaleMode rescaleMode, |
| ReadPixelsCallback callback, |
| ReadPixelsContext context) const { |
| if (!SkIRect::MakeWH(this->width(), this->height()).contains(srcRect) || dstSize.isZero() || |
| (dstSize.width() & 0b1) || (dstSize.height() & 0b1)) { |
| callback(context, nullptr); |
| return; |
| } |
| as_IB(this)->onAsyncRescaleAndReadPixelsYUV420(yuvColorSpace, |
| /*readAlpha=*/true, |
| std::move(dstColorSpace), |
| srcRect, |
| dstSize, |
| rescaleGamma, |
| rescaleMode, |
| callback, |
| context); |
| } |
| |
| bool SkImage::scalePixels(const SkPixmap& dst, const SkSamplingOptions& sampling, |
| CachingHint chint) const { |
| // Context TODO: Elevate GrDirectContext requirement to public API. |
| auto dContext = as_IB(this)->directContext(); |
| if (this->width() == dst.width() && this->height() == dst.height()) { |
| return this->readPixels(dContext, dst, 0, 0, chint); |
| } |
| |
| // Idea: If/when SkImageGenerator supports a native-scaling API (where the generator itself |
| // can scale more efficiently) we should take advantage of it here. |
| // |
| SkBitmap bm; |
| if (as_IB(this)->getROPixels(dContext, &bm, chint)) { |
| SkPixmap pmap; |
| // Note: By calling the pixmap scaler, we never cache the final result, so the chint |
| // is (currently) only being applied to the getROPixels. If we get a request to |
| // also attempt to cache the final (scaled) result, we would add that logic here. |
| // |
| return bm.peekPixels(&pmap) && pmap.scalePixels(dst, sampling); |
| } |
| return false; |
| } |
| |
| /////////////////////////////////////////////////////////////////////////////////////////////////// |
| |
| SkColorType SkImage::colorType() const { return fInfo.colorType(); } |
| |
| SkAlphaType SkImage::alphaType() const { return fInfo.alphaType(); } |
| |
| SkColorSpace* SkImage::colorSpace() const { return fInfo.colorSpace(); } |
| |
| sk_sp<SkColorSpace> SkImage::refColorSpace() const { return fInfo.refColorSpace(); } |
| |
| sk_sp<SkShader> SkImage::makeShader(const SkSamplingOptions& sampling, const SkMatrix& lm) const { |
| return SkImageShader::Make(sk_ref_sp(const_cast<SkImage*>(this)), |
| SkTileMode::kClamp, SkTileMode::kClamp, |
| sampling, &lm); |
| } |
| |
| sk_sp<SkShader> SkImage::makeShader(const SkSamplingOptions& sampling, const SkMatrix* lm) const { |
| return SkImageShader::Make(sk_ref_sp(const_cast<SkImage*>(this)), |
| SkTileMode::kClamp, SkTileMode::kClamp, |
| sampling, lm); |
| } |
| |
| sk_sp<SkShader> SkImage::makeShader(SkTileMode tmx, SkTileMode tmy, |
| const SkSamplingOptions& sampling, |
| const SkMatrix& lm) const { |
| return SkImageShader::Make(sk_ref_sp(const_cast<SkImage*>(this)), tmx, tmy, |
| sampling, &lm); |
| } |
| |
| sk_sp<SkShader> SkImage::makeShader(SkTileMode tmx, SkTileMode tmy, |
| const SkSamplingOptions& sampling, |
| const SkMatrix* localMatrix) const { |
| return SkImageShader::Make(sk_ref_sp(const_cast<SkImage*>(this)), tmx, tmy, |
| sampling, localMatrix); |
| } |
| |
| sk_sp<SkShader> SkImage::makeRawShader(SkTileMode tmx, SkTileMode tmy, |
| const SkSamplingOptions& sampling, |
| const SkMatrix& lm) const { |
| return SkImageShader::MakeRaw(sk_ref_sp(const_cast<SkImage*>(this)), tmx, tmy, |
| sampling, &lm); |
| } |
| |
| sk_sp<SkShader> SkImage::makeRawShader(const SkSamplingOptions& sampling, |
| const SkMatrix& lm) const { |
| return SkImageShader::MakeRaw(sk_ref_sp(const_cast<SkImage*>(this)), |
| SkTileMode::kClamp, SkTileMode::kClamp, |
| sampling, &lm); |
| } |
| |
| sk_sp<SkShader> SkImage::makeRawShader(const SkSamplingOptions& sampling, |
| const SkMatrix* localMatrix) const { |
| return SkImageShader::MakeRaw(sk_ref_sp(const_cast<SkImage*>(this)), |
| SkTileMode::kClamp, SkTileMode::kClamp, |
| sampling, localMatrix); |
| } |
| |
| sk_sp<SkShader> SkImage::makeRawShader(SkTileMode tmx, SkTileMode tmy, |
| const SkSamplingOptions& sampling, |
| const SkMatrix* localMatrix) const { |
| return SkImageShader::MakeRaw(sk_ref_sp(const_cast<SkImage*>(this)), tmx, tmy, |
| sampling, localMatrix); |
| } |
| |
| sk_sp<SkData> SkImage::refEncodedData() const { |
| return sk_sp<SkData>(as_IB(this)->onRefEncoded()); |
| } |
| |
| /////////////////////////////////////////////////////////////////////////////////////////////////// |
| |
| bool SkImage::readPixels(GrDirectContext* dContext, const SkPixmap& pmap, int srcX, int srcY, |
| CachingHint chint) const { |
| return this->readPixels(dContext, pmap.info(), pmap.writable_addr(), pmap.rowBytes(), srcX, |
| srcY, chint); |
| } |
| |
| #ifndef SK_IMAGE_READ_PIXELS_DISABLE_LEGACY_API |
| bool SkImage::readPixels(const SkPixmap& pmap, int srcX, int srcY, CachingHint chint) const { |
| auto dContext = as_IB(this)->directContext(); |
| return this->readPixels(dContext, pmap, srcX, srcY, chint); |
| } |
| #endif |
| |
| bool SkImage::asLegacyBitmap(SkBitmap* bitmap, LegacyBitmapMode ) const { |
| // Context TODO: Elevate GrDirectContext requirement to public API. |
| auto dContext = as_IB(this)->directContext(); |
| return as_IB(this)->onAsLegacyBitmap(dContext, bitmap); |
| } |
| |
| bool SkImage::isAlphaOnly() const { return SkColorTypeIsAlphaOnly(fInfo.colorType()); } |
| |
| sk_sp<SkImage> SkImage::reinterpretColorSpace(sk_sp<SkColorSpace> target) const { |
| if (!target) { |
| return nullptr; |
| } |
| |
| // No need to create a new image if: |
| // (1) The color spaces are equal. |
| // (2) The color type is kAlpha8. |
| SkColorSpace* colorSpace = this->colorSpace(); |
| if (!colorSpace) { |
| colorSpace = sk_srgb_singleton(); |
| } |
| if (SkColorSpace::Equals(colorSpace, target.get()) || this->isAlphaOnly()) { |
| return sk_ref_sp(const_cast<SkImage*>(this)); |
| } |
| |
| return as_IB(this)->onReinterpretColorSpace(std::move(target)); |
| } |
| |
| sk_sp<SkImage> SkImage::makeNonTextureImage(GrDirectContext* dContext) const { |
| if (!this->isTextureBacked()) { |
| return sk_ref_sp(const_cast<SkImage*>(this)); |
| } |
| return this->makeRasterImage(dContext, kDisallow_CachingHint); |
| } |
| |
| sk_sp<SkImage> SkImage::makeRasterImage(GrDirectContext* dContext, CachingHint chint) const { |
| SkPixmap pm; |
| if (this->peekPixels(&pm)) { |
| return sk_ref_sp(const_cast<SkImage*>(this)); |
| } |
| |
| const size_t rowBytes = fInfo.minRowBytes(); |
| size_t size = fInfo.computeByteSize(rowBytes); |
| if (SkImageInfo::ByteSizeOverflowed(size)) { |
| return nullptr; |
| } |
| |
| if (!dContext) { |
| // Try to get the saved context if the client didn't pass it in (but they really should). |
| dContext = as_IB(this)->directContext(); |
| } |
| sk_sp<SkData> data = SkData::MakeUninitialized(size); |
| pm = {fInfo.makeColorSpace(nullptr), data->writable_data(), fInfo.minRowBytes()}; |
| if (!this->readPixels(dContext, pm, 0, 0, chint)) { |
| return nullptr; |
| } |
| |
| return SkImages::RasterFromData(fInfo, std::move(data), rowBytes); |
| } |
| |
| bool SkImage::hasMipmaps() const { return as_IB(this)->onHasMipmaps(); } |
| |
| bool SkImage::isProtected() const { return as_IB(this)->onIsProtected(); } |
| |
| sk_sp<SkImage> SkImage::withMipmaps(sk_sp<SkMipmap> mips) const { |
| if (mips == nullptr || mips->validForRootLevel(this->imageInfo())) { |
| if (auto result = as_IB(this)->onMakeWithMipmaps(std::move(mips))) { |
| return result; |
| } |
| } |
| return sk_ref_sp((const_cast<SkImage*>(this))); |
| } |
| |
| sk_sp<SkImage> SkImage::withDefaultMipmaps() const { |
| return this->withMipmaps(nullptr); |
| } |