Thad Humphries

Results 15 comments of Thad Humphries

My request is that an GWT Eclipse Plugin with Gradle allow flexibility in selecting the targeted Java and GWT versions. Basically, we don't want to rock the boat or be...

Additionally I think the tab bar should have indicators to let the user know that there _are_ tabs to the left or right. Depending on the width of the tab-bar...

Using `rewire` 4.0.1, my attempt to call `import { rewire } from 'rewire';` is met with the error: ``` HeadlessChrome 74.0.3729 (Mac OS X 10.14.4) ERROR Uncaught SyntaxError: The requested...

Yes, I can remove "from project.sourceSets.main.output". I missed that before If I remove "from project.sourceSets.main.allJava", I must add "include '*_/_.java'" to "from('src/main/java')". Either works. The problem is that merely using...

There are links to some demos on the README. I opened the first link ([view TIFF files](http://seikichi.github.io/tiff.js/basic.html)), viewed the source, and adapted the first one. It displays a 300x300dpi, 1-bit,...

First off, your 7th line in `index.html` will not work: You're trying to load a TIFF as if it were a JPG, PNG, or GIF. That will never work. TIFFs...

If I put your images from `sample data.zip` in an `images` directory, list them as `imageFiles` in a copy of `http://seikichi.github.io/tiff.js/basic.html`, and serve the parent directory with `simplehttp2server `, they...

Not that I know of, at least not out-of-the-box. You could, of course, convert the TIFF images to PNG or another browser format using ImageMagick, but a dynamic solution will...

I've seen warnings like this before from `libtiff` and its utilities like `tiffinfo` and `tiffdump`. Since `tiff.js` is an EmsIcripten compile of `libtiff`, I'd say the warnings are coming from...

No. If you look on the [Note](https://github.com/seikichi/tiff.js#note) on the README.md, you'll see that the create functions of LibTIFF are not supported. [photopea/UTIF.js](https://github.com/photopea/UTIF.js) says it [supports encoding TIFF](https://github.com/photopea/UTIF.js#encoding-tiff-images), but I've not...