Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix wrong size #633

Merged
merged 1 commit into from
Mar 29, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Sources/Image.swift
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ extension Kingfisher where Base: Image {
return vImage_Buffer(data: data, height: height, width: width, rowBytes: rowBytes)
}

guard let context = beginContext() else {
guard let context = beginContext(size: size) else {
assertionFailure("[Kingfisher] Failed to create CG context for blurring image.")
return base
}
Expand All @@ -511,7 +511,7 @@ extension Kingfisher where Base: Image {

var inBuffer = createEffectBuffer(context)

guard let outContext = beginContext() else {
guard let outContext = beginContext(size: size) else {
assertionFailure("[Kingfisher] Failed to create CG context for blurring image.")
return base
}
Expand Down Expand Up @@ -627,7 +627,7 @@ extension Kingfisher where Base: Image {
return base
}
let colorSpace = CGColorSpaceCreateDeviceRGB()
guard let context = beginContext() else {
guard let context = beginContext(size: CGSize(width: imageRef.width, height: imageRef.height)) else {
assertionFailure("[Kingfisher] Decoding fails to create a valid context.")
return base
}
Expand Down Expand Up @@ -755,7 +755,7 @@ extension Comparable {

extension Kingfisher where Base: Image {

func beginContext() -> CGContext? {
func beginContext(size: CGSize) -> CGContext? {
#if os(macOS)
guard let rep = NSBitmapImageRep(
bitmapDataPlanes: nil,
Expand Down