Skip to content

Commit

Permalink
Merge pull request h2non#186 from h2non/fix/h2non#162-resize-garbage-…
Browse files Browse the repository at this point in the history
…collection

fix(h2non#162): garbage collection fix. split Resize() implementation for Go runtime
  • Loading branch information
h2non authored Sep 10, 2017
2 parents d4ea64e + fb3cd7a commit d7007ce
Show file tree
Hide file tree
Showing 31 changed files with 623 additions and 565 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
root = true

[*]
indent_style = tabs
indent_style = tab
indent_size = 2
end_of_line = lf
charset = utf-8
Expand Down
26 changes: 26 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,30 @@

## v1.0.11 / 2017-09-10

* feat(#189): allow strip image metadata via bimg.Options.StripMetadata = bool
* fix(resize): code format issue
* refactor(resize): add Go version comment
* refactor(tests): fix minor code formatting issues
* fix(#162): garbage collection fix. split Resize() implementation for Go runtime specific
* feat(travis): add go 1.9
* Merge pull request #183 from greut/autorotate
* Proper handling of the EXIF cases.
* Merge pull request #184 from greut/libvips858
* Merge branch 'master' into libvips858
* Merge pull request #185 from greut/libvips860
* Add libvips 8.6 pre-release
* Update to libvips 8.5.8
* fix(resize): runtime.KeepAlive is only Go
* fix(#159): prevent buf to be freed by the GC before resize function exits
* Merge pull request #171 from greut/fix-170
* Check the length before jumping into buffer.
* Merge pull request #168 from Traum-Ferienwohnungen/icc_transform
* Add option to convert embedded ICC profiles
* Merge pull request #166 from danjou-a/patch-1
* Fix Resize verification value
* Merge pull request #165 from greut/libvips846
* Testing using libvips8.4.6 from Github.

## v1.0.10 / 2017-06-25

* Merge pull request #164 from greut/length
Expand Down
Binary file modified fixtures/exif/Landscape_1_out.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified fixtures/exif/Landscape_2_out.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified fixtures/exif/Landscape_3_out.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified fixtures/exif/Landscape_4_out.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified fixtures/exif/Landscape_5_out.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified fixtures/exif/Landscape_6_out.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified fixtures/exif/Landscape_7_out.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified fixtures/exif/Landscape_8_out.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified fixtures/exif/Portrait_1_out.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified fixtures/exif/Portrait_2_out.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified fixtures/exif/Portrait_3_out.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified fixtures/exif/Portrait_4_out.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified fixtures/exif/Portrait_5_out.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified fixtures/exif/Portrait_6_out.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified fixtures/exif/Portrait_7_out.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified fixtures/exif/Portrait_8_out.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified fixtures/test_gif.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified fixtures/test_pdf.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified fixtures/test_svg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions options.go
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,7 @@ type Options struct {
NoAutoRotate bool
NoProfile bool
Interlace bool
StripMetadata bool
Extend Extend
Rotate Angle
Background Color
Expand Down
Loading

0 comments on commit d7007ce

Please sign in to comment.