1
Fork 0
This repository has been archived on 2025-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
silica-viewer/Dependencies/PSDWriter/Documentation/Classes/PSDLayer.html
Joshua Goins ee81008930 Add experimental PSD exporting
Not everything is working yet, this requires
more PSDWriter modifications.
2022-02-28 12:04:08 -04:00

447 lines
No EOL
12 KiB
HTML

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="html/html; charset=utf-8" />
<title>PSDLayer Class Reference</title>
<meta id="xcode-display" name="xcode-display" content="render"/>
<meta name="viewport" content="width=550" />
<link rel="stylesheet" type="text/css" href="../css/styles.css" media="all" />
<link rel="stylesheet" type="text/css" media="print" href="../css/stylesPrint.css" />
<meta name="generator" content="appledoc 2.0.5 (build 759)" />
</head>
<body>
<header id="top_header">
<div id="library" class="hideInXcode">
<h1><a id="libraryTitle" href="../index.html">PSDWriter Documentation </a></h1>
<a id="developerHome" href="../index.html">Foundry376</a>
</div>
<div id="title" role="banner">
<h1 class="hideInXcode">PSDLayer Class Reference</h1>
</div>
<ul id="headerButtons" role="toolbar">
<li id="toc_button">
<button aria-label="Show Table of Contents" role="checkbox" class="open" id="table_of_contents"><span class="disclosure"></span>Table of Contents</button>
</li>
<li id="jumpto_button" role="navigation">
<select id="jumpTo">
<option value="top">Jump To&#133;</option>
<option value="tasks">Tasks</option>
<option value="properties">Properties</option>
<option value="//api/name/imageData">&nbsp;&nbsp;&nbsp;&nbsp;imageData</option>
<option value="//api/name/name">&nbsp;&nbsp;&nbsp;&nbsp;name</option>
<option value="//api/name/opacity">&nbsp;&nbsp;&nbsp;&nbsp;opacity</option>
<option value="//api/name/rect">&nbsp;&nbsp;&nbsp;&nbsp;rect</option>
</select>
</li>
</ul>
</header>
<nav id="tocContainer" class="isShowingTOC">
<ul id="toc" role="tree">
<li role="treeitem" id="task_treeitem"><span class="nodisclosure"></span><span class="sectionName"><a href="#tasks">Tasks</a></span><ul>
</ul></li>
<li role="treeitem" class="children"><span class="disclosure"></span><span class="sectionName"><a href="#properties">Properties</a></span><ul>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/imageData">imageData</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/name">name</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/opacity">opacity</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/rect">rect</a></span></li>
</ul></li>
</ul>
</nav>
<article>
<div id="contents" class="isShowingTOC" role="main">
<a title="PSDLayer Class Reference" name="top"></a>
<div class="main-navigation navigation-top">
<ul>
<li><a href="../index.html">Index</a></li>
<li><a href="../hierarchy.html">Hierarchy</a></li>
</ul>
</div>
<div id="header">
<div class="section-header">
<h1 class="title title-header">PSDLayer Class Reference</h1>
</div>
</div>
<div id="container">
<div class="section section-specification"><table cellspacing="0"><tbody>
<tr>
<td class="specification-title">Inherits from</td>
<td class="specification-value">NSObject</td>
</tr><tr>
<td class="specification-title">Declared in</td>
<td class="specification-value">PSDLayer.h<br />PSDLayer.m</td>
</tr>
</tbody></table></div>
<div class="section section-tasks">
<a title="Tasks" name="tasks"></a>
<h2 class="subtitle subtitle-tasks">Tasks</h2>
<ul class="task-list">
<li>
<span class="tooltip">
<code><a href="#//api/name/name">&nbsp;&nbsp;name</a></code>
<span class="tooltip"><p>The <a href="#//api/name/name">name</a> of the layer. I believe this must be 16 characters or less.</p></span>
</span>
<span class="task-item-suffix">property</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/imageData">&nbsp;&nbsp;imageData</a></code>
<span class="tooltip"><p>The image data in RGBA or RGB format, depending on whether the <a href="../Classes/PSDWriter.html">PSDWriter</a>.layerChannelCount
is set to 4 or 3, respectively.</p></span>
</span>
<span class="task-item-suffix">property</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/opacity">&nbsp;&nbsp;opacity</a></code>
<span class="tooltip"><p>The <a href="#//api/name/opacity">opacity</a> of the layer between 0 and 1.</p></span>
</span>
<span class="task-item-suffix">property</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/rect">&nbsp;&nbsp;rect</a></code>
<span class="tooltip"><p>The rectangle the layer should be placed within in the PSD. Note that scaling is not currently
supported, so you should really only adjust the origin of this <a href="#//api/name/rect">rect</a> to move the <a href="#//api/name/imageData">imageData</a> around
within the PSD.</p></span>
</span>
<span class="task-item-suffix">property</span>
</li>
</ul>
</div>
<div class="section section-methods">
<a title="Properties" name="properties"></a>
<h2 class="subtitle subtitle-methods">Properties</h2>
<div class="section-method">
<a name="//api/name/imageData" title="imageData"></a>
<h3 class="subsubtitle method-title">imageData</h3>
<div class="method-subsection brief-description">
<p>The image data in RGBA or RGB format, depending on whether the <a href="../Classes/PSDWriter.html">PSDWriter</a>.layerChannelCount
is set to 4 or 3, respectively.</p>
</div>
<div class="method-subsection method-declaration"><code>@property (nonatomic, retain) NSData *imageData</code></div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The image data in RGBA or RGB format, depending on whether the <a href="../Classes/PSDWriter.html">PSDWriter</a>.layerChannelCount
is set to 4 or 3, respectively.</p>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">PSDLayer.h</code><br />
</div>
</div>
<div class="section-method">
<a name="//api/name/name" title="name"></a>
<h3 class="subsubtitle method-title">name</h3>
<div class="method-subsection brief-description">
<p>The <a href="#//api/name/name">name</a> of the layer. I believe this must be 16 characters or less.</p>
</div>
<div class="method-subsection method-declaration"><code>@property (nonatomic, retain) NSString *name</code></div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The <a href="#//api/name/name">name</a> of the layer. I believe this must be 16 characters or less.</p>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">PSDLayer.h</code><br />
</div>
</div>
<div class="section-method">
<a name="//api/name/opacity" title="opacity"></a>
<h3 class="subsubtitle method-title">opacity</h3>
<div class="method-subsection brief-description">
<p>The <a href="#//api/name/opacity">opacity</a> of the layer between 0 and 1.</p>
</div>
<div class="method-subsection method-declaration"><code>@property (nonatomic, assign) float opacity</code></div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The <a href="#//api/name/opacity">opacity</a> of the layer between 0 and 1.</p>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">PSDLayer.h</code><br />
</div>
</div>
<div class="section-method">
<a name="//api/name/rect" title="rect"></a>
<h3 class="subsubtitle method-title">rect</h3>
<div class="method-subsection brief-description">
<p>The rectangle the layer should be placed within in the PSD. Note that scaling is not currently
supported, so you should really only adjust the origin of this <a href="#//api/name/rect">rect</a> to move the <a href="#//api/name/imageData">imageData</a> around
within the PSD.</p>
</div>
<div class="method-subsection method-declaration"><code>@property (nonatomic, assign) CGRect rect</code></div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The rectangle the layer should be placed within in the PSD. Note that scaling is not currently
supported, so you should really only adjust the origin of this <a href="#//api/name/rect">rect</a> to move the <a href="#//api/name/imageData">imageData</a> around
within the PSD.</p>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">PSDLayer.h</code><br />
</div>
</div>
</div>
</div>
<div class="main-navigation navigation-bottom">
<ul>
<li><a href="../index.html">Index</a></li>
<li><a href="../hierarchy.html">Hierarchy</a></li>
</ul>
</div>
<div id="footer">
<hr />
<div class="footer-copyright">
<p><span class="copyright">&copy; 2012 Foundry376. All rights reserved. (Last updated: 2012-03-08)</span><br />
<span class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.0.5 (build 759)</a>.</span></p>
</div>
</div>
</div>
</article>
<script type="text/javascript">
function jumpToChange()
{
window.location.hash = this.options[this.selectedIndex].value;
}
function toggleTOC()
{
var contents = document.getElementById('contents');
var tocContainer = document.getElementById('tocContainer');
if (this.getAttribute('class') == 'open')
{
this.setAttribute('class', '');
contents.setAttribute('class', '');
tocContainer.setAttribute('class', '');
window.name = "hideTOC";
}
else
{
this.setAttribute('class', 'open');
contents.setAttribute('class', 'isShowingTOC');
tocContainer.setAttribute('class', 'isShowingTOC');
window.name = "";
}
return false;
}
function toggleTOCEntryChildren(e)
{
e.stopPropagation();
var currentClass = this.getAttribute('class');
if (currentClass == 'children') {
this.setAttribute('class', 'children open');
}
else if (currentClass == 'children open') {
this.setAttribute('class', 'children');
}
return false;
}
function tocEntryClick(e)
{
e.stopPropagation();
return true;
}
function init()
{
var selectElement = document.getElementById('jumpTo');
selectElement.addEventListener('change', jumpToChange, false);
var tocButton = document.getElementById('table_of_contents');
tocButton.addEventListener('click', toggleTOC, false);
var taskTreeItem = document.getElementById('task_treeitem');
if (taskTreeItem.getElementsByTagName('li').length > 0)
{
taskTreeItem.setAttribute('class', 'children');
taskTreeItem.firstChild.setAttribute('class', 'disclosure');
}
var tocList = document.getElementById('toc');
var tocEntries = tocList.getElementsByTagName('li');
for (var i = 0; i < tocEntries.length; i++) {
tocEntries[i].addEventListener('click', toggleTOCEntryChildren, false);
}
var tocLinks = tocList.getElementsByTagName('a');
for (var i = 0; i < tocLinks.length; i++) {
tocLinks[i].addEventListener('click', tocEntryClick, false);
}
if (window.name == "hideTOC") {
toggleTOC.call(tocButton);
}
}
window.onload = init;
</script>
</body>
</html>