An open API service indexing awesome lists of open source software.

https://github.com/d2-projects/xbrz


https://github.com/d2-projects/xbrz

Last synced: 12 months ago
JSON representation

Awesome Lists containing this project

README

          

# JavaScript 中的 xBRZ 算法实现

high quality image upscaling filter by Zenju

![npm](https://img.shields.io/npm/v/@d2-projects/xbrz)

在包管理器中引入

``` sh
npm i @d2-projects/xbrz
```

``` js
import xbrz from '@d2-projects/xbrz'
```

在浏览器中引入

``` html

```

使用

```
xbrz.scaleToCanvas({
source: './source.png',
canvas: document.querySelector('#canvas'),
scale: 6
})
```

## 算法实现

* [xbrz](https://sourceforge.net/projects/xbrz/)
* [xbrz-in-java](https://intrepidis.blogspot.com/2014/02/xbrz-in-java.html)
* [will-wyx/xbrz](https://github.com/will-wyx/xbrz)