1
1
## Get Started
2
2
3
- Translations: [ 简体中文] ( getstarted_zh .md)
3
+ Translations: [ 简体中文] ( getting_started.zh .md)
4
4
5
5
## Components
6
6
@@ -44,7 +44,7 @@ Android view:
44
44
45
45
> [ !TIP]
46
46
> * Different components need to import different dependencies, please refer
47
- to [README](../../ README.md#download) to import the corresponding dependencies*
47
+ to [README](../README.md#download) to import the corresponding dependencies*
48
48
> * Components with integrated image loaders can support image and subsampling from any source
49
49
without any additional work
50
50
> * Components that do not integrate an image loader can only display local images and require an
@@ -61,7 +61,7 @@ val zoomState: ZoomState by rememberZoomState()
61
61
LaunchedEffect (zoomState.subsampling) {
62
62
val resUri = Res .getUri(" files/huge_world.jpeg" )
63
63
val imageSource = ImageSource .fromComposeResource(resUri)
64
- zoomState.setSubsamplingImage(imageSource)
64
+ zoomState.setSubsamplingImage(imageSource)
65
65
}
66
66
ZoomImage (
67
67
painter = painterResource(Res .drawable.huge_world_thumbnail),
@@ -229,41 +229,41 @@ val subsampling: SubsamplingEngine = sketchZoomImageView.subsampling
229
229
* [ Log: Modify log level and output pipeline] ( log.md )
230
230
* [ Modifier.zoom()] ( modifier_zoom.md )
231
231
232
- [ ZoomImage ] : ../../ zoomimage-compose/src/commonMain/kotlin/com/github/panpf/zoomimage/ZoomImage.kt
232
+ [ ZoomImage ] : ../zoomimage-compose/src/commonMain/kotlin/com/github/panpf/zoomimage/ZoomImage.kt
233
233
234
- [ CoilZoomAsyncImage ] : ../../ zoomimage-compose-coil3/src/commonMain/kotlin/com/github/panpf/zoomimage/SingletonCoilZoomAsyncImage.kt
234
+ [ CoilZoomAsyncImage ] : ../zoomimage-compose-coil3/src/commonMain/kotlin/com/github/panpf/zoomimage/SingletonCoilZoomAsyncImage.kt
235
235
236
- [ GlideZoomAsyncImage ] : ../../ zoomimage-compose-glide/src/main/kotlin/com/github/panpf/zoomimage/GlideZoomAsyncImage.kt
236
+ [ GlideZoomAsyncImage ] : ../zoomimage-compose-glide/src/main/kotlin/com/github/panpf/zoomimage/GlideZoomAsyncImage.kt
237
237
238
- [ SketchZoomAsyncImage ] : ../../ zoomimage-compose-sketch4/src/commonMain/kotlin/com/github/panpf/zoomimage/SingletonSketchZoomAsyncImage.kt
238
+ [ SketchZoomAsyncImage ] : ../zoomimage-compose-sketch4/src/commonMain/kotlin/com/github/panpf/zoomimage/SingletonSketchZoomAsyncImage.kt
239
239
240
- [ ZoomImageSample ] : ../../ sample/src/commonMain/kotlin/com/github/panpf/zoomimage/sample/ui/examples/BasicZoomImageSample.kt
240
+ [ ZoomImageSample ] : ../sample/src/commonMain/kotlin/com/github/panpf/zoomimage/sample/ui/examples/BasicZoomImageSample.kt
241
241
242
- [ CoilZoomAsyncImageSample ] : ../../ sample/src/commonMain/kotlin/com/github/panpf/zoomimage/sample/ui/examples/CoilZoomAsyncImageSample.common.kt
242
+ [ CoilZoomAsyncImageSample ] : ../sample/src/commonMain/kotlin/com/github/panpf/zoomimage/sample/ui/examples/CoilZoomAsyncImageSample.common.kt
243
243
244
- [ GlideZoomAsyncImageSample ] : ../../ sample/src/androidMain/kotlin/com/github/panpf/zoomimage/sample/ui/examples/GlideZoomAsyncImageSample.kt
244
+ [ GlideZoomAsyncImageSample ] : ../sample/src/androidMain/kotlin/com/github/panpf/zoomimage/sample/ui/examples/GlideZoomAsyncImageSample.kt
245
245
246
- [ SketchZoomAsyncImageSample ] : ../../ sample/src/commonMain/kotlin/com/github/panpf/zoomimage/sample/ui/examples/SketchZoomAsyncImageSample.kt
246
+ [ SketchZoomAsyncImageSample ] : ../sample/src/commonMain/kotlin/com/github/panpf/zoomimage/sample/ui/examples/SketchZoomAsyncImageSample.kt
247
247
248
- [ ZoomImageView ] : ../../ zoomimage-view/src/main/kotlin/com/github/panpf/zoomimage/ZoomImageView.kt
248
+ [ ZoomImageView ] : ../zoomimage-view/src/main/kotlin/com/github/panpf/zoomimage/ZoomImageView.kt
249
249
250
- [ CoilZoomImageView ] : ../../ zoomimage-view-coil3-core/src/main/kotlin/com/github/panpf/zoomimage/CoilZoomImageView.kt
250
+ [ CoilZoomImageView ] : ../zoomimage-view-coil3-core/src/main/kotlin/com/github/panpf/zoomimage/CoilZoomImageView.kt
251
251
252
- [ GlideZoomImageView ] : ../../ zoomimage-view-glide/src/main/kotlin/com/github/panpf/zoomimage/GlideZoomImageView.kt
252
+ [ GlideZoomImageView ] : ../zoomimage-view-glide/src/main/kotlin/com/github/panpf/zoomimage/GlideZoomImageView.kt
253
253
254
- [ PicassoZoomImageView ] : ../../ zoomimage-view-picasso/src/main/kotlin/com/github/panpf/zoomimage/PicassoZoomImageView.kt
254
+ [ PicassoZoomImageView ] : ../zoomimage-view-picasso/src/main/kotlin/com/github/panpf/zoomimage/PicassoZoomImageView.kt
255
255
256
- [ SketchZoomImageView ] : ../../ zoomimage-view-sketch4-core/src/main/kotlin/com/github/panpf/zoomimage/SketchZoomImageView.kt
256
+ [ SketchZoomImageView ] : ../zoomimage-view-sketch4-core/src/main/kotlin/com/github/panpf/zoomimage/SketchZoomImageView.kt
257
257
258
- [ ZoomImageViewFragment ] : ../../ sample/src/androidMain/kotlin/com/github/panpf/zoomimage/sample/ui/examples/BasicZoomImageViewFragment.kt
258
+ [ ZoomImageViewFragment ] : ../sample/src/androidMain/kotlin/com/github/panpf/zoomimage/sample/ui/examples/BasicZoomImageViewFragment.kt
259
259
260
- [ CoilZoomImageViewFragment ] : ../../ sample/src/androidMain/kotlin/com/github/panpf/zoomimage/sample/ui/examples/CoilZoomImageViewFragment.kt
260
+ [ CoilZoomImageViewFragment ] : ../sample/src/androidMain/kotlin/com/github/panpf/zoomimage/sample/ui/examples/CoilZoomImageViewFragment.kt
261
261
262
- [ GlideZoomImageViewFragment ] : ../../ sample/src/androidMain/kotlin/com/github/panpf/zoomimage/sample/ui/examples/GlideZoomImageViewFragment.kt
262
+ [ GlideZoomImageViewFragment ] : ../sample/src/androidMain/kotlin/com/github/panpf/zoomimage/sample/ui/examples/GlideZoomImageViewFragment.kt
263
263
264
- [ PicassoZoomImageViewFragment ] : ../../ sample/src/androidMain/kotlin/com/github/panpf/zoomimage/sample/ui/examples/PicassoZoomImageViewFragment.kt
264
+ [ PicassoZoomImageViewFragment ] : ../sample/src/androidMain/kotlin/com/github/panpf/zoomimage/sample/ui/examples/PicassoZoomImageViewFragment.kt
265
265
266
- [ SketchZoomImageViewFragment ] : ../../ sample/src/androidMain/kotlin/com/github/panpf/zoomimage/sample/ui/examples/SketchZoomImageViewFragment.kt
266
+ [ SketchZoomImageViewFragment ] : ../sample/src/androidMain/kotlin/com/github/panpf/zoomimage/sample/ui/examples/SketchZoomImageViewFragment.kt
267
267
268
268
[ Sketch ] : https://github.com/panpf/sketch
269
269
@@ -279,16 +279,16 @@ val subsampling: SubsamplingEngine = sketchZoomImageView.subsampling
279
279
280
280
[ Picasso ] : https://github.com/square/picasso
281
281
282
- [ ZoomableState ] : ../../ zoomimage-compose/src/commonMain/kotlin/com/github/panpf/zoomimage/compose/zoom/ZoomableState.kt
282
+ [ ZoomableState ] : ../zoomimage-compose/src/commonMain/kotlin/com/github/panpf/zoomimage/compose/zoom/ZoomableState.kt
283
283
284
- [ SubsamplingState ] : ../../ zoomimage-compose/src/commonMain/kotlin/com/github/panpf/zoomimage/compose/subsampling/SubsamplingState.kt
284
+ [ SubsamplingState ] : ../zoomimage-compose/src/commonMain/kotlin/com/github/panpf/zoomimage/compose/subsampling/SubsamplingState.kt
285
285
286
- [ ZoomableEngine ] : ../../ zoomimage-view/src/main/kotlin/com/github/panpf/zoomimage/view/zoom/ZoomableEngine.kt
286
+ [ ZoomableEngine ] : ../zoomimage-view/src/main/kotlin/com/github/panpf/zoomimage/view/zoom/ZoomableEngine.kt
287
287
288
- [ SubsamplingEngine ] : ../../ zoomimage-view/src/main/kotlin/com/github/panpf/zoomimage/view/subsampling/SubsamplingEngine.kt
288
+ [ SubsamplingEngine ] : ../zoomimage-view/src/main/kotlin/com/github/panpf/zoomimage/view/subsampling/SubsamplingEngine.kt
289
289
290
- [ ZoomImageView ] : ../../ zoomimage-view/src/main/kotlin/com/github/panpf/zoomimage/ZoomImageView.kt
290
+ [ ZoomImageView ] : ../zoomimage-view/src/main/kotlin/com/github/panpf/zoomimage/ZoomImageView.kt
291
291
292
- [ ZoomImage ] : ../../ zoomimage-compose/src/commonMain/kotlin/com/github/panpf/zoomimage/ZoomImage.kt
292
+ [ ZoomImage ] : ../zoomimage-compose/src/commonMain/kotlin/com/github/panpf/zoomimage/ZoomImage.kt
293
293
294
- [ ZoomState ] : ../../ zoomimage-compose/src/commonMain/kotlin/com/github/panpf/zoomimage/compose/ZoomState.kt
294
+ [ ZoomState ] : ../zoomimage-compose/src/commonMain/kotlin/com/github/panpf/zoomimage/compose/ZoomState.kt
0 commit comments