how do i import jpeg pixel textures without filter compression

4.4

this filter makes my textures blurry, i know that in png image import settings i can disable filter but it doesnt work with jpg

JPEG is a lossy file format, some of your image can get blurry by using this compression technique. Depending on how you use the image you can sample it by “Nearest” or “Linear” Filtering, the former may be sharper if you are trying to achieve a pixel art aesthetic.

2 Likes

Building on @gertkeno 's comment, JPEG is (usually) not the format you want for textures. Your project may have a specific reason to use JPEG, but if not, I’d suggest you’d be better off using PNG.

JPEG can be very lossy, and the process of encoding a JPEG involves throwing away a lot of the saturation information. If you only plan to view the texture that can be ok, but if you’re blending it with anything, or casting light or shadows on it, the loss of saturation information can make for blurriness and ugly visual artifacts.