├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── Third Party Notices.txt └── src ├── .editorconfig ├── BitmapUtil2.cs ├── ColorProfiles ├── Rec2020-elle-V4-g10.icc └── Rec709-elle-V4-rec709.icc ├── Exif ├── EndianBinaryReader.cs ├── Endianess.cs ├── ExifColorSpace.cs ├── ExifParser.cs ├── ExifValueCollection.cs ├── ExifValueTypeUtil.cs ├── ExifWriter.cs ├── IFDEntry.cs ├── MetadataHelpers.cs ├── ReadOnlyListExtensions.cs ├── StreamSegment.cs └── TiffConstants.cs ├── ICC Profile ├── Enums │ ├── ProfileClass.cs │ ├── ProfileColorSpace.cs │ └── ProfilePlatform.cs ├── Numeric │ ├── S15Fixed16.cs │ └── XYZNumber.cs ├── ProfileDateTime.cs ├── ProfileHeader.cs ├── ProfileID.cs ├── ProfileSignature.cs ├── ProfileVersion.cs └── RenderingIntent.cs ├── IgnoredWords.dic ├── Interop ├── BitmapData.cs ├── DecoderCallbacks.cs ├── DecoderImage.cs ├── DecoderLayerData.cs ├── DecoderStatus.cs ├── EncoderImageMetadata.Marshaller.cs ├── EncoderImageMetadata.cs ├── EncoderOptions.Marshaller.cs ├── EncoderOptions.cs ├── EncoderStatus.cs ├── ErrorInfo.cs ├── HResult.cs ├── HdrFormat.cs ├── IOCallbacks.cs ├── JpegXLColorSpace.cs ├── JpegXLImageChannelRepresentation.cs ├── JpegXLNative.cs ├── JpegXL_Arm64.cs ├── JpegXL_X64.cs ├── KnownColorProfile.cs ├── ProgressCallback.cs ├── QualityToDistanceLookupTable.cs ├── StreamIOCallbacks.cs └── TransparencyMapping.cs ├── JpegXLFileType.cs ├── JpegXLFileType.csproj ├── JpegXLFileType.sln ├── JpegXLFileType.sln.licenseheader ├── JpegXLFileTypeFactory.cs ├── JpegXLLoad.cs ├── JpegXLSave.cs ├── JxlFileTypeIO ├── Common.cpp ├── Common.h ├── Decoder │ ├── DecoderContext.cpp │ ├── DecoderContext.h │ ├── JxlDecoder.cpp │ ├── JxlDecoder.h │ └── JxlDecoderTypes.h ├── Encoder │ ├── JxlEncoder.cpp │ ├── JxlEncoder.h │ ├── JxlEncoderTypes.h │ ├── OutputProcessor.cpp │ ├── OutputProcessor.h │ ├── PixelFormatConversion.cpp │ └── PixelFormatConversion.h ├── JxlFileTypeIO.cpp ├── JxlFileTypeIO.h ├── JxlFileTypeIO.vcxproj ├── JxlFileTypeIO.vcxproj.filters ├── resource.h ├── vcpkg.json └── version.rc ├── Localization ├── BuiltinStringResourceManager.cs ├── IJpegXLStringResourceManager.cs └── PdnLocalizedStringResourceManager.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx └── launchSettings.json └── VersionInfo.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/README.md -------------------------------------------------------------------------------- /Third Party Notices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/Third Party Notices.txt -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/BitmapUtil2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/BitmapUtil2.cs -------------------------------------------------------------------------------- /src/ColorProfiles/Rec2020-elle-V4-g10.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/ColorProfiles/Rec2020-elle-V4-g10.icc -------------------------------------------------------------------------------- /src/ColorProfiles/Rec709-elle-V4-rec709.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/ColorProfiles/Rec709-elle-V4-rec709.icc -------------------------------------------------------------------------------- /src/Exif/EndianBinaryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Exif/EndianBinaryReader.cs -------------------------------------------------------------------------------- /src/Exif/Endianess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Exif/Endianess.cs -------------------------------------------------------------------------------- /src/Exif/ExifColorSpace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Exif/ExifColorSpace.cs -------------------------------------------------------------------------------- /src/Exif/ExifParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Exif/ExifParser.cs -------------------------------------------------------------------------------- /src/Exif/ExifValueCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Exif/ExifValueCollection.cs -------------------------------------------------------------------------------- /src/Exif/ExifValueTypeUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Exif/ExifValueTypeUtil.cs -------------------------------------------------------------------------------- /src/Exif/ExifWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Exif/ExifWriter.cs -------------------------------------------------------------------------------- /src/Exif/IFDEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Exif/IFDEntry.cs -------------------------------------------------------------------------------- /src/Exif/MetadataHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Exif/MetadataHelpers.cs -------------------------------------------------------------------------------- /src/Exif/ReadOnlyListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Exif/ReadOnlyListExtensions.cs -------------------------------------------------------------------------------- /src/Exif/StreamSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Exif/StreamSegment.cs -------------------------------------------------------------------------------- /src/Exif/TiffConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Exif/TiffConstants.cs -------------------------------------------------------------------------------- /src/ICC Profile/Enums/ProfileClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/ICC Profile/Enums/ProfileClass.cs -------------------------------------------------------------------------------- /src/ICC Profile/Enums/ProfileColorSpace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/ICC Profile/Enums/ProfileColorSpace.cs -------------------------------------------------------------------------------- /src/ICC Profile/Enums/ProfilePlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/ICC Profile/Enums/ProfilePlatform.cs -------------------------------------------------------------------------------- /src/ICC Profile/Numeric/S15Fixed16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/ICC Profile/Numeric/S15Fixed16.cs -------------------------------------------------------------------------------- /src/ICC Profile/Numeric/XYZNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/ICC Profile/Numeric/XYZNumber.cs -------------------------------------------------------------------------------- /src/ICC Profile/ProfileDateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/ICC Profile/ProfileDateTime.cs -------------------------------------------------------------------------------- /src/ICC Profile/ProfileHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/ICC Profile/ProfileHeader.cs -------------------------------------------------------------------------------- /src/ICC Profile/ProfileID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/ICC Profile/ProfileID.cs -------------------------------------------------------------------------------- /src/ICC Profile/ProfileSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/ICC Profile/ProfileSignature.cs -------------------------------------------------------------------------------- /src/ICC Profile/ProfileVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/ICC Profile/ProfileVersion.cs -------------------------------------------------------------------------------- /src/ICC Profile/RenderingIntent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/ICC Profile/RenderingIntent.cs -------------------------------------------------------------------------------- /src/IgnoredWords.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/IgnoredWords.dic -------------------------------------------------------------------------------- /src/Interop/BitmapData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Interop/BitmapData.cs -------------------------------------------------------------------------------- /src/Interop/DecoderCallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Interop/DecoderCallbacks.cs -------------------------------------------------------------------------------- /src/Interop/DecoderImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Interop/DecoderImage.cs -------------------------------------------------------------------------------- /src/Interop/DecoderLayerData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Interop/DecoderLayerData.cs -------------------------------------------------------------------------------- /src/Interop/DecoderStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Interop/DecoderStatus.cs -------------------------------------------------------------------------------- /src/Interop/EncoderImageMetadata.Marshaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Interop/EncoderImageMetadata.Marshaller.cs -------------------------------------------------------------------------------- /src/Interop/EncoderImageMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Interop/EncoderImageMetadata.cs -------------------------------------------------------------------------------- /src/Interop/EncoderOptions.Marshaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Interop/EncoderOptions.Marshaller.cs -------------------------------------------------------------------------------- /src/Interop/EncoderOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Interop/EncoderOptions.cs -------------------------------------------------------------------------------- /src/Interop/EncoderStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Interop/EncoderStatus.cs -------------------------------------------------------------------------------- /src/Interop/ErrorInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Interop/ErrorInfo.cs -------------------------------------------------------------------------------- /src/Interop/HResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Interop/HResult.cs -------------------------------------------------------------------------------- /src/Interop/HdrFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Interop/HdrFormat.cs -------------------------------------------------------------------------------- /src/Interop/IOCallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Interop/IOCallbacks.cs -------------------------------------------------------------------------------- /src/Interop/JpegXLColorSpace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Interop/JpegXLColorSpace.cs -------------------------------------------------------------------------------- /src/Interop/JpegXLImageChannelRepresentation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Interop/JpegXLImageChannelRepresentation.cs -------------------------------------------------------------------------------- /src/Interop/JpegXLNative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Interop/JpegXLNative.cs -------------------------------------------------------------------------------- /src/Interop/JpegXL_Arm64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Interop/JpegXL_Arm64.cs -------------------------------------------------------------------------------- /src/Interop/JpegXL_X64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Interop/JpegXL_X64.cs -------------------------------------------------------------------------------- /src/Interop/KnownColorProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Interop/KnownColorProfile.cs -------------------------------------------------------------------------------- /src/Interop/ProgressCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Interop/ProgressCallback.cs -------------------------------------------------------------------------------- /src/Interop/QualityToDistanceLookupTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Interop/QualityToDistanceLookupTable.cs -------------------------------------------------------------------------------- /src/Interop/StreamIOCallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Interop/StreamIOCallbacks.cs -------------------------------------------------------------------------------- /src/Interop/TransparencyMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Interop/TransparencyMapping.cs -------------------------------------------------------------------------------- /src/JpegXLFileType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/JpegXLFileType.cs -------------------------------------------------------------------------------- /src/JpegXLFileType.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/JpegXLFileType.csproj -------------------------------------------------------------------------------- /src/JpegXLFileType.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/JpegXLFileType.sln -------------------------------------------------------------------------------- /src/JpegXLFileType.sln.licenseheader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/JpegXLFileType.sln.licenseheader -------------------------------------------------------------------------------- /src/JpegXLFileTypeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/JpegXLFileTypeFactory.cs -------------------------------------------------------------------------------- /src/JpegXLLoad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/JpegXLLoad.cs -------------------------------------------------------------------------------- /src/JpegXLSave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/JpegXLSave.cs -------------------------------------------------------------------------------- /src/JxlFileTypeIO/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/JxlFileTypeIO/Common.cpp -------------------------------------------------------------------------------- /src/JxlFileTypeIO/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/JxlFileTypeIO/Common.h -------------------------------------------------------------------------------- /src/JxlFileTypeIO/Decoder/DecoderContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/JxlFileTypeIO/Decoder/DecoderContext.cpp -------------------------------------------------------------------------------- /src/JxlFileTypeIO/Decoder/DecoderContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/JxlFileTypeIO/Decoder/DecoderContext.h -------------------------------------------------------------------------------- /src/JxlFileTypeIO/Decoder/JxlDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/JxlFileTypeIO/Decoder/JxlDecoder.cpp -------------------------------------------------------------------------------- /src/JxlFileTypeIO/Decoder/JxlDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/JxlFileTypeIO/Decoder/JxlDecoder.h -------------------------------------------------------------------------------- /src/JxlFileTypeIO/Decoder/JxlDecoderTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/JxlFileTypeIO/Decoder/JxlDecoderTypes.h -------------------------------------------------------------------------------- /src/JxlFileTypeIO/Encoder/JxlEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/JxlFileTypeIO/Encoder/JxlEncoder.cpp -------------------------------------------------------------------------------- /src/JxlFileTypeIO/Encoder/JxlEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/JxlFileTypeIO/Encoder/JxlEncoder.h -------------------------------------------------------------------------------- /src/JxlFileTypeIO/Encoder/JxlEncoderTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/JxlFileTypeIO/Encoder/JxlEncoderTypes.h -------------------------------------------------------------------------------- /src/JxlFileTypeIO/Encoder/OutputProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/JxlFileTypeIO/Encoder/OutputProcessor.cpp -------------------------------------------------------------------------------- /src/JxlFileTypeIO/Encoder/OutputProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/JxlFileTypeIO/Encoder/OutputProcessor.h -------------------------------------------------------------------------------- /src/JxlFileTypeIO/Encoder/PixelFormatConversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/JxlFileTypeIO/Encoder/PixelFormatConversion.cpp -------------------------------------------------------------------------------- /src/JxlFileTypeIO/Encoder/PixelFormatConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/JxlFileTypeIO/Encoder/PixelFormatConversion.h -------------------------------------------------------------------------------- /src/JxlFileTypeIO/JxlFileTypeIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/JxlFileTypeIO/JxlFileTypeIO.cpp -------------------------------------------------------------------------------- /src/JxlFileTypeIO/JxlFileTypeIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/JxlFileTypeIO/JxlFileTypeIO.h -------------------------------------------------------------------------------- /src/JxlFileTypeIO/JxlFileTypeIO.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/JxlFileTypeIO/JxlFileTypeIO.vcxproj -------------------------------------------------------------------------------- /src/JxlFileTypeIO/JxlFileTypeIO.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/JxlFileTypeIO/JxlFileTypeIO.vcxproj.filters -------------------------------------------------------------------------------- /src/JxlFileTypeIO/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/JxlFileTypeIO/resource.h -------------------------------------------------------------------------------- /src/JxlFileTypeIO/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/JxlFileTypeIO/vcpkg.json -------------------------------------------------------------------------------- /src/JxlFileTypeIO/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/JxlFileTypeIO/version.rc -------------------------------------------------------------------------------- /src/Localization/BuiltinStringResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Localization/BuiltinStringResourceManager.cs -------------------------------------------------------------------------------- /src/Localization/IJpegXLStringResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Localization/IJpegXLStringResourceManager.cs -------------------------------------------------------------------------------- /src/Localization/PdnLocalizedStringResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Localization/PdnLocalizedStringResourceManager.cs -------------------------------------------------------------------------------- /src/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/VersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xC0000054/pdn-jpegxl/HEAD/src/VersionInfo.cs --------------------------------------------------------------------------------