@cpp.js/package-tiff 1.0.0-beta.26 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/README.md +1 -1
- package/dist/prebuilt/iOS-iphoneos/lib/libtiff.a +0 -0
- package/dist/prebuilt/iOS-iphoneos/lib/libtiffxx.a +0 -0
- package/dist/prebuilt/iOS-iphonesimulator/lib/libtiff.a +0 -0
- package/dist/prebuilt/iOS-iphonesimulator/lib/libtiffxx.a +0 -0
- package/package.json +3 -3
- package/tiff.xcframework/Info.plist +5 -5
- package/tiff.xcframework/ios-arm64_arm64e/libtiff.a +0 -0
- package/tiff.xcframework/ios-arm64_arm64e_x86_64-simulator/libtiff.a +0 -0
- package/tiffxx.xcframework/ios-arm64_arm64e/libtiffxx.a +0 -0
- package/tiffxx.xcframework/ios-arm64_arm64e_x86_64-simulator/libtiffxx.a +0 -0
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -47,4 +47,4 @@ std::string Native::sample() {
|
|
|
47
47
|
## License
|
|
48
48
|
This project includes the precompiled tiff library, which is distributed under the [libtiff License](https://libtiff.gitlab.io/libtiff/project/license.html).
|
|
49
49
|
|
|
50
|
-
Tiff Homepage:
|
|
50
|
+
Tiff Homepage: [https://libtiff.gitlab.io/libtiff/index.html](https://libtiff.gitlab.io/libtiff/index.html)
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cpp.js/package-tiff",
|
|
3
|
-
"version": "1.0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"nativeVersion": "4.7.0",
|
|
5
5
|
"description": "This package provides the Tiff library compiled with Cpp.js, enabling fast and efficient image processing using the TIFF format. It is built with Cpp.js to provide cross-platform support, leveraging both WebAssembly (WASM) for web applications and native code for mobile platforms. Ideal for developers looking to handle TIFF images with high performance in JavaScript environments.",
|
|
6
6
|
"homepage": "https://github.com/bugra9/cpp.js/tree/main/packages/cppjs-package-tiff#readme",
|
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
"license": "libtiff",
|
|
9
9
|
"type": "module",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@cpp.js/package-zlib": "^1.0.0
|
|
11
|
+
"@cpp.js/package-zlib": "^1.0.0"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
|
-
"cpp.js": "^1.0.0
|
|
14
|
+
"cpp.js": "^1.0.0"
|
|
15
15
|
},
|
|
16
16
|
"keywords": [
|
|
17
17
|
"tiff",
|
|
@@ -10,19 +10,16 @@
|
|
|
10
10
|
<key>HeadersPath</key>
|
|
11
11
|
<string>Headers</string>
|
|
12
12
|
<key>LibraryIdentifier</key>
|
|
13
|
-
<string>ios-
|
|
13
|
+
<string>ios-arm64_arm64e</string>
|
|
14
14
|
<key>LibraryPath</key>
|
|
15
15
|
<string>libtiff.a</string>
|
|
16
16
|
<key>SupportedArchitectures</key>
|
|
17
17
|
<array>
|
|
18
18
|
<string>arm64</string>
|
|
19
19
|
<string>arm64e</string>
|
|
20
|
-
<string>x86_64</string>
|
|
21
20
|
</array>
|
|
22
21
|
<key>SupportedPlatform</key>
|
|
23
22
|
<string>ios</string>
|
|
24
|
-
<key>SupportedPlatformVariant</key>
|
|
25
|
-
<string>simulator</string>
|
|
26
23
|
</dict>
|
|
27
24
|
<dict>
|
|
28
25
|
<key>BinaryPath</key>
|
|
@@ -30,16 +27,19 @@
|
|
|
30
27
|
<key>HeadersPath</key>
|
|
31
28
|
<string>Headers</string>
|
|
32
29
|
<key>LibraryIdentifier</key>
|
|
33
|
-
<string>ios-
|
|
30
|
+
<string>ios-arm64_arm64e_x86_64-simulator</string>
|
|
34
31
|
<key>LibraryPath</key>
|
|
35
32
|
<string>libtiff.a</string>
|
|
36
33
|
<key>SupportedArchitectures</key>
|
|
37
34
|
<array>
|
|
38
35
|
<string>arm64</string>
|
|
39
36
|
<string>arm64e</string>
|
|
37
|
+
<string>x86_64</string>
|
|
40
38
|
</array>
|
|
41
39
|
<key>SupportedPlatform</key>
|
|
42
40
|
<string>ios</string>
|
|
41
|
+
<key>SupportedPlatformVariant</key>
|
|
42
|
+
<string>simulator</string>
|
|
43
43
|
</dict>
|
|
44
44
|
</array>
|
|
45
45
|
<key>CFBundlePackageType</key>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|