1 Star 0 Fork 0

Mag1cPanda / ios-doc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Image-processing.html 14.76 KB
一键复制 编辑 原始数据 按行查看 历史
Mag1cPanda 提交于 2020-05-27 17:24 . first commit
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568
<!DOCTYPE HTML>
<html lang="" >
<head>
<meta charset="UTF-8">
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>图像处理 · GitBook</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="description" content="">
<meta name="generator" content="GitBook 3.2.3">
<link rel="stylesheet" href="gitbook/style.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-highlight/website.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-search/search.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-fontsettings/website.css">
<meta name="HandheldFriendly" content="true"/>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="gitbook/images/apple-touch-icon-precomposed-152.png">
<link rel="shortcut icon" href="gitbook/images/favicon.ico" type="image/x-icon">
<link rel="next" href="Data-encryption.html" />
<link rel="prev" href="Animation.html" />
</head>
<body>
<div class="book">
<div class="book-summary">
<div id="book-search-input" role="search">
<input type="text" placeholder="Type to search" />
</div>
<nav role="navigation">
<ul class="summary">
<li class="chapter " data-level="1.1" data-path="./">
<a href="./">
关于
</a>
</li>
<li class="header">Part I</li>
<li class="chapter " data-level="2.1" data-path="Data-structure.html">
<a href="Data-structure.html">
数据结构
</a>
</li>
<li class="chapter " data-level="2.2" data-path="Arithmetic.html">
<a href="Arithmetic.html">
算法
</a>
</li>
<li class="header">Part II</li>
<li class="chapter " data-level="3.1" data-path="Foundation.html">
<a href="Foundation.html">
Foundation
</a>
</li>
<li class="chapter " data-level="3.2" data-path="UIKit.html">
<a href="UIKit.html">
UIKit
</a>
</li>
<li class="chapter " data-level="3.3" data-path="WebView.html">
<a href="WebView.html">
WebView
</a>
</li>
<li class="chapter " data-level="3.4" data-path="Memory-management.html">
<a href="Memory-management.html">
内存管理
</a>
</li>
<li class="chapter " data-level="3.5" data-path="Message-passing.html">
<a href="Message-passing.html">
消息传递的方式
</a>
</li>
<li class="chapter " data-level="3.6" data-path="Network.html">
<a href="Network.html">
网络
</a>
</li>
<li class="chapter " data-level="3.7" data-path="Data-storage.html">
<a href="Data-storage.html">
数据存储
</a>
</li>
<li class="chapter " data-level="3.8" data-path="Multi-thread.html">
<a href="Multi-thread.html">
多线程
</a>
</li>
<li class="chapter " data-level="3.9" data-path="Animation.html">
<a href="Animation.html">
动画
</a>
</li>
<li class="chapter active" data-level="3.10" data-path="Image-processing.html">
<a href="Image-processing.html">
图像处理
</a>
</li>
<li class="chapter " data-level="3.11" data-path="Data-encryption.html">
<a href="Data-encryption.html">
数据安全及加密
</a>
</li>
<li class="chapter " data-level="3.12" data-path="Runtime.html">
<a href="Runtime.html">
Runtime
</a>
</li>
<li class="chapter " data-level="3.13" data-path="Runloop.html">
<a href="Runloop.html">
Runloop
</a>
</li>
<li class="header">Part III</li>
<li class="chapter " data-level="4.1" data-path="Project-organization.html">
<a href="Project-organization.html">
项目架构
</a>
</li>
<li class="chapter " data-level="4.2" data-path="Design-patterns.html">
<a href="Design-patterns.html">
设计模式
</a>
</li>
<li class="chapter " data-level="4.3" data-path="Component-based.html">
<a href="Component-based.html">
组件化
</a>
</li>
<li class="chapter " data-level="4.4" data-path="Debug-tips.html">
<a href="Debug-tips.html">
调试技巧
</a>
</li>
<li class="chapter " data-level="4.5" data-path="Performance-optimization.html">
<a href="Performance-optimization.html">
性能优化
</a>
</li>
<li class="chapter " data-level="4.6" data-path="Source-code.html">
<a href="Source-code.html">
源码理解
</a>
</li>
<li class="chapter " data-level="4.7" data-path="Code-management.html">
<a href="Code-management.html">
代码管理
</a>
</li>
<li class="chapter " data-level="4.8" data-path="Continuous-integration.html">
<a href="Continuous-integration.html">
持续集成
</a>
</li>
<li class="divider"></li>
<li>
<a href="https://www.gitbook.com" target="blank" class="gitbook-link">
Published with GitBook
</a>
</li>
</ul>
</nav>
</div>
<div class="book-body">
<div class="body-inner">
<div class="book-header" role="navigation">
<!-- Title -->
<h1>
<i class="fa fa-circle-o-notch fa-spin"></i>
<a href="." >图像处理</a>
</h1>
</div>
<div class="page-wrapper" tabindex="-1" role="main">
<div class="page-inner">
<div id="book-search-results">
<div class="search-noresults">
<section class="normal markdown-section">
<h1 id="&#x56FE;&#x50CF;&#x5904;&#x7406;">&#x56FE;&#x50CF;&#x5904;&#x7406;</h1>
<h2 id="1&#x56FE;&#x50CF;&#x7684;&#x538B;&#x7F29;&#x65B9;&#x5F0F;">1.&#x56FE;&#x50CF;&#x7684;&#x538B;&#x7F29;&#x65B9;&#x5F0F;</h2>
<ul>
<li><p>&#x538B;&#x7F29;&#x56FE;&#x7247;&#x8D28;&#x91CF;</p>
<p> &#x4E00;&#x822C;&#x60C5;&#x51B5;&#x4E0B;&#x4F7F;&#x7528;UIImageJPEGRepresentation&#x6216;UIImagePNGRepresentation&#x65B9;&#x6CD5;&#x5B9E;&#x73B0;&#x3002;</p>
</li>
<li><p>&#x538B;&#x7F29;&#x56FE;&#x7247;&#x5C3A;&#x5BF8;</p>
<p> &#x4E00;&#x822C;&#x901A;&#x8FC7;&#x6307;&#x5B9A;&#x538B;&#x7F29;&#x7684;&#x5927;&#x5C0F;&#x5BF9;&#x56FE;&#x50CF;&#x8FDB;&#x884C;&#x91CD;&#x7ED8;</p>
</li>
</ul>
<h2 id="2&#x5982;&#x4F55;&#x8BA1;&#x7B97;&#x56FE;&#x7247;&#x52A0;&#x8F7D;&#x5185;&#x5B58;&#x4E2D;&#x6240;&#x5360;&#x7684;&#x5927;&#x5C0F;">2.&#x5982;&#x4F55;&#x8BA1;&#x7B97;&#x56FE;&#x7247;&#x52A0;&#x8F7D;&#x5185;&#x5B58;&#x4E2D;&#x6240;&#x5360;&#x7684;&#x5927;&#x5C0F;</h2>
<p>&#x56FE;&#x7247;&#x5185;&#x5B58;&#x5927;&#x5C0F;&#x7684;&#x8BA1;&#x7B97;&#x516C;&#x5F0F; &#x5BBD;&#x5EA6; <em> &#x9AD8;&#x5EA6; </em> bytesPerPixel/8&#x3002;</p>
<p>bytesPerPixel : &#x6BCF;&#x4E2A;&#x50CF;&#x7D20;&#x6240;&#x5360;&#x7684;&#x5B57;&#x8282;&#x6570;&#x3002;</p>
<p>RGBA&#x989C;&#x8272;&#x7A7A;&#x95F4;&#x4E0B; &#x6BCF;&#x4E2A;&#x989C;&#x8272;&#x5206;&#x91CF;&#x7531;32&#x4F4D;&#x7EC4;&#x6210;</p>
<p>&#x6240;&#x4EE5;&#x4E00;&#x822C;&#x56FE;&#x7247;&#x7684;&#x8BA1;&#x7B97;&#x516C;&#x5F0F;&#x662F; wxhx4 </p>
</section>
</div>
<div class="search-results">
<div class="has-results">
<h1 class="search-results-title"><span class='search-results-count'></span> results matching "<span class='search-query'></span>"</h1>
<ul class="search-results-list"></ul>
</div>
<div class="no-results">
<h1 class="search-results-title">No results matching "<span class='search-query'></span>"</h1>
</div>
</div>
</div>
</div>
</div>
</div>
<a href="Animation.html" class="navigation navigation-prev " aria-label="Previous page: 动画">
<i class="fa fa-angle-left"></i>
</a>
<a href="Data-encryption.html" class="navigation navigation-next " aria-label="Next page: 数据安全及加密">
<i class="fa fa-angle-right"></i>
</a>
</div>
<script>
var gitbook = gitbook || [];
gitbook.push(function() {
gitbook.page.hasChanged({"page":{"title":"图像处理","level":"3.10","depth":1,"next":{"title":"数据安全及加密","level":"3.11","depth":1,"path":"Data-encryption.md","ref":"Data-encryption.md","articles":[]},"previous":{"title":"动画","level":"3.9","depth":1,"path":"Animation.md","ref":"Animation.md","articles":[]},"dir":"ltr"},"config":{"gitbook":"*","theme":"default","variables":{},"plugins":["livereload"],"pluginsConfig":{"livereload":{},"highlight":{},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"fontsettings":{"theme":"white","family":"sans","size":2},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"}},"file":{"path":"Image-processing.md","mtime":"2020-04-13T10:23:32.000Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-05-27T09:12:21.691Z"},"basePath":".","book":{"language":""}});
});
</script>
</div>
<script src="gitbook/gitbook.js"></script>
<script src="gitbook/theme.js"></script>
<script src="gitbook/gitbook-plugin-livereload/plugin.js"></script>
<script src="gitbook/gitbook-plugin-search/search-engine.js"></script>
<script src="gitbook/gitbook-plugin-search/search.js"></script>
<script src="gitbook/gitbook-plugin-lunr/lunr.min.js"></script>
<script src="gitbook/gitbook-plugin-lunr/search-lunr.js"></script>
<script src="gitbook/gitbook-plugin-sharing/buttons.js"></script>
<script src="gitbook/gitbook-plugin-fontsettings/fontsettings.js"></script>
</body>
</html>
1
https://gitee.com/mag1cpanda/ios-doc.git
git@gitee.com:mag1cpanda/ios-doc.git
mag1cpanda
ios-doc
ios-doc
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891