taylorswift
taylorswift
looks like CI product names were not updated
the tests in https://github.com/kelvin13/jpeg/tree/master/utils also need to be updated: https://github.com/kelvin13/jpeg/actions/runs/3043428379/jobs/4902682333#step:4:3063
ugh, it looks like testing scripts are using the product names to generate paths to the examples in https://github.com/kelvin13/jpeg/tree/master/examples
wow great catch! running the pipeline for your PR rn
can you share the test image? have you tried configuring the compression level? keep in mind swift-png uses the highest compression setting by default, which is significantly more aggressive than...
assembly files show as `text/plain` while swift files seem to be identified as either `text/plain` or `text/x-csrc`
out of curiosity why does numix have .rs rust icons even though rust isn’t a default recognized mimetype either?
actually come to think of it, this would not be a good use of `throws`, since it’s a programmer error. still, it would be better to print the message in...
``` import freetype F = freetype.Face('FiraSans-Book.otf') F.load_char('R') G = F.glyph.get_glyph() CB = G.get_cbox(freetype.FT_GLYPH_BBOX_UNSCALED) print(CB.xMax, CB.xMin, CB.yMax, CB.yMin) >>> 0 0 0 0 ```
Same problem: ``` import freetype F = freetype.Face('FiraSans-Book.otf') F.load_char('R') G = F.glyph.get_glyph() CB = G.get_cbox(freetype.FT_GLYPH_BBOX_UNSCALED) O = F.glyph.outline BB = O.get_bbox() print(CB.xMax, CB.xMin, CB.yMax, CB.yMin) print(BB.xMax, BB.xMin, BB.yMax, BB.yMin) >>>...