Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

条漫显示模糊 #132

Open
Silver7758 opened this issue Apr 8, 2024 · 2 comments
Open

条漫显示模糊 #132

Silver7758 opened this issue Apr 8, 2024 · 2 comments

Comments

@Silver7758
Copy link

安装了v0.7.2。

目前仍有条漫模糊的问题,症状与原描述相同。

Screenrecorder-2024-04-06-10-43-16-795.20240406-105359.mp4

Originally posted by @Silver7758 in #126 (comment)

@raoxiongwen
Copy link
Contributor

初步判断条漫模糊应该是“@georstat/react-native-image-cache”这个三方库导致的,我将其替换为“react-native-fast-image”漫画清晰程度跟官方网站一致(10M以内的视频可真难录)。

S40409-22184815.mp4
  //ComicImage.tsx

  // return (
  //   <CachedImage
  //     source={uri}
  //     options={{ headers }}
  //     style={style}
  //     resizeMode={resizeModeDict[layoutMode]}
  //     onError={handleError}
  //   />
  // );

  return (
    <FastImage
      style={style}
      source={{
        uri,
        headers: headers,
      }}
      resizeMode={resizeModeDict[layoutMode]}
      onError={handleError}
    />
  );

@youniaogu
Copy link
Owner

之前那个 issues 我以为是 manhuagui 的问题,现在 copy 也有这个问题,确实是原生 Image 组件导致的

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants