kakashilw

Results 16 issues of kakashilw

你好,首先感谢提供了这个库,以及很好的存储思路。 我运行你的demo,然后把用户选择的图片存到沙盒,然后再用这个方法 NSString *url = @"file://xxx/Documents/imageName.png"; NSString *html = [attr rz_codingToHtmlWithImagesURLSIfHad:@[url]]; 获取到html,然后存储到草稿,然后再从草稿读取,也做了替换,图片可以正常读取出来,不过有个问题是 **### 重新读取的图片不自适应UITextView的宽度了,而是直接显示的是原图的大小** 不知道有什么方法可以让图片自适应吗?

你好,根据你之前的方法 - (void)insertImage:(UIImage *)image { ... CGFloat width = image.size.width; CGFloat height = image.size.height; if (width > self.frame.size.width - 20) { width = self.frame.size.width - 20; height = height *...

gpuimage在一个视频里添加2种水印,分别用 GPUImageNormalBlendFilter 和 GPUImageOverlayBlendFilter,一种正常就贴一张logo,另一种是加类似噪点的那种背景图,用了混合模式。 但是两种同时使用的话,就互相影响了,即后来用哪一种,前一种页自动变成后面的那种模式了。 有谁解决过这个问题吗?

When I pulled at the four Angles , the width and height increase or decrease different speed how can make them increase or decrease same?

apk文件失效了,安装之后提示不能正常运行。

你好 首先特别感谢提供了这么好用的库。 不过我在使用中用到一个问题,就是当竖版排列的时候,如果文字没有像你的demo里手动加上\n的话,是不能换行的。 `NSAttributedString *string1 = [[NSAttributedString alloc] initWithString:@"asdasqwecx12ok东皋嘉雨新痕涨,沙觜鹭来鸥聚。\n堪爱处最好是、一川夜月光流渚。\n无人独舞。\n任翠幄张天,柔茵藉地,酒尽未能去。\n青绫被,莫忆金闺故步。\n儒冠曾把身误。\n弓刀千骑成何事,荒了邵平瓜圃。\n君试觑。\n满青镜、星星鬓影今如许。\n功名浪语。fgff便似得班超,封侯万里,dadaaf归计恐迟暮。"];` 所以比如用户如果输入了很长一段,比如 `NSAttributedString *string1 = [[NSAttributedString alloc] initWithString:@"asdasqwecx12okasdasqwecx12okasdasqwecx12okasdasqwecx12okasdasqwecx12okasdasqwecx12okasdasqwecx12okasdasqwecx12okasdasqwecx12ok"];` 有什么办法可以根据view的宽度或者高度自动换行吗?或者要如何计算换行呢?