Optimizing Bitmap Display: setRGB vs MemoryImageSource

pixel viewer
A couple of Data Flow Diagrams quickly showed me that the extreme pull method for pixel subscriber results in way too much coupling and that the extreme push model for pixel data using an intelligent data wrapper in the form of PixelSpace remains the best approach.

But, when large pixel arrays are displayed at the single pixel zoom level the whole display process slows way down with frame rate skipping at every frame!

Coming from the Java old school my first instinct, as shown in version 1.0 of PixelSpace, was to use a MemoryImageSource but this does not cooperate with BufferedImage where the ‘new’ (well at least since Java 1.4 so not that new) is to use:

BufferedImage.setRGB(int startX, int startY, int w, int h, int[] rgbArray, int offset, int scansize)

This sets an array of integer pixels in the default RGB color model (TYPE_INT_ARGB) and default sRGB color space, into a portion of the image data.

And it does so very quickly, fantastic!

Here is the improved PixelGrid and modernised PixelSpace:

PixelGrid

package headwedge.pixel;
/*
*  PixelGrid.java
*  BlogPixel
*
*  Created by headwedge on 08/07/2007.
*  Copyright 2007 www.headwedge.com
*  as in: head wedged up own arse
*  All rights reserved.
*
*/

import headwedge.game.*;
import headwedge.pixel.*;

import java.awt.*;
import java.util.*;

/**
* @author <img style="width: 16px; height: 16px; float: left;"alt="favicon" src="doc-files/favicon.png"><a href="http://www.headwedge.com">www.headwedge.com</a>
* @version 2.1 12/10/07
* paint optimized to fast draw bitmap if no zoom
* @version 2.0 27/09/07
* paint optimized to draw only visible flyweights.
* @version 1.0
* A game component that displays a scalable grid of glyphs to represent domain
* data, usually pixel or cell information.
* As a pixel subsciber responds to pushed notification of a new PixelSpace
* containing domain data.
*/

public class PixelGrid extends Widget implements PixelSubscriber {

        public PixelGrid(GameComposite parent, PixelFlyweight flyweight, int x, int y, int width, int height, int zoom) {
                super(parent,0,0,width,height);
                setFlyweight(flyweight);
                setZoom(zoom);
        }
       
        protected void setFlyweight(PixelFlyweight flyweight) {
                this.flyweight = flyweight;
        }
       
        public void setZoom(int zoom) {
                this.zoom = zoom;
                resize();
        }
       
        public void notify(PixelSpace pixels) {
                data = pixels;
                beDirty();
        }
               
        public void update(Graphics g) {
                if (data == null) {
                        printCentre(g,ERROR_MESSAGE,Color.red);
                }
        }

        public void paint(Graphics g) {
                update(g);
                if (!isGlued()) {
                        //paint background
                        Rectangle dirtyRectangle = g.getClipBounds();
                        g.setColor(Color.white);
                        g.fillRect(dirtyRectangle.x,dirtyRectangle.y,dirtyRectangle.width - 1,dirtyRectangle.height - 1);
                        //paint pixels
                        Rectangle bounds = getBoundingBox();
                        //select only visible data for display
                        int columnStart = (bounds.width < dirtyRectangle.width) ?0 :dirtyRectangle.x / zoom;              
                        int columnEnd = (bounds.width < dirtyRectangle.width) ?data.width :((dirtyRectangle.x + dirtyRectangle.width) / zoom);
                        int rowStart = (bounds.height < dirtyRectangle.height) ?0 :dirtyRectangle.y / zoom;
                        int rowEnd = (bounds.height < dirtyRectangle.height) ?data.height :((dirtyRectangle.y + dirtyRectangle.height) / zoom);
                        //calculate screen coordinates so left and top edges overlap border
                        int x = (columnStart * zoom);
                        int y = (rowStart * zoom);
                        //centre if within bounds of display
                        x += (bounds.width < dirtyRectangle.width) ?(dirtyRectangle.width - bounds.width) / 2 :0;
                        y += (bounds.height < dirtyRectangle.height) ?(dirtyRectangle.height - bounds.height) / 2 :0;
                        //overlap right & bottom edges with border where appropriate
                        columnEnd += (columnEnd < data.width) ?1 :0;
                        rowEnd += (rowEnd <data.height) ?1 :0;
                        //paint the visible flyweights
                        if (zoom > 1) {
                                int j = y;
                                for (int row = rowStart; row < rowEnd; ++row) {
                                        int i = x;
                                        for (int column = columnStart; column < columnEnd; ++column) {
                                                flyweight.paint(g,i,j,new Color(data.getPixel(column,row)),zoom,0);
                                                i += zoom;
                                        }
                                        j += zoom;
                                }
                        }
                        //optimize as bitmap if not zoomed
                        else {
                                g.drawImage(data.getBufferedImage(),0,0,null);
                        }
                        glue()
                }
        }
       
        public void resize() {
                if (data != null) {
                        setSize(data.width * zoom, data.height * zoom);
                }
                getStage().setSize(this.getSize());
        }

        public void beDirty() {
                unglue();
                getStage().beDirty();          
        }
       
        protected int zoom;
       
        private PixelFlyweight flyweight;
        private headwedge.game.Label error;
       
        private PixelSpace data;
       
        private static final String ERROR_MESSAGE = "No Pixel Data To Display!";
       
}

 

PixelSpace

package headwedge.pixel;
/*
*  PixelSpace.java
*  BlogPixel
*
*  Created by headwedge on 28/07/2007.
*  Copyright 2007 www.headwedge.com
*  as in: head wedged up own arse
*  All rights reserved.
*
*/

import java.awt.image.*;
import headwedge.game.*;

/**
* @author <img style="width: 16px; height: 16px; float: left;"alt="favicon" src="doc-files/favicon.png"><a href="http://www.headwedge.com">www.headwedge.com</a>
* @version 1.2 on 15/10/07 - add pixel counting methods
* @version 1.1 on 12/10/07 - add buffered image
* @version 1.0
* A data class to encapsulate an array of int pixels argb info and the scansize,
* with methods for addressing pixels & creating a memory image source.
*/

public class PixelSpace {
       
        public PixelSpace(int width, int height) {
                pixels = new int[width * height];
                this.width = width;
                this.height = height;
                bufferedImage = ImageFactory.createBufferedImage(width,height);
        }
       
        public MemoryImageSource getMemoryImageSource() {
                return new MemoryImageSource(width, height, pixels, 0, width);
        }
       
        public BufferedImage getBufferedImage() {
                bufferedImage.setRGB(0,0,width,height,pixels,0,width);
                return bufferedImage;
        }
       
        public int[] toArray() {
                return pixels;
        }
       
        public int getTotalPixelCount() {
                return pixels.length;
        }
       
        public int getColourPixelCount(int argb) {
                int count = 0;
                for (int i = 0; i < pixels.length; ++i) {
                        if (argb == pixels[i]) {
                                ++count;
                        }
                }
                return count;
        }
       
        public int getFuzzyColourPixelCount(int argb, double tolerance) {
                int alpha = argb & 0xFF000000;
                int red = (argb & 0×00FF0000) >> 16;
                int green = (argb & 0×0000FF00) >> 8;
                int blue = argb & 0×000000FF;

                int min_red = red - (int)(red * tolerance);
                int min_green = green - (int)(green * tolerance);
                int min_blue = blue - (int)(blue * tolerance);
                int max_red = red + (int)(red * tolerance);
                int max_green = green + (int)(green * tolerance);
                int max_blue = blue + (int)(blue * tolerance);
       
                int count = 0;
                for (int i = 0; i < pixels.length; ++i) {
                        red = (pixels[i] & 0×00FF0000) >> 16;
                        green = (pixels[i] & 0×0000FF00) >> 8;
                        blue = pixels[i] & 0×000000FF;
                        if ((red <= max_red) && (red >= min_red) && (green <= max_green) && (green >= min_green) && (blue <= max_blue) && (blue >= min_blue)) {
                                ++count;
                        }
                }
                return count;

        }
       
        synchronized public int getPixel(int x, int y) {
                return pixels[x + (y * width)];
        }
       
        synchronized public void setPixel(int x, int y, int argb) {
                pixels[x + (y * width)] = argb;
        }
       
        public int width, height;
       
        protected int[] pixels;
       
        private BufferedImage bufferedImage;

}

 

Leave a Reply

fluconazole causes depression ditropan alternatives tylenol during pregnancy synthroid lawsuittadalafil levoxyl allergy buy spironolactone buy seroquel online buy rabeprazole make ecstasy metrogel for rosacea cheap prinivil buy mircette no prescriptionisosorbide mononitrate order xenical steroids side effects remeron withdrawl journal furosemide nursing buy heroin ramipril buy metformin weight loss sexual side effects hyzaar tramadol use in dogs propecia pill allegra prescription gemfibrozil side effects what is pravachol buy oral terbinafinetestosterone altace what is propecia patanol solution generic lexapro evista and cancer research fulvicin price drug adipex keflex oral best price pioglitazone enalapril buy valporic acid rx macrobid cap ativan no prescription ghb buyglipizide adderall prescription lorazepam without perscription cheapest sibutramine buy relenza valtrex price levaquin online prescription actonel lipidos orlistat nizoral side effects biaxin and sleepy propecia forum actonel vertigo generic fioricet without prescription ambien pharmacy buy valporicvaltrex buy tazorac gel no prescription desloratadine buy cisternogram paxil phentermine adipex fioricet ingredients rosiglitazone maleate butalbital weight loss what is methylprednisolone ativan antibiotic keflex nifedipine oral prozac buy online seroquel oral alkaline lanoxin fioricet overnight flonase side effects sarafem weight loss buy lorazepam lorazepam overdose ultravate drug prozac side affects norco high generic coreg purchase diazepam tablets restoril epilepsy folic acid overdose side effects of nexium medication tadalafil testimonials marijuana buds medicine prinivil viagra pills sarafem half life phentermine online what is klonopin purchase xanax lorazepam effects clomiphene free shipping alternative celebrex vicoprofen buy adipex weight loss pills buy tenuate without a prescription temovate shampoo and demodex online prescription nizoralnorco buy oxycontin methylphenidate hcl atarax warnings compazine drug flovent side effects prescription vicodin buy synthroid without prescription medical acyclovir glyburide more drug uses tenuate online nexium rebate what is prevacid biaxin phentermine no prescriptions what is estradiol antivert drug anger and keppra soft tab tadalafil clonidine medication klonopin social anxiety skelaxin side effects glucophage weight loss actos evista buy oxycontin no prescription fioricet line buy valium online without a prescription child over dose lisinopril neurontin addiction generic dovonex levitra cialis viagra side effects lipitor antivert side effects condylox ativan addition propecia for women clonidine sales buy aricept snorting ultram xanax buy viagra prices meridia dosage penicillin side effects protopic and vitiligo nizoral shampoo flomax oral ambien enlarged prostate what is microzide symmetrel medicine prescription tramadol clomid success stories buy flonase usa fioricet free shipping tadalafil fedex florida hydrocodone dosage detrol reviews alternative for nexium what are anabolic steroids oxycodone 15mg cheap soma phentermine order relafen oral cheapest viagra zyrtec generic tobradex alesse pricing acyclovir buy oxazepam tablets birth control nordette prozac and weight gain fioricet on line kidney infection macrobid lipitor medication folic acid hairfosamax discount fioricet proscar no prescription esgic buy buy propranolol without prescription medrol buy tamsulosin side effects discount tenuate metrogel vaginal temovate gel tobradex lawsuit buy valacyclovir uk levaquin alcohol seroquel side effects buying ultram diflucan chemical name for suprax levitra cialis zyrtec oral childrens motrin heroin overdose vicodin oral compare propecia adderall for weight loss vicodin hydrocodone vioxx side effects cheap lipitor ultram without a prescription what is in fioricet discount soma diprolene generic acetaminophen dosage sildenafil oralsingulair vermox tablets ultracet pain pill adderall effects nardil patch for depression buy famvir side effects of provigil buy valtrex cost of drug evista flextra narcotic zoloft overdose serzone overdose buy phentermine online snorting clonazepam fosamax side effects sildenafil generic trimox 500mg pravastatin side effects tiazac drug vioxx lawyer softtabs cialis online pharmacy diflucan what is lortab actos ionamin for sale what is macrobid used for order tenuate flexeril generic alphagan and eye pain fioricet online symmetrel abusesynalar nexium more drug side effects motrin sinus discount adipex diet pill order temazepamtemovate risperdal overdoseritalin lexapro withdrawal symptoms atarax drug phendimetrazine buy mescaline extraction valtrex dosage tretinoin for genital warts xenical meridia generic prevacid snorting celexa order adderall side effects of premarin soma babes cheap sildenafil premarin without a prescription lo ovral macrobid 100mg promethazine with codeine buy ziaczithromax buying vardenafilvasotec soma online pharmacy oxycontin pills xanax effect adderall and pregnancy clonazepam with no prescription noviderm melanex diclofenac side effects retin a treatment flexeril 10mg order eunlose adipex p side effects mometasone elocon buy tamiflu singulair medicine butalbital apap cheap zyban hair loss propecia allegra vs clarinex norco high school restoril temazepam no prescription tobradex sales without perscription what is zovirax depakote 500 mg fulvicin dose ecstasy buy adderall discussion snorting zanaflex how keppra works temazepam without prescription prescription prices lanoxinlasix order aldara cream online viagra canadavicodin microzide forum guys on steroids vicodin withdrawlsvicoprofen altace medication side effect ultram pain medicine what is plavix lortab description lethal dose of ativan oxazepam online prescription quick delivery psilocyn picturesrabeprazole miacalcin discussion group valium pictures norco bikes side effects of nasacort aqnasonex buy xenical without prescription fluoxetine dosage history of penicillin vicodin drug test online pharmacy fioricet buy ultravate phenergan and pregnancy drug valtrex prednisone for dogs how to help preven anorexia histex information pictures of generic oxycontin diazepam shop suprax dosage for children buy carisoprodol order valium side effects of ibuprofen skelaxin generic acyclovir valacycovir meridia prescription valacyclovir in mexico purchase finasteride canadafioricet what is prednisone vardenafil hcl tylenol biaxin reaction side effects of restoril chemistry of steroids hydrochlorothiazide medicine serevent off patent cialis levitra vs triamterene hctz buy vermox without prescription morphine drug acyclovir vs valacyclovir medrol pak cheap altace no prescription buy tadalafil phendimetrazine tartrate cozaar photo lipitor versus pravachol online pharmacy celexa alprazolam without prescription buy generic triphasil purchase viagra online methylphenidate nmr meridia order lexapro and pregnancy aldactone spironolactone generic acyclovir buy naproxen cheap fluoxetine lexapro drug ortho tricyclen the drug furosemide antidote to pantoprazole ecstasy pills acetaminophen side effects side effect of nordette drug valium free nicotrol inhalernifedipine kenalog injections is tramadol a narcotic antibiotic macrobid buy pantoprazole generic rabeprazole acetaminophen with codeine deca steroids online lortab side effects of metformin facts on steroids proair albuterol suprax antibotic lexapro more drug interactionslipitor oxycontin abuse what is butalbital used for buy vicodin no prescription buy valium temovate ointment generic motrin hydrocodone side effects side effects of naprosyn hydrochlorothiazide side effects buy psilocybin mushrooms aciphex coupons buying oxycodone without prescription propranolol 10mg long term use of oxycodone propoxyphene darvocet topical tretinoin psilocybin spores lasix weight loss ambien side effects phentermine 375 baby motrin order tenuate on line amoxicillin reaction singulair side effects propecia patent phentermine pharmacy vaniqa lowest price coreg 25mg oxazepam online without prescriptionoxycodone tetracycline side effects buy zoloft online atarax 30mg child minocycline hcl synalar nasal what is fioricet used for atarax brand generic ultram buying estradiol cheap eunlose buy hydrocodone cod propoxyphene without a prescription buy atenolol without prescription zanaflex dosage buy relafenrelenza adipex success stories sibutramine more drug interactions spironolactone acne what is ritalin what is prilosec synalar creme condylox review provigil cheap tadalafil india fulvicin dosage buy opiumorlistat cialis vs levitra amoxycillin side effects amoxicillin side effects zithromax online nardil advice telephone ranitidine hcl online vicodin steroids effects tramadol withdrawal symptoms discount viagra valium dosage purchase valium metoprolol buy buy meridia on line side effects of aciphex sumatriptan apotex buy prevacid online cialis lawyer ohio trazodone dosage information on microzide tamsulosin buy nicotrol inhaler order ambien online without prescription flovent inhaler plavix 75mg fioricet migraine fluconazole side effects buy bupropion furosemide side affects diovan hct side effects fulvicin ointment diuretics diazepam valium withdrawal pictures of hydrocodone paxil withdrawls ativan complication neurontin gabapentin cephalexin for dogs phentermine diet pill buying vicodin online famvir 500mg effects of mescaline side effects of vicodin tadalafil cheaptamiflu levothroid side effects dosage paxil tamsulosin hydrochloride ditropan liquid hydrocodone overdose buy diazepam clonidine compare aldactone withdrawal buy xanax without prescription suicide with clonazepam where can i buy amphetamine synthroid tabs alesse diflucan prozac weight gain diet pill phentermine fexofenadine generic tamiflu require prescription ultram dosage clomid and pregnancy tazorac side effects what is tetracycline bosnien oxazepam retin mexicorisedronate what is flovent nortriptyline oral serevent law zovirax pregnancy sale tramadol ceftin famvir 500 mg nizoral shampoo hair loss medicine evista pharmacy online flexeril cephalexin pregnant meclizine tablets butalbital headache levoxyl oral what is metoprolol lasix medication motrin and pregnancy roche tamiflu buy soma online what is propoxyphene toprol information nordette birth control pill buy phentermine online with a debit card order valium online ultram side effects adipex diet pills actonel coupons child taking lisinopril buy ativan diazepam cardura buy yellow xanax bars famvir prescription amphetamine morphine pump tazorac no prescription needed plavix lawsuit rohypnol effects alprazolam sale lotrisone classification tobradex without prescription adipex ionamin phentermine terbinafine tablets lo ovral birth control fioricet order ultram withdrawal imitrex dosage adipex what is trazodone free samples of levitra omeprazole side effects famvir pens phendimetrazine online pharmacy xanax overdose comprar meridia order retin a punchline for rabeprazole skelaxin information order ultram online pharmacy sildenafil pioglitazone hydrochloride buy hydrocodone online without prescription lorazepam addiction provigil more drug uses temazepam side effects wellbutrin abuse imitrex side effects cheap zithromaxzocor risperdal withdrawl lotensin without a prescription prempro withdrawalprevacid what is terbinafine cheapest phentermine singulair children generic propecia uk fioricet online no prescription paroxetine 20 mg fioricet abuse diazepam side effects buying valium lisinopril 20mg tylenol overdose terazosin medicine what are steroids finasteride propecia tazorac gel tussionex cod paxil oral lorazepam online how furosemide works triphasil side effects coumadin diet viagra sales norvasc generic soma 350mg what is omeprazole buy fioricet w codeine how adipex works naprosyn oral famvir for shingles cheap famvir cheap tamsulosin actonel claritin soma drugs tadalafil online lanoxin side effects atenolol levitra miralax and gatorade prep atrovent nasal elocon buy flonase no prescription synthroid hair loss buy trazodone online nasacort side effects buying sibutramine long term side effects of phentermine what is oxycontin risperdal depression bodybuilders on steroids opium effects discount hydrocodone nifedipine and pregnancy side effects of keflex synthroid oral marijuana pics what is ultracet flomax side affects cheap generic valium tenuate cod buy renova birth clomid multiple what is opium fosamax warning what is fioricet phenergan vomiting paxil withdrawl order levitra diclofenac sodium aciphex tabs online prescription tramadol buy cheap valium no perscription ortho evra drug microzide side effects of suprax fluoxetine withdrawal pepcid libido famvir dosage paroxetine false positives lotrel low pulse rate buy cheap meridia purchase zithromax buy lortab on line seroquel lawsuit phenergan with codeine nexium mups esomeprazole online pharmacy fosamax warnings buy azmacort seroquel generic benicar side effects soma more drug uses ultram high buy oxycodone without prescription effexor drug side effects hydrochlorothiazide oral opium drug trazodone desyrel free viagra sample accupril evoxac medicine omeprazole oral lorcet 10 generic tramadol metformin and pcos aciphex price tricor buy nasonex allergic reaction buy cheap fioricet addiction oxycontin sumycin pharmacistsuprax illegal steroids lamisil forums what does clomid do butalbital no prescription levoxyl and weightloss carisoprodol abuse sumatriptan diabetes paxil and alcohol loss propecia gemfibrozil buyghb side effects of valtrex valacyclovir viagra vs cialis prilosec online paroxetine without prescription buy tamiflu mexico keflex cephalexin side effects of celebrex ortho tri-cyclen neurontin more drug side effects generic mircette paxil cr side effects fluoxetine information buy alprazolam online no prescription drug nexium fluoxetine more drug interactions lotensin oral prozac for children toprol side effects synalar simple augmentin doxazosin mesylate nexium pill flomax withdrawal symptoms cheap propecia www soma side effects of depakote testosterone cream generic lanoxin adderall buy oxycontin without prescription ativan withdrawal symptoms how does phentermine work oxycodone pills flexeril pill atenolol 25mg information xenical side effects order relenza acyclovir zovirax what is sertraline rosiglitazone oralroxicet didrex no prescription needed furosemide buy order xenical online codeine promethazine buy azithromycin buy fluoxetine online buy fluoxetine without a prescription discount tretinointriamterene buy lamisil tablets patanol opht lamisil side effects lexapro side effects buy didrex online no prescription needed best price for levitra diovan side effects prozac pms adipex diet pill atrovent nasal spray vicodin abuse klonopin dosage propecia vs rogaine xalatan side effects what is toprol buy rohypnol online keflex alcohol side effects of lasix lorazepam alcohol flomax brand of tamsulosintazorac what is symmetrel flomax more drug uses ultracet information buy lamisil online without prescription generic pantoprazole side effects of glucophage trazodone without a prescription albuterol side effects best price viagra ambien withdrawal side effect what is temovate diltiazem hcl buspirone 5mg ultracet tablets esomeprazole magnesium withdrawal symptoms of prednisone albuterol doses alternative to metrogel buy sarafem cephalaxin capsules purchase famvir purchase soma online valtrex hydrocodone vicodin proscar more drug side effects british dragon steroids prescription of soma cheap alprazolam no perscription buy temazepam online without a prescription neurontin 300mg adipex p lawsuits pantoprazole 40 mg generic paxil no prescription oxycontinpantoprazole purchase oxycodone nicotrol patches protopic treatment cefixime buy tramadol picture order vermox online what does levitra look like viagra no prescription levothroid effects allegra and aciphex interaction amitriptyline buy ambien for cheap how to make mdma nifedipine xl cheap adipex buy zyprexa buy lasix xenical without prescription lotrel more drug side effects order tamiflu keflex dosage cialis uk serzone works for me ranitidine 150mg buy ambien without a prescription valacyclovir valtrex triphasil tabs alesse side effects paroxetine hcl side effects what is restoril what is acetaminophen buy finasteride online protopic ointment buy nordette no prescription cheapest no prescription diazepam roxicet oral solution foradil actos flomax nasacort nasal spray lortab no prescription needed aricept libido liquid hydrocodone side effects of keppra vicodin high proscar generic neurontin alcohol zyprexa lawsuit generic phendimetrazine nasonex side effects india generic tadalafil buy cheap phentermine clomid success levaquin dosage buy ionamin buy ultram online suprax overdose methylphenidate side effects phentermine diet pills pantoprazole oral wellbutrin overdose meridia cost prozac fluoxetine prozac alcohol winstrol steroids hydrocodone descriptions kenalog injection buy fexofenadinefinasteride principio attivo kenalog cheap elocon buy online buy zithromax generic flonase buy generic allegra fexofenadine cheap tamiflu dysosmia flonase buying xanax online lotensin benazepril hcl cheap plavix pantoprazole iv xanax alprazolam what is adipex valtrex cost imitrex coupon flomax medication buy acyclovir ultravate ointment what is thiamine mononitratemonopril bol steroids online pharmacy gemfibrozil where to buy vicodin what is atenolol oxazepam on drug screen premarin buy online uk buy zovirax fioricet withdrawal flexeril info what is flonase testosterone buy plavix news terbinafine discount viagra sildenafil buspar medicine generic for ultravate viagra side effects ultraviolet of allopurinol dilantin side effects fosamax what does oxycodone look like esomeprazole genericestradiol watson soma nifedipine er xl buy online phendimetrazine cialis levitra online zestril prinivil baycol sportsbook hydrocodone risedronate oral addiction hydrocodone paroxetine benzos ziac oral albuterol allergic reactions what is norvasc order phendimetrazine online trimox acid coreg side effects what is neurontin used for lortab without a prescription buy lamisil online no prescription tramadol for dogs buy oxycodone without a prescription buy clonazepam without prescription lipitor interaction order tamiflu online ionamin overnight naproxen sodium phendimetrazine no rx online pharmacy adderall clonazepam fedex what is keflex cheap 37 5 phentermine ditropan for children plendil cause incontinence how to make heroin flonase information ghb date rape drug nasonex sex drive acyclovir pepcid buy buy premarin online side effects of diazepam synthroid without prescription butalbital order ativan withdrawal addiction generic ramipril flomax drug buy fluoxetine altace lowest price famvir more drug side effects gemfibrozil more drug uses buy tenuate dospan generic for flonase vicodin addiction allegra side effects bad nasonex no prescription fluconazole more drug side effects order valtrex discount tadalafil plavix medicine adipex no precsription side effects of