チェンジセット 97

差分発生行の前後
無視リスト:
コミット日時:
2007/10/18 22:56:39 (5 年前)
コミッタ:
munegon
ログメッセージ:

--

ファイル:

凡例:

変更無し
追加
削除
更新
コピー
移動
  • munegon/as3/src/com/voidelement/images/psd/compression/ChannelRAWParser.as

    r96 r97  
     1/** 
     2 * com.voidelement.images.psd.PSDParser  Class for ActionScript 3.0  
     3 *   
     4 * @author       Copyright (c) 2007 munegon 
     5 * @version      0.2 
     6 *   
     7 * @link         http://www.voidelement.com/ 
     8 * @link         http://void.heteml.jp/blog/ 
     9 *  
     10 * Licensed under the Apache License, Version 2.0 (the "License");  
     11 * you may not use this file except in compliance with the License.  
     12 * You may obtain a copy of the License at  
     13 *   
     14 * http://www.apache.org/licenses/LICENSE-2.0  
     15 *   
     16 * Unless required by applicable law or agreed to in writing, software  
     17 * distributed under the License is distributed on an "AS IS" BASIS,  
     18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,   
     19 * either express or implied. See the License for the specific language  
     20 * governing permissions and limitations under the License.  
     21 */ 
     22 
     23 
    124package com.voidelement.images.psd.compression { 
    225        import flash.utils.ByteArray; 
  • munegon/as3/src/com/voidelement/images/psd/compression/ChannelRLEParser.as

    r96 r97  
     1/** 
     2 * com.voidelement.images.psd.PSDParser  Class for ActionScript 3.0  
     3 *   
     4 * @author       Copyright (c) 2007 munegon 
     5 * @version      0.2 
     6 *   
     7 * @link         http://www.voidelement.com/ 
     8 * @link         http://void.heteml.jp/blog/ 
     9 *  
     10 * Licensed under the Apache License, Version 2.0 (the "License");  
     11 * you may not use this file except in compliance with the License.  
     12 * You may obtain a copy of the License at  
     13 *   
     14 * http://www.apache.org/licenses/LICENSE-2.0  
     15 *   
     16 * Unless required by applicable law or agreed to in writing, software  
     17 * distributed under the License is distributed on an "AS IS" BASIS,  
     18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,   
     19 * either express or implied. See the License for the specific language  
     20 * governing permissions and limitations under the License.  
     21 */ 
     22 
     23 
    124package com.voidelement.images.psd.compression { 
    225        import com.voidelement.images.psd.compression.proto.RLEParser; 
  • munegon/as3/src/com/voidelement/images/psd/compression/ImageRAWParser.as

    r96 r97  
     1/** 
     2 * com.voidelement.images.psd.PSDParser  Class for ActionScript 3.0  
     3 *   
     4 * @author       Copyright (c) 2007 munegon 
     5 * @version      0.2 
     6 *   
     7 * @link         http://www.voidelement.com/ 
     8 * @link         http://void.heteml.jp/blog/ 
     9 *  
     10 * Licensed under the Apache License, Version 2.0 (the "License");  
     11 * you may not use this file except in compliance with the License.  
     12 * You may obtain a copy of the License at  
     13 *   
     14 * http://www.apache.org/licenses/LICENSE-2.0  
     15 *   
     16 * Unless required by applicable law or agreed to in writing, software  
     17 * distributed under the License is distributed on an "AS IS" BASIS,  
     18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,   
     19 * either express or implied. See the License for the specific language  
     20 * governing permissions and limitations under the License.  
     21 */ 
     22 
     23 
    124package com.voidelement.images.psd.compression { 
    225        import flash.utils.ByteArray; 
  • munegon/as3/src/com/voidelement/images/psd/compression/ImageRLEParser.as

    r96 r97  
     1/** 
     2 * com.voidelement.images.psd.PSDParser  Class for ActionScript 3.0  
     3 *   
     4 * @author       Copyright (c) 2007 munegon 
     5 * @version      0.2 
     6 *   
     7 * @link         http://www.voidelement.com/ 
     8 * @link         http://void.heteml.jp/blog/ 
     9 *  
     10 * Licensed under the Apache License, Version 2.0 (the "License");  
     11 * you may not use this file except in compliance with the License.  
     12 * You may obtain a copy of the License at  
     13 *   
     14 * http://www.apache.org/licenses/LICENSE-2.0  
     15 *   
     16 * Unless required by applicable law or agreed to in writing, software  
     17 * distributed under the License is distributed on an "AS IS" BASIS,  
     18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,   
     19 * either express or implied. See the License for the specific language  
     20 * governing permissions and limitations under the License.  
     21 */ 
     22 
     23 
    124package com.voidelement.images.psd.compression { 
    225        import com.voidelement.images.psd.compression.proto.RLEParser; 
  • munegon/as3/src/com/voidelement/images/psd/compression/proto/RLEParser.as

    r96 r97  
     1/** 
     2 * com.voidelement.images.psd.PSDParser  Class for ActionScript 3.0  
     3 *   
     4 * @author       Copyright (c) 2007 munegon 
     5 * @version      0.2 
     6 *   
     7 * @link         http://www.voidelement.com/ 
     8 * @link         http://void.heteml.jp/blog/ 
     9 *  
     10 * Licensed under the Apache License, Version 2.0 (the "License");  
     11 * you may not use this file except in compliance with the License.  
     12 * You may obtain a copy of the License at  
     13 *   
     14 * http://www.apache.org/licenses/LICENSE-2.0  
     15 *   
     16 * Unless required by applicable law or agreed to in writing, software  
     17 * distributed under the License is distributed on an "AS IS" BASIS,  
     18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,   
     19 * either express or implied. See the License for the specific language  
     20 * governing permissions and limitations under the License.  
     21 */ 
     22 
     23 
    124package com.voidelement.images.psd.compression.proto { 
    225        import flash.utils.ByteArray; 
  • munegon/as3/src/com/voidelement/images/psd/core/PString.as

    r96 r97  
     1/** 
     2 * com.voidelement.images.psd.PSDParser  Class for ActionScript 3.0  
     3 *   
     4 * @author       Copyright (c) 2007 munegon 
     5 * @version      0.2 
     6 *   
     7 * @link         http://www.voidelement.com/ 
     8 * @link         http://void.heteml.jp/blog/ 
     9 *  
     10 * Licensed under the Apache License, Version 2.0 (the "License");  
     11 * you may not use this file except in compliance with the License.  
     12 * You may obtain a copy of the License at  
     13 *   
     14 * http://www.apache.org/licenses/LICENSE-2.0  
     15 *   
     16 * Unless required by applicable law or agreed to in writing, software  
     17 * distributed under the License is distributed on an "AS IS" BASIS,  
     18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,   
     19 * either express or implied. See the License for the specific language  
     20 * governing permissions and limitations under the License.  
     21 */ 
     22 
     23 
    124package com.voidelement.images.psd.core { 
    225        import flash.utils.ByteArray; 
  • munegon/as3/src/com/voidelement/images/psd/core/PStringB2.as

    r96 r97  
     1/** 
     2 * com.voidelement.images.psd.PSDParser  Class for ActionScript 3.0  
     3 *   
     4 * @author       Copyright (c) 2007 munegon 
     5 * @version      0.2 
     6 *   
     7 * @link         http://www.voidelement.com/ 
     8 * @link         http://void.heteml.jp/blog/ 
     9 *  
     10 * Licensed under the Apache License, Version 2.0 (the "License");  
     11 * you may not use this file except in compliance with the License.  
     12 * You may obtain a copy of the License at  
     13 *   
     14 * http://www.apache.org/licenses/LICENSE-2.0  
     15 *   
     16 * Unless required by applicable law or agreed to in writing, software  
     17 * distributed under the License is distributed on an "AS IS" BASIS,  
     18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,   
     19 * either express or implied. See the License for the specific language  
     20 * governing permissions and limitations under the License.  
     21 */ 
     22 
     23 
    124package com.voidelement.images.psd.core { 
    225        import flash.utils.ByteArray; 
  • munegon/as3/src/com/voidelement/images/psd/core/PStringB4.as

    r96 r97  
     1/** 
     2 * com.voidelement.images.psd.PSDParser  Class for ActionScript 3.0  
     3 *   
     4 * @author       Copyright (c) 2007 munegon 
     5 * @version      0.2 
     6 *   
     7 * @link         http://www.voidelement.com/ 
     8 * @link         http://void.heteml.jp/blog/ 
     9 *  
     10 * Licensed under the Apache License, Version 2.0 (the "License");  
     11 * you may not use this file except in compliance with the License.  
     12 * You may obtain a copy of the License at  
     13 *   
     14 * http://www.apache.org/licenses/LICENSE-2.0  
     15 *   
     16 * Unless required by applicable law or agreed to in writing, software  
     17 * distributed under the License is distributed on an "AS IS" BASIS,  
     18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,   
     19 * either express or implied. See the License for the specific language  
     20 * governing permissions and limitations under the License.  
     21 */ 
     22 
     23 
    124package com.voidelement.images.psd.core { 
    225        import flash.utils.ByteArray; 
  • munegon/as3/src/com/voidelement/images/psd/core/Rect.as

    r96 r97  
     1/** 
     2 * com.voidelement.images.psd.PSDParser  Class for ActionScript 3.0  
     3 *   
     4 * @author       Copyright (c) 2007 munegon 
     5 * @version      0.2 
     6 *   
     7 * @link         http://www.voidelement.com/ 
     8 * @link         http://void.heteml.jp/blog/ 
     9 *  
     10 * Licensed under the Apache License, Version 2.0 (the "License");  
     11 * you may not use this file except in compliance with the License.  
     12 * You may obtain a copy of the License at  
     13 *   
     14 * http://www.apache.org/licenses/LICENSE-2.0  
     15 *   
     16 * Unless required by applicable law or agreed to in writing, software  
     17 * distributed under the License is distributed on an "AS IS" BASIS,  
     18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,   
     19 * either express or implied. See the License for the specific language  
     20 * governing permissions and limitations under the License.  
     21 */ 
     22 
     23 
    124package com.voidelement.images.psd.core { 
    225        import flash.utils.ByteArray; 
  • munegon/as3/src/com/voidelement/images/psd/core/SliceRect.as

    r96 r97  
     1/** 
     2 * com.voidelement.images.psd.PSDParser  Class for ActionScript 3.0  
     3 *   
     4 * @author       Copyright (c) 2007 munegon 
     5 * @version      0.2 
     6 *   
     7 * @link         http://www.voidelement.com/ 
     8 * @link         http://void.heteml.jp/blog/ 
     9 *  
     10 * Licensed under the Apache License, Version 2.0 (the "License");  
     11 * you may not use this file except in compliance with the License.  
     12 * You may obtain a copy of the License at  
     13 *   
     14 * http://www.apache.org/licenses/LICENSE-2.0  
     15 *   
     16 * Unless required by applicable law or agreed to in writing, software  
     17 * distributed under the License is distributed on an "AS IS" BASIS,  
     18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,   
     19 * either express or implied. See the License for the specific language  
     20 * governing permissions and limitations under the License.  
     21 */ 
     22 
     23 
    124package com.voidelement.images.psd.core { 
    225        import flash.utils.ByteArray; 
  • munegon/as3/src/com/voidelement/images/psd/core/VString.as

    r96 r97  
     1/** 
     2 * com.voidelement.images.psd.PSDParser  Class for ActionScript 3.0  
     3 *   
     4 * @author       Copyright (c) 2007 munegon 
     5 * @version      0.2 
     6 *   
     7 * @link         http://www.voidelement.com/ 
     8 * @link         http://void.heteml.jp/blog/ 
     9 *  
     10 * Licensed under the Apache License, Version 2.0 (the "License");  
     11 * you may not use this file except in compliance with the License.  
     12 * You may obtain a copy of the License at  
     13 *   
     14 * http://www.apache.org/licenses/LICENSE-2.0  
     15 *   
     16 * Unless required by applicable law or agreed to in writing, software  
     17 * distributed under the License is distributed on an "AS IS" BASIS,  
     18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,   
     19 * either express or implied. See the License for the specific language  
     20 * governing permissions and limitations under the License.  
     21 */ 
     22 
     23 
    124package com.voidelement.images.psd.core { 
    225        import flash.utils.ByteArray; 
  • munegon/as3/src/com/voidelement/images/psd/layer/ChannelLengthInfo.as

    r96 r97  
     1/** 
     2 * com.voidelement.images.psd.PSDParser  Class for ActionScript 3.0  
     3 *   
     4 * @author       Copyright (c) 2007 munegon 
     5 * @version      0.2 
     6 *   
     7 * @link         http://www.voidelement.com/ 
     8 * @link         http://void.heteml.jp/blog/ 
     9 *  
     10 * Licensed under the Apache License, Version 2.0 (the "License");  
     11 * you may not use this file except in compliance with the License.  
     12 * You may obtain a copy of the License at  
     13 *   
     14 * http://www.apache.org/licenses/LICENSE-2.0  
     15 *   
     16 * Unless required by applicable law or agreed to in writing, software  
     17 * distributed under the License is distributed on an "AS IS" BASIS,  
     18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,   
     19 * either express or implied. See the License for the specific language  
     20 * governing permissions and limitations under the License.  
     21 */ 
     22 
     23 
    124package com.voidelement.images.psd.layer { 
    225        import flash.utils.ByteArray; 
  • munegon/as3/src/com/voidelement/images/psd/layer/ChannelSourceRange.as

    r96 r97  
     1/** 
     2 * com.voidelement.images.psd.PSDParser  Class for ActionScript 3.0  
     3 *   
     4 * @author       Copyright (c) 2007 munegon 
     5 * @version      0.2 
     6 *   
     7 * @link         http://www.voidelement.com/ 
     8 * @link         http://void.heteml.jp/blog/ 
     9 *  
     10 * Licensed under the Apache License, Version 2.0 (the "License");  
     11 * you may not use this file except in compliance with the License.  
     12 * You may obtain a copy of the License at  
     13 *   
     14 * http://www.apache.org/licenses/LICENSE-2.0  
     15 *   
     16 * Unless required by applicable law or agreed to in writing, software  
     17 * distributed under the License is distributed on an "AS IS" BASIS,  
     18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,   
     19 * either express or implied. See the License for the specific language  
     20 * governing permissions and limitations under the License.  
     21 */ 
     22 
     23 
    124package com.voidelement.images.psd.layer { 
    225        import flash.utils.ByteArray; 
  • munegon/as3/src/com/voidelement/images/psd/layer/LayerPixelData.as

    r96 r97  
     1/** 
     2 * com.voidelement.images.psd.PSDParser  Class for ActionScript 3.0  
     3 *   
     4 * @author       Copyright (c) 2007 munegon 
     5 * @version      0.2 
     6 *   
     7 * @link         http://www.voidelement.com/ 
     8 * @link         http://void.heteml.jp/blog/ 
     9 *  
     10 * Licensed under the Apache License, Version 2.0 (the "License");  
     11 * you may not use this file except in compliance with the License.  
     12 * You may obtain a copy of the License at  
     13 *   
     14 * http://www.apache.org/licenses/LICENSE-2.0  
     15 *   
     16 * Unless required by applicable law or agreed to in writing, software  
     17 * distributed under the License is distributed on an "AS IS" BASIS,  
     18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,   
     19 * either express or implied. See the License for the specific language  
     20 * governing permissions and limitations under the License.  
     21 */ 
     22 
     23 
    124package com.voidelement.images.psd.layer { 
    225        import com.voidelement.images.psd.compression.ChannelRAWParser; 
  • munegon/as3/src/com/voidelement/images/psd/layer/LayerStructure.as

    r96 r97  
     1/** 
     2 * com.voidelement.images.psd.PSDParser  Class for ActionScript 3.0  
     3 *   
     4 * @author       Copyright (c) 2007 munegon 
     5 * @version      0.2 
     6 *   
     7 * @link         http://www.voidelement.com/ 
     8 * @link         http://void.heteml.jp/blog/ 
     9 *  
     10 * Licensed under the Apache License, Version 2.0 (the "License");  
     11 * you may not use this file except in compliance with the License.  
     12 * You may obtain a copy of the License at  
     13 *   
     14 * http://www.apache.org/licenses/LICENSE-2.0  
     15 *   
     16 * Unless required by applicable law or agreed to in writing, software  
     17 * distributed under the License is distributed on an "AS IS" BASIS,  
     18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,   
     19 * either express or implied. See the License for the specific language  
     20 * governing permissions and limitations under the License.  
     21 */ 
     22 
     23 
    124package com.voidelement.images.psd.layer { 
    225        import com.voidelement.images.psd.PSDParser; 
  • munegon/as3/src/com/voidelement/images/psd/resources/CopyrightFlag.as

    r96 r97  
     1/** 
     2 * com.voidelement.images.psd.PSDParser  Class for ActionScript 3.0  
     3 *   
     4 * @author       Copyright (c) 2007 munegon 
     5 * @version      0.2 
     6 *   
     7 * @link         http://www.voidelement.com/ 
     8 * @link         http://void.heteml.jp/blog/ 
     9 *  
     10 * Licensed under the Apache License, Version 2.0 (the "License");  
     11 * you may not use this file except in compliance with the License.  
     12 * You may obtain a copy of the License at  
     13 *   
     14 * http://www.apache.org/licenses/LICENSE-2.0  
     15 *   
     16 * Unless required by applicable law or agreed to in writing, software  
     17 * distributed under the License is distributed on an "AS IS" BASIS,  
     18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,   
     19 * either express or implied. See the License for the specific language  
     20 * governing permissions and limitations under the License.  
     21 */ 
     22 
     23 
    124package com.voidelement.images.psd.resources { 
    225        import com.voidelement.images.psd.PSDParser; 
  • munegon/as3/src/com/voidelement/images/psd/resources/DisplayInfo.as

    r96 r97  
     1/** 
     2 * com.voidelement.images.psd.PSDParser  Class for ActionScript 3.0  
     3 *   
     4 * @author       Copyright (c) 2007 munegon 
     5 * @version      0.2 
     6 *   
     7 * @link         http://www.voidelement.com/ 
     8 * @link         http://void.heteml.jp/blog/ 
     9 *  
     10 * Licensed under the Apache License, Version 2.0 (the "License");  
     11 * you may not use this file except in compliance with the License.  
     12 * You may obtain a copy of the License at  
     13 *   
     14 * http://www.apache.org/licenses/LICENSE-2.0  
     15 *   
     16 * Unless required by applicable law or agreed to in writing, software  
     17 * distributed under the License is distributed on an "AS IS" BASIS,  
     18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,   
     19 * either express or implied. See the License for the specific language  
     20 * governing permissions and limitations under the License.  
     21 */ 
     22 
     23 
    124package com.voidelement.images.psd.resources { 
    225        import com.voidelement.images.psd.PSDParser; 
  • munegon/as3/src/com/voidelement/images/psd/resources/ICCProfile.as

    r96 r97  
     1/** 
     2 * com.voidelement.images.psd.PSDParser  Class for ActionScript 3.0  
     3 *   
     4 * @author       Copyright (c) 2007 munegon 
     5 * @version      0.2 
     6 *   
     7 * @link         http://www.voidelement.com/ 
     8 * @link         http://void.heteml.jp/blog/ 
     9 *  
     10 * Licensed under the Apache License, Version 2.0 (the "License");  
     11 * you may not use this file except in compliance with the License.  
     12 * You may obtain a copy of the License at  
     13 *   
     14 * http://www.apache.org/licenses/LICENSE-2.0  
     15 *   
     16 * Unless required by applicable law or agreed to in writing, software  
     17 * distributed under the License is distributed on an "AS IS" BASIS,  
     18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,   
     19 * either express or implied. See the License for the specific language  
     20 * governing permissions and limitations under the License.  
     21 */ 
     22 
     23 
    124package com.voidelement.images.psd.resources { 
    225        import com.voidelement.images.psd.PSDParser; 
  • munegon/as3/src/com/voidelement/images/psd/resources/IPTCData.as

    r96 r97  
     1/** 
     2 * com.voidelement.images.psd.PSDParser  Class for ActionScript 3.0  
     3 *   
     4 * @author       Copyright (c) 2007 munegon 
     5 * @version      0.2 
     6 *   
     7 * @link         http://www.voidelement.com/ 
     8 * @link         http://void.heteml.jp/blog/ 
     9 *  
     10 * Licensed under the Apache License, Version 2.0 (the "License");  
     11 * you may not use this file except in compliance with the License.  
     12 * You may obtain a copy of the License at  
     13 *   
     14 * http://www.apache.org/licenses/LICENSE-2.0  
     15 *   
     16 * Unless required by applicable law or agreed to in writing, software  
     17 * distributed under the License is distributed on an "AS IS" BASIS,  
     18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,   
     19 * either express or implied. See the License for the specific language  
     20 * governing permissions and limitations under the License.  
     21 */ 
     22 
     23 
    124package com.voidelement.images.psd.resources { 
    225        import com.voidelement.images.psd.PSDParser; 
  • munegon/as3/src/com/voidelement/images/psd/resources/PathInfo.as

    r96 r97  
     1/** 
     2 * com.voidelement.images.psd.PSDParser  Class for ActionScript 3.0  
     3 *   
     4 * @author       Copyright (c) 2007 munegon 
     5 * @version      0.2 
     6 *   
     7 * @link         http://www.voidelement.com/ 
     8 * @link         http://void.heteml.jp/blog/ 
     9 *  
     10 * Licensed under the Apache License, Version 2.0 (the "License");  
     11 * you may not use this file except in compliance with the License.  
     12 * You may obtain a copy of the License at  
     13 *   
     14 * http://www.apache.org/licenses/LICENSE-2.0  
     15 *   
     16 * Unless required by applicable law or agreed to in writing, software  
     17 * distributed under the License is distributed on an "AS IS" BASIS,  
     18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,   
     19 * either express or implied. See the License for the specific language  
     20 * governing permissions and limitations under the License.  
     21 */ 
     22 
     23 
    124package com.voidelement.images.psd.resources { 
    225        import com.voidelement.images.psd.PSDParser; 
  • munegon/as3/src/com/voidelement/images/psd/resources/PrintFlags.as

    r96 r97  
     1/** 
     2 * com.voidelement.images.psd.PSDParser  Class for ActionScript 3.0  
     3 *   
     4 * @author       Copyright (c) 2007 munegon 
     5 * @version      0.2 
     6 *   
     7 * @link         http://www.voidelement.com/ 
     8 * @link         http://void.heteml.jp/blog/ 
     9 *  
     10 * Licensed under the Apache License, Version 2.0 (the "License");  
     11 * you may not use this file except in compliance with the License.  
     12 * You may obtain a copy of the License at  
     13 *   
     14 * http://www.apache.org/licenses/LICENSE-2.0  
     15 *   
     16 * Unless required by applicable law or agreed to in writing, software  
     17 * distributed under the License is distributed on an "AS IS" BASIS,  
     18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,   
     19 * either express or implied. See the License for the specific language  
     20 * governing permissions and limitations under the License.  
     21 */ 
     22 
     23 
    124package com.voidelement.images.psd.resources { 
    225        import com.voidelement.images.psd.PSDParser; 
  • munegon/as3/src/com/voidelement/images/psd/resources/PrintFlagsInfo.as

    r96 r97  
     1/** 
     2 * com.voidelement.images.psd.PSDParser  Class for ActionScript 3.0  
     3 *   
     4 * @author       Copyright (c) 2007 munegon 
     5 * @version      0.2 
     6 *   
     7 * @link         http://www.voidelement.com/ 
     8 * @link         http://void.heteml.jp/blog/ 
     9 *  
     10 * Licensed under the Apache License, Version 2.0 (the "License");  
     11 * you may not use this file except in compliance with the License.  
     12 * You may obtain a copy of the License at  
     13 *   
     14 * http://www.apache.org/licenses/LICENSE-2.0  
     15 *   
     16 * Unless required by applicable law or agreed to in writing, software  
     17 * distributed under the License is distributed on an "AS IS" BASIS,  
     18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,   
     19 * either express or implied. See the License for the specific language  
     20 * governing permissions and limitations under the License.  
     21 */ 
     22 
     23 
    124package com.voidelement.images.psd.resources { 
    225        import com.voidelement.images.psd.PSDParser; 
  • munegon/as3/src/com/voidelement/images/psd/resources/ResolutionInfo.as

    r96 r97  
     1/** 
     2 * com.voidelement.images.psd.PSDParser  Class for ActionScript 3.0  
     3 *   
     4 * @author       Copyright (c) 2007 munegon 
     5 * @version      0.2 
     6 *   
     7 * @link         http://www.voidelement.com/ 
     8 * @link         http://void.heteml.jp/blog/ 
     9 *  
     10 * Licensed under the Apache License, Version 2.0 (the "License");  
     11 * you may not use this file except in compliance with the License.  
     12 * You may obtain a copy of the License at  
     13 *   
     14 * http://www.apache.org/licenses/LICENSE-2.0  
     15 *   
     16 * Unless required by applicable law or agreed to in writing, software  
     17 * distributed under the License is distributed on an "AS IS" BASIS,  
     18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,   
     19 * either express or implied. See the License for the specific language  
     20 * governing permissions and limitations under the License.  
     21 */ 
     22 
     23 
    124package com.voidelement.images.psd.resources { 
    225        import com.voidelement.images.psd.PSDParser; 
  • munegon/as3/src/com/voidelement/images/psd/resources/Slice.as

    r96 r97  
     1/** 
     2 * com.voidelement.images.psd.PSDParser  Class for ActionScript 3.0  
     3 *   
     4 * @author       Copyright (c) 2007 munegon 
     5 * @version      0.2 
     6 *   
     7 * @link         http://www.voidelement.com/ 
     8 * @link         http://void.heteml.jp/blog/ 
     9 *  
     10 * Licensed under the Apache License, Version 2.0 (the "License");  
     11 * you may not use this file except in compliance with the License.  
     12 * You may obtain a copy of the License at  
     13 *   
     14 * http://www.apache.org/licenses/LICENSE-2.0  
     15 *   
     16 * Unless required by applicable law or agreed to in writing, software  
     17 * distributed under the License is distributed on an "AS IS" BASIS,  
     18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,   
     19 * either express or implied. See the License for the specific language  
     20 * governing permissions and limitations under the License.  
     21 */ 
     22 
     23 
    124package com.voidelement.images.psd.resources { 
    225        import com.voidelement.images.psd.PSDParser; 
  • munegon/as3/src/com/voidelement/images/psd/resources/Slices.as

    r96 r97  
     1/** 
     2 * com.voidelement.images.psd.PSDParser  Class for ActionScript 3.0  
     3 *   
     4 * @author       Copyright (c) 2007 munegon 
     5 * @version      0.2 
     6 *   
     7 * @link         http://www.voidelement.com/ 
     8 * @link         http://void.heteml.jp/blog/ 
     9 *  
     10 * Licensed under the Apache License, Version 2.0 (the "License");  
     11 * you may not use this file except in compliance with the License.  
     12 * You may obtain a copy of the License at  
     13 *   
     14 * http://www.apache.org/licenses/LICENSE-2.0  
     15 *   
     16 * Unless required by applicable law or agreed to in writing, software  
     17 * distributed under the License is distributed on an "AS IS" BASIS,  
     18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,   
     19 * either express or implied. See the License for the specific language  
     20 * governing permissions and limitations under the License.  
     21 */ 
     22 
     23 
    124package com.voidelement.images.psd.resources { 
    225        import com.voidelement.images.psd.PSDParser; 
  • munegon/as3/src/com/voidelement/images/psd/section/PSDColorMode.as

    r96 r97  
     1/** 
     2 * com.voidelement.images.psd.PSDParser  Class for ActionScript 3.0  
     3 *   
     4 * @author       Copyright (c) 2007 munegon 
     5 * @version      0.2 
     6 *   
     7 * @link         http://www.voidelement.com/ 
     8 * @link         http://void.heteml.jp/blog/ 
     9 *  
     10 * Licensed under the Apache License, Version 2.0 (the "License");  
     11 * you may not use this file except in compliance with the License.  
     12 * You may obtain a copy of the License at  
     13 *   
     14 * http://www.apache.org/licenses/LICENSE-2.0  
     15 *   
     16 * Unless required by applicable law or agreed to in writing, software  
     17 * distributed under the License is distributed on an "AS IS" BASIS,  
     18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,   
     19 * either express or implied. See the License for the specific language  
     20 * governing permissions and limitations under the License.  
     21 */ 
     22 
     23 
    124package com.voidelement.images.psd.section { 
    225        import com.voidelement.images.psd.PSDParser; 
  • munegon/as3/src/com/voidelement/images/psd/section/PSDFileHeader.as

    r96 r97  
     1/** 
     2 * com.voidelement.images.psd.PSDParser  Class for ActionScript 3.0  
     3 *   
     4 * @author       Copyright (c) 2007 munegon 
     5 * @version      0.2 
     6 *   
     7 * @link         http://www.voidelement.com/ 
     8 * @link         http://void.heteml.jp/blog/ 
     9 *  
     10 * Licensed under the Apache License, Version 2.0 (the "License");  
     11 * you may not use this file except in compliance with the License.  
     12 * You may obtain a copy of the License at  
     13 *   
     14 * http://www.apache.org/licenses/LICENSE-2.0  
     15 *   
     16 * Unless required by applicable law or agreed to in writing, software  
     17 * distributed under the License is distributed on an "AS IS" BASIS,  
     18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,   
     19 * either express or implied. See the License for the specific language  
     20 * governing permissions and limitations under the License.  
     21 */ 
     22 
     23 
    124package com.voidelement.images.psd.section { 
    225        import com.voidelement.images.psd.PSDParser; 
  • munegon/as3/src/com/voidelement/images/psd/section/PSDImageData.as

    r96 r97  
     1/** 
     2 * com.voidelement.images.psd.PSDParser  Class for ActionScript 3.0  
     3 *   
     4 * @author       Copyright (c) 2007 munegon 
     5 * @version      0.2 
     6 *   
     7 * @link         http://www.voidelement.com/ 
     8 * @link         http://void.heteml.jp/blog/ 
     9 *  
     10 * Licensed under the Apache License, Version 2.0 (the "License");  
     11 * you may not use this file except in compliance with the License.  
     12 * You may obtain a copy of the License at  
     13 *   
     14 * http://www.apache.org/licenses/LICENSE-2.0  
     15 *   
     16 * Unless required by applicable law or agreed to in writing, software  
     17 * distributed under the License is distributed on an "AS IS" BASIS,  
     18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,   
     19 * either express or implied. See the License for the specific language  
     20 * governing permissions and limitations under the License.  
     21 */ 
     22 
     23 
    124package com.voidelement.images.psd.section { 
    225        import com.voidelement.images.psd.PSDParser; 
  • munegon/as3/src/com/voidelement/images/psd/section/PSDImageResources.as

    r96 r97  
     1/** 
     2 * com.voidelement.images.psd.PSDParser  Class for ActionScript 3.0  
     3 *   
     4 * @author       Copyright (c) 2007 munegon 
     5 * @version      0.2 
     6 *   
     7 * @link         http://www.voidelement.com/ 
     8 * @link         http://void.heteml.jp/blog/ 
     9 *  
     10 * Licensed under the Apache License, Version 2.0 (the "License");  
     11 * you may not use this file except in compliance with the License.  
     12 * You may obtain a copy of the License at  
     13 *   
     14 * http://www.apache.org/licenses/LICENSE-2.0  
     15 *   
     16 * Unless required by applicable law or agreed to in writing, software  
     17 * distributed under the License is distributed on an "AS IS" BASIS,  
     18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,   
     19 * either express or implied. See the License for the specific language  
     20 * governing permissions and limitations under the License.  
     21 */ 
     22 
     23 
    124package com.voidelement.images.psd.section { 
    225        import com.voidelement.images.psd.PSDParser; 
  • munegon/as3/src/com/voidelement/images/psd/section/PSDLayerAndMask.as

    r96 r97  
     1/** 
     2 * com.voidelement.images.psd.PSDParser  Class for ActionScript 3.0  
     3 *   
     4 * @author       Copyright (c) 2007 munegon 
     5 * @version      0.2 
     6 *   
     7 * @link         http://www.voidelement.com/ 
     8 * @link         http://void.heteml.jp/blog/ 
     9 *  
     10 * Licensed under the Apache License, Version 2.0 (the "License");  
     11 * you may not use this file except in compliance with the License.  
     12 * You may obtain a copy of the License at  
     13 *   
     14 * http://www.apache.org/licenses/LICENSE-2.0  
     15 *   
     16 * Unless required by applicable law or agreed to in writing, software  
     17 * distributed under the License is distributed on an "AS IS" BASIS,  
     18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,   
     19 * either express or implied. See the License for the specific language  
     20 * governing permissions and limitations under the License.  
     21 */ 
     22 
     23 
    124package com.voidelement.images.psd.section { 
    225        import com.voidelement.images.psd.PSDParser;